/*
Theme Name: HOSHO Digital Remade
Description: Clean editorial WordPress theme for HOSHO Digital.
Version: 1.0.0
*/

:root {
	--red: #e21c15;
	--red-dark: #ac0d07;
	--navy: #071523;
	--navy-soft: #0e2a47;
	--ink: #1a1c1d;
	--muted: #62646d;
	--paper: #ffffff;
	--mist: #f9f9fb;
	--line: #e8e8ea;
	--border: #e5e5e5;
	--shell: min(1240px, calc(100vw - 64px));
	--ease: cubic-bezier(.22, 1, .36, 1);
	--move-ease: cubic-bezier(.25, 1, .5, 1);
	--motion-fast: 140ms;
	--motion-ui: 220ms;
	--motion-reveal: 640ms;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: "Inter", "Arimo", Arial, sans-serif;
	line-height: 1.6;
	font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.page-hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; isolation: isolate; color: white; background: var(--navy); font-family: "Poppins", "Helvetica Neue", Arial, sans-serif; }
.page-hero__media, .page-hero__media::after { position: absolute; inset: 0; }
.page-hero__media { z-index: -2; background-position: 58% center; background-size: cover; transform: scale(1.055); transition: transform 1.5s var(--ease); }
.page-hero__media::after { content: ""; background: linear-gradient(90deg, rgba(3,10,18,.97) 0%, rgba(4,15,28,.84) 34%, rgba(7,24,41,.38) 63%, rgba(7,24,41,.12) 100%); }
.page-hero__content { position: relative; z-index: 1; padding: 152px 0 88px; }
.page-hero h1 { max-width: 940px; margin: 0; font-size: clamp(52px, 5.4vw, 78px); font-weight: 600; letter-spacing: -.048em; line-height: 1; text-wrap: balance; }
.page-hero__eyebrow { margin: 0 0 26px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.page-hero__body { max-width: 600px; margin-top: 28px; padding-top: 0; }
.page-hero__body p { margin: 0; color: rgba(255,255,255,.84); font-size: clamp(15px, 1.3vw, 18px); }
.page-hero__body p + p { margin-top: 7px; }
.page-hero__cta { min-width: 232px; margin-top: 36px; justify-content: space-between; }
.page-hero__cta span { margin-left: 34px; font-size: 18px; transition: transform .25s var(--ease); }
.page-hero__cta:hover span { transform: translate(3px,-3px); }
.page-hero__edge { display: none; }
.page-hero.hero-ready .page-hero__media { transform: scale(1.01); }
.page-hero__content > * { opacity: 1; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.page-hero.hero-ready .page-hero__content > * { opacity: 1; transform: none; }
.page-hero.hero-ready .page-hero__content > :nth-child(1) { transition-delay: .12s; }
.page-hero.hero-ready .page-hero__content > :nth-child(2) { transition-delay: .22s; }
.page-hero.hero-ready .page-hero__content > :nth-child(3) { transition-delay: .34s; }
.page-hero.hero-ready .page-hero__content > :nth-child(4) { transition-delay: .46s; }
.page-hero.hero-ready .page-hero__edge { transform: scaleX(1); }
.page-hero--careers .page-hero__media { background-position: 66% center; }
.page-hero--careers .page-hero__media::after { background: linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.88) 34%, rgba(0,0,0,.32) 63%, rgba(0,0,0,.06) 100%); }
.page-hero--careers h1 { max-width: 690px; font-size: clamp(68px, 7.4vw, 112px); }
.page-hero--careers h1 span { color: #f01f24; }
.page-hero--sustainability .page-hero__media { background-position: 72% center; }
.page-hero--sustainability .page-hero__media::after { background: linear-gradient(90deg, rgba(3,10,18,.98) 0%, rgba(7,24,43,.9) 35%, rgba(7,24,43,.42) 61%, rgba(116,6,10,.36) 100%); }
.page-hero--press .page-hero__media { background-position: 62% center; }
.page-hero--contact .page-hero__media { background-position: 60% center; }
.page-hero--company .page-hero__media { background-position: 67% center; }
.page-hero--quickwin .page-hero__media { background-position: 66% center; }
.page-hero--eci .page-hero__media { background-position: 64% center; }

body.nav-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 999;
	padding: 10px 14px;
	background: white;
	color: var(--navy);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: none;
}

.site-header {
	position: absolute;
	inset: 0 0 auto;
	z-index: 20;
	color: white;
	border-bottom: 1px solid rgba(255, 255, 255, .24);
	transition: background-color 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease), backdrop-filter 280ms var(--ease);
}

.site-header.is-scrolled {
	position: fixed;
	background: rgba(7, 24, 41, .94);
	border-color: rgba(255, 255, 255, .12);
	backdrop-filter: blur(16px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, .14);
}

.nav {
	height: 86px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 40px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .04em;
}

.brand img {
	width: 42px;
	height: 42px;
	object-fit: cover;
	transition: transform var(--motion-ui) var(--ease), opacity var(--motion-ui) ease;
}

.primary-navigation {
	justify-self: center;
}

.nav-links,
.sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 34px;
}

.nav-links>li {
	position: relative;
}

.nav-links a {
	display: block;
	padding: 30px 0;
	font-size: 14px;
	font-weight: 500;
}

.nav-links>li>a::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 4px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s var(--ease);
}

.nav-links>li:hover>a::after,
.nav-links>li:focus-within>a::after,
.nav-links>li.current-menu-item>a::after,
.nav-links>li.current-menu-ancestor>a::after {
	transform: scaleX(1);
}

.sub-menu {
	position: absolute;
	top: 70px;
	left: -20px;
	min-width: 260px;
	padding: 12px 20px;
	background: var(--navy);
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 10px, 0) scale(.985);
	transform-origin: top left;
	transition: opacity 150ms ease, transform 190ms var(--ease), visibility 0s linear 190ms;
}

.sub-menu a {
	position: relative;
	padding: 10px 0;
	color: #dce4ec;
	transition: color var(--motion-fast) ease, transform var(--motion-fast) var(--ease);
}

.sub-menu .current-menu-item>a {
	color: white;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0) scale(1);
	transition-delay: 0s;
}

.nav-cta,
.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	overflow: hidden;
	border: 1px solid var(--red);
	background: var(--red);
	color: white;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .02em;
	isolation: isolate;
	transition: background-color var(--motion-ui) ease, border-color var(--motion-ui) ease, color var(--motion-ui) ease, transform var(--motion-fast) var(--ease);
}

.nav-cta::after,
.button::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 2px;
	background: rgba(255, 255, 255, .9);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--motion-ui) var(--ease);
}

.nav-cta:hover {
	background: #b9140f;
	border-color: #b9140f;
	transform: translateY(-2px);
}

.nav-cta:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.button:hover {
	background: white;
	border-color: white;
	color: var(--red);
	transform: translateY(-2px);
}

body.hosho-remade .button:hover,
body.hosho-remade .button:hover:visited {
	color: var(--red) !important;
	-webkit-text-fill-color: var(--red) !important;
	border-color: var(--red) !important;
	border-width: 2px !important;
	background: white !important;
}

.nav-cta:active,
.button:active {
	transform: translateY(0) scale(.975);
}

.button-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, .65);
}

.button-outline:hover {
	background: white;
	border-color: white;
	color: var(--navy);
}

.menu-button {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: white;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform var(--motion-ui) var(--ease), opacity var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.menu-button span {
	position: relative;
}

.menu-button span::before,
.menu-button span::after {
	position: absolute;
	left: 0;
}

.menu-button span::before {
	transform: translateY(-7px);
}

.menu-button span::after {
	transform: translateY(7px);
}

.page-hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	color: white;
	background: var(--navy);
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.page-hero__media,
.page-hero__media::after {
	position: absolute;
	inset: 0;
}

.page-hero__media {
	z-index: -2;
	background-position: 58% center;
	background-size: cover;
	transform: scale(1.055);
	transition: transform 1.5s var(--ease);
}

.page-hero__media::after {
	content: "";
	background: linear-gradient(90deg, rgba(3, 10, 18, .97) 0%, rgba(4, 15, 28, .84) 34%, rgba(7, 24, 41, .38) 63%, rgba(7, 24, 41, .12) 100%);
}

.page-hero__content {
	position: relative;
	z-index: 1;
	padding: 152px 0 88px;
}

.page-hero--center {
	align-items: center;
}

.page-hero--center .page-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 100svh;
	padding: clamp(220px, 28vh, 300px) 0 clamp(88px, 11vh, 124px);
}

.page-hero h1 {
	max-width: 940px;
	margin: 0;
	font-size: clamp(52px, 5.4vw, 78px);
	font-weight: 600;
	letter-spacing: -.048em;
	line-height: 1;
	text-wrap: balance;
}

.page-hero__eyebrow {
	margin: 0 0 26px;
	color: rgba(255, 255, 255, .78);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.page-hero__body {
	max-width: 600px;
	margin-top: 28px;
	padding-top: 0;
}

.page-hero__body p {
	margin: 0;
	color: rgba(255, 255, 255, .84);
	font-size: clamp(15px, 1.3vw, 18px);
}

.page-hero__body p+p {
	margin-top: 7px;
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 36px;
}

.page-hero__cta {
	min-width: 232px;
	margin-top: 36px;
	justify-content: space-between;
}

.page-hero__cta span {
	margin-left: 34px;
	font-size: 18px;
	transition: transform .25s var(--ease);
}

.page-hero__cta:hover span {
	transform: translate(3px, -3px);
}

.page-hero__edge {
	display: none;
}

.page-hero.hero-ready .page-hero__media {
	transform: scale(1.01);
}

.page-hero__content>* {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.page-hero.hero-ready .page-hero__content>* {
	opacity: 1;
	transform: none;
}

.page-hero.hero-ready .page-hero__content> :nth-child(1) {
	transition-delay: .12s;
}

.page-hero.hero-ready .page-hero__content> :nth-child(2) {
	transition-delay: .22s;
}

.page-hero.hero-ready .page-hero__content> :nth-child(3) {
	transition-delay: .34s;
}

.page-hero.hero-ready .page-hero__content> :nth-child(4) {
	transition-delay: .46s;
}

.page-hero.hero-ready .page-hero__edge {
	transform: scaleX(1);
}

.page-hero--careers .page-hero__media {
	background-position: 66% center;
}

.page-hero--careers .page-hero__media::after {
	background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .88) 34%, rgba(0, 0, 0, .32) 63%, rgba(0, 0, 0, .06) 100%);
}

.page-hero--careers h1 {
	max-width: 690px;
	font-size: clamp(68px, 7.4vw, 112px);
}

.page-hero--careers h1 span {
	color: #f01f24;
}

.page-hero--home .page-hero__media {
	background-position: center center;
}

.page-hero--home .page-hero__content {
	max-width: 1240px;
}

.page-hero--home h1 {
	max-width: 680px;
}

.home-page .hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 20px;
}

.home-page .hero-buttons a {
	min-width: 220px;
	min-height: 56px;
	padding: 0 30px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.home-page .hero-buttons a:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
}

.home-page .hero-buttons .btn-red {
	background: linear-gradient(180deg, #ff2a1f 0%, var(--red) 100%);
	border: 1px solid rgba(255, 255, 255, 0);
}

.home-page .hero-buttons .btn-red:hover {
	background: white;
	border-color: var(--red);
	color: var(--red);
}

.home-page .hero-buttons .btn-red:hover,
.home-page .hero-buttons .btn-red:hover:visited {
	color: var(--red);
	-webkit-text-fill-color: var(--red);
}

.home-page .solutions-card__link {
	border-color: rgba(255, 255, 255, .65);
	color: white;
	background: rgba(255, 255, 255, .03);
	backdrop-filter: blur(8px);
}

.home-page .solutions-card__link:hover {
	background: white;
	color: var(--red);
	border-color: white;
}

.home-page .solutions-card__link:hover span {
	color: var(--red);
}

.page-hero--approach .page-hero__media {
	background-position: center center;
}

.page-hero--ai .page-hero__media {
	background-position: 58% center;
}

.page-hero--ams .page-hero__media {
	background-position: center center;
}

.page-hero--erp .page-hero__media {
	background-position: center center;
}

.page-hero--sustainability .page-hero__media {
	background-position: 72% center;
}

.page-hero--sustainability .page-hero__media::after {
	background: linear-gradient(90deg, rgba(3, 10, 18, .98) 0%, rgba(7, 24, 43, .9) 35%, rgba(7, 24, 43, .42) 61%, rgba(116, 6, 10, .36) 100%);
}

.page-hero--press .page-hero__media {
	background-position: 62% center;
}

.page-hero--contact .page-hero__media {
	background-position: 60% center;
}

.page-hero--company .page-hero__media {
	background-position: 67% center;
}

.page-hero--quickwin .page-hero__media {
	background-position: 66% center;
}

.page-hero--eci .page-hero__media {
	background-position: 64% center;
}

.section {
	padding: 96px 0;
}

.section-sm {
	padding: 68px 0;
}

.section-mist {
	background: var(--mist);
}

.section-navy {
	background: var(--navy);
	color: white;
}

.section-red {
	background: var(--red);
	color: white;
}

.eyebrow {
	margin: 0 0 22px;
	color: var(--red);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.section-navy .eyebrow,
.section-red .eyebrow,
.cta-panel .eyebrow {
	color: white;
	opacity: .82;
}

h2,
h3,
p {
	margin-top: 0;
}

h2 {
	margin-bottom: 28px;
	font-size: clamp(34px, 4.6vw, 66px);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: 1.05;
	text-wrap: balance;
}

h3 {
	margin-bottom: 14px;
	font-size: clamp(21px, 2vw, 30px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.2;
}

p {
	color: var(--muted);
	font-size: 16px;
}

.section-navy p,
.section-red p,
.cta-panel p {
	color: rgba(255, 255, 255, .82);
}

.lede {
	padding-top: 10px;
	font-size: clamp(19px, 2vw, 25px);
	line-height: 1.55;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
	gap: clamp(56px, 9vw, 140px);
	align-items: start;
}

.intro-grid h2 {
	max-width: 720px;
}

.body-copy {
	max-width: 680px;
}

.body-copy>*+* {
	margin-top: 20px;
}

.media-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	min-height: 620px;
}

.media-split--reverse {
	grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
}

.media-split__image {
	min-height: 560px;
	background-position: center;
	background-size: cover;
}

.media-split__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(54px, 7vw, 110px);
	background: var(--navy);
	color: white;
}

.media-split--light .media-split__content {
	background: var(--mist);
	color: var(--ink);
}

.media-split--red .media-split__content {
	background: linear-gradient(120deg, var(--red-dark) 0%, #5e1115 38%, var(--navy) 100%);
}

.media-split--red .media-split__content h2,
.media-split--red .media-split__content h3 {
	color: white;
}

.media-split--red .media-split__content p {
	color: rgba(255, 255, 255, .88);
}

.media-split--red .media-split__content .feature {
	border-top-color: rgba(255, 255, 255, .3);
}

.media-split--red .media-split__content .feature__index {
	color: #ffaaa6;
}

.editorial-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 24px;
}

.feature {
	grid-column: span 4;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.feature__index {
	display: block;
	margin-bottom: 42px;
	color: var(--red);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
}

.feature p {
	max-width: 34em;
}

.photo-card {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: var(--navy);
}

.photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 800ms var(--ease);
}

.photo-card__copy {
	position: absolute;
	inset: auto 0 0;
	padding: 64px 42px 38px;
	color: white;
	background: linear-gradient(transparent, rgba(7, 24, 41, .9));
}

.photo-card__copy p {
	color: rgba(255, 255, 255, .82);
}

.testimonial-window {
	margin-top: 54px;
	overflow: hidden;
}

.testimonial-track {
	display: flex;
	transition: transform 620ms var(--move-ease);
}

.testimonial {
	flex: 0 0 100%;
	min-height: 480px;
	display: grid;
	align-content: center;
	padding: clamp(44px, 7vw, 92px);
	background: white;
}

.testimonial>span {
	color: var(--red);
	font-size: 72px;
	line-height: .6;
}

.testimonial blockquote {
	max-width: 980px;
	margin: 38px 0 54px;
	font-size: clamp(28px, 3.7vw, 55px);
	font-weight: 400;
	letter-spacing: -.04em;
	line-height: 1.18;
}

.testimonial p {
	margin: 0;
	color: var(--ink);
	font-size: 14px;
}

.testimonial small {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.carousel-controls {
	display: flex;
	align-items: end;
	justify-content: flex-end;
	gap: 8px;
}

.carousel-controls p {
	margin: 0 auto 10px 0;
	font-size: 12px;
	letter-spacing: .1em;
}

.carousel-controls button {
	width: 48px;
	height: 48px;
	border: 1px solid var(--navy);
	background: transparent;
	color: var(--navy);
	cursor: pointer;
	transition: background-color var(--motion-ui) ease, color var(--motion-ui) ease, transform var(--motion-fast) var(--ease);
}

.carousel-controls button:hover {
	background: var(--navy);
	color: white;
	transform: translateY(-2px);
}

.carousel-controls button:active {
	transform: scale(.96);
}

.company-values {
	background: #f5f7f8;
	overflow: hidden;
}

.company-values__intro {
	display: grid;
	gap: 28px;
	align-content: space-between;
}

.company-values__window {
	margin-top: 54px;
	overflow: hidden;
	background: var(--navy);
}

.company-values__track {
	display: flex;
	align-items: stretch;
	transition: transform 780ms var(--move-ease);
	will-change: transform;
}

.company-value {
	flex: 0 0 100%;
	min-width: 0;
	min-height: 600px;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
	background: var(--navy);
	color: white;
}

.company-value__visual {
	min-height: 600px;
	background-position: center;
	background-size: cover;
	filter: saturate(.72) contrast(1.04);
}

.company-value__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(52px, 6vw, 92px);
	background: linear-gradient(145deg, #0e2a47 0%, #07182b 72%);
}

.company-value__copy .feature__index {
	color: #ff6a65;
}

.company-value__copy h3 {
	margin: 20px 0 24px;
	color: white;
	font-size: clamp(38px, 4vw, 58px);
	letter-spacing: -.04em;
}

.company-value__copy>p {
	max-width: 620px;
	color: rgba(255, 255, 255, .78);
	font-size: 17px;
	line-height: 1.72;
}

.company-value__copy blockquote {
	max-width: 620px;
	margin: 46px 0 18px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	color: white;
	font-size: clamp(22px, 2vw, 29px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.3;
}

.company-value__copy cite {
	color: #ff9a96;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-block: 1px solid var(--line);
}

.stat {
	padding: 44px 36px;
	border-right: 1px solid var(--line);
}

.stat:last-child {
	border-right: 0;
}

.stat strong {
	display: block;
	margin-bottom: 14px;
	color: var(--red);
	font-size: clamp(48px, 6vw, 84px);
	font-weight: 500;
	letter-spacing: -.055em;
	line-height: 1;
}

.stat p {
	margin: 0;
}

.quote-band {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 60%) minmax(0, 40%);
	min-height: 443px;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(108deg, #c0070d 0%, #870c12 22%, #28131e 54%, #07182b 80%, #07182b 100%);
	color: white;
}

.quote-band--blue {
	background: linear-gradient(108deg, #071523 0%, #071523 38%, #0A192F 66%, #8a1913 88%, #071523 100%);
}

.quote-band--red {
	background: linear-gradient(108deg, #E21C15 0%, #E21C15 40%, #B71712 68%, #071523 90%, #0A192F 100%);
}

.quote-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(255, 255, 255, .025), transparent 34%, rgba(7, 24, 43, .2));
}

.quote-band__portrait {
	position: relative;
	z-index: 1;
	align-self: end;
	height: 443px;
	min-height: 443px;
	overflow: hidden;
	background: transparent;
}

.quote-band__portrait img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
	filter: grayscale(1) contrast(1.06);
	mix-blend-mode: screen;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .72) 13%, #000 28%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .72) 13%, #000 28%, #000 100%);
}

.quote-band__copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 112px 64px 58px;
}

.quote-band__mark {
	position: absolute;
	top: 28px;
	left: 32px;
	margin: 0;
	color: rgba(249, 210, 208, .6);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 128px;
	font-weight: 400;
	line-height: .72;
}

.quote-band blockquote {
	max-width: 638px;
	margin: 0 0 56px;
	color: white;
	font-size: clamp(26px, 2.5vw, 32px);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.quote-band cite {
	color: white;
	font-style: normal;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.quote-band--standard .quote-band__portrait {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.quote-band--standard .quote-band__portrait img {
	width: auto;
	max-width: 100%;
	margin-left: auto;
	mix-blend-mode: normal;
}

.quote-band--blue .quote-band__mark {
	color: rgba(200, 224, 255, .65);
}

.quote-band--red .quote-band__mark {
	color: rgba(255, 214, 214, .62);
}

.quote-band--blue::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, .02), transparent 40%, rgba(122, 23, 18, .16));
}

.quote-band--red::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, .025), transparent 40%, rgba(7, 21, 35, .16));
}

.quote-band--lee {
	grid-template-columns: minmax(0, 68%) minmax(300px, 32%);
}

.quote-band--lee blockquote {
	max-width: 840px;
	margin-bottom: 38px;
	font-size: clamp(22px, 2vw, 29px);
	line-height: 1.28;
}

.quote-band--lee .quote-band__portrait img {
	max-width: 390px;
}

.logo-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	border-block: 1px solid var(--line);
}

.logo-row>div {
	min-height: 130px;
	display: grid;
	place-items: center;
	padding: 28px;
	border-right: 1px solid var(--line);
}

.logo-row>div:last-child {
	border-right: 0;
}

.logo-row img {
	max-width: 150px;
	max-height: 52px;
	object-fit: contain;
}

.logo-row img.logo-row__image--dark {
	filter: brightness(0) saturate(100%);
}

.process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	counter-reset: process;
	border-top: 1px solid rgba(255, 255, 255, .25);
}

.process>article {
	min-height: 320px;
	padding: 32px;
	border-right: 1px solid rgba(255, 255, 255, .25);
	counter-increment: process;
}

.process>article:last-child {
	border-right: 0;
}

.process>article::before {
	content: "0" counter(process);
	display: block;
	margin-bottom: 90px;
	color: #ff5f58;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
}

.process h3 {
	color: white;
}

.framework-stack {
	display: grid;
	gap: 28px;
}

.framework {
	display: grid;
	grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
	min-height: 420px;
	border: 1px solid var(--line);
	background: white;
}

.framework__label {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 42px;
	background: var(--mist);
}

.framework__label span {
	color: var(--red);
	font-size: 12px;
	font-weight: 600;
}

.framework__visual {
	min-width: 0;
	display: grid;
	place-items: center;
	padding: 44px;
	overflow: hidden;
}

.framework__visual img {
	width: min(100%, 820px);
	max-height: 440px;
	object-fit: contain;
}

.framework__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	height: 100%;
}

.framework__steps div {
	padding: 36px 26px;
	border-right: 1px solid var(--line);
}

.framework__steps div:last-child {
	border-right: 0;
}

.framework__steps strong {
	display: block;
	margin-bottom: 80px;
	color: var(--red);
	font-size: 12px;
}

.technology-grid .feature {
	grid-column: span 3;
}

.technology-grid img {
	width: 100%;
	height: 180px;
	margin-bottom: 28px;
	object-fit: contain;
	object-position: left center;
}

.technology-logo-cloud {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 54px;
	border-block: 1px solid var(--line);
}

.technology-logo-cloud>div {
	min-height: 180px;
	display: grid;
	place-items: center;
	padding: 34px;
	border-right: 1px solid var(--line);
}

.technology-logo-cloud>div:last-child {
	border-right: 0;
}

.technology-logo-cloud img {
	width: 100%;
	height: 96px;
	object-fit: contain;
}

.qualification-panel {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
	gap: clamp(50px, 8vw, 130px);
	align-items: start;
}

.qualification-panel>div:last-child {
	padding-top: 34px;
	border-top: 1px solid var(--navy);
}

.qualification-panel>div:last-child p {
	max-width: 640px;
	margin-bottom: 32px;
}

.cta-panel {
	position: relative;
	min-height: 480px;
	display: grid;
	align-items: center;
	overflow: hidden;
	color: white;
	background-position: center;
	background-size: cover;
}

.cta-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 21, 35, .96), rgba(7, 21, 35, .72) 58%, rgba(172, 13, 7, .28));
}

.cta-panel__inner {
	position: relative;
	z-index: 1;
	padding-block: 90px;
}

.cta-panel h2 {
	max-width: 900px;
	margin-bottom: 26px;
	text-transform: uppercase;
}

.cta-panel p {
	max-width: 620px;
	margin-bottom: 34px;
	font-size: 18px;
}

.cta-panel--concise .cta-panel__inner {
	display: grid;
	justify-items: start;
	gap: 34px;
}

.cta-panel--concise h2 {
	margin: 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
	gap: 72px;
}

.contact-visual {
	min-height: 760px;
	background-position: center;
	background-size: cover;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.field {
	display: grid;
	gap: 8px;
}

.field-full {
	grid-column: 1 / -1;
}

.field label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	min-height: 54px;
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid #9ca5ad;
	border-radius: 0;
	background: transparent;
	color: var(--ink);
}

.field textarea {
	min-height: 130px;
	resize: vertical;
}

.consent {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
}

.consent input {
	margin-top: 5px;
}

.consent label {
	color: var(--muted);
	font-size: 13px;
}

.strategy-session-page {
	padding: 0;
	background: var(--paper);
}

body.page-strategy-session #main-content {
	padding-top: 86px;
}

body.page-strategy-session .site-header:not(.is-scrolled) {
	background: var(--navy);
	border-color: rgba(255,255,255,.12);
}

.strategy-session-page__intro {
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
	gap: clamp(40px, 5vw, 72px);
	align-items: end;
	margin-bottom: clamp(58px, 8vw, 110px);
	padding-bottom: clamp(44px, 6vw, 72px);
	border-bottom: 1px solid var(--line);
}

.strategy-session-page__intro h1 {
	max-width: 900px;
	margin: 0;
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(56px, 6.4vw, 92px);
	font-weight: 600;
	letter-spacing: -.06em;
	line-height: .94;
	text-transform: uppercase;
}

.strategy-session-page__intro .lede {
	max-width: 520px;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.55;
	color: var(--muted);
}

.strategy-session-form {
	width: 100%;
	margin: 0;
	padding: clamp(28px, 5vw, 72px);
	border: 1px solid rgba(0, 0, 0, .08);
	background: rgba(255,255,255,.88);
	box-shadow: 0 28px 80px rgba(7,21,35,.08);
}

.strategy-session-form-wrap {
	width: 100%;
	margin: 0 auto;
	padding-inline: 0;
}

@media (min-width: 1200px) {
	.strategy-session-form-wrap {
		width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}

body.page-strategy-session .site-footer {
	margin-top: 0;
}

.strategy-session-form .field {
	gap: 10px;
}

.strategy-session-form .field label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
}

.strategy-session-form .field input,
.strategy-session-form .field select,
.strategy-session-form .field textarea {
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid #9ca5ad;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.strategy-session-form .field select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #7b8390 50%), linear-gradient(135deg, #7b8390 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

.strategy-session-form .field input::placeholder,
.strategy-session-form .field textarea::placeholder {
	color: #98a2b3;
}

.strategy-session-form .field textarea {
	min-height: 150px;
}

.strategy-session-form__button {
	width: 100%;
	min-height: 52px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .01em;
}

.site-footer {
	padding: 80px 0 30px;
	background: var(--navy);
	color: white;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 54px;
	padding-bottom: 68px;
}

.footer-brand .brand {
	margin-bottom: 28px;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.footer-socials a,
.footer-socials span {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	color: #d4dde5;
	font-size: 12px;
	transition: color var(--motion-ui) ease, border-color var(--motion-ui) ease, transform var(--motion-fast) var(--ease), box-shadow var(--motion-ui) ease;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.footer-column h2 {
	margin: 0 0 14px;
	color: white;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.footer-column a,
.footer-legal a {
	position: relative;
	width: fit-content;
	color: #98a6b4;
	transition: color var(--motion-ui) ease, transform var(--motion-fast) var(--ease);
}

.footer-column a {
	font-size: 13px;
}

.footer-legal a {
	font-size: 11px;
}

.footer-column a::after,
.footer-legal a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--motion-ui) var(--ease);
}

.footer-column a:hover,
.footer-legal a:hover {
	color: white;
}

.footer-column a:hover::after,
.footer-legal a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	color: #7f8e9c;
	font-size: 11px;
}

.footer-legal {
	display: flex;
	gap: 22px;
}

.motion {
	transition: opacity var(--motion-reveal) var(--ease), transform var(--motion-reveal) var(--ease);
	transition-delay: var(--motion-delay, 0ms);
}

.js-ready .motion:not(.is-visible) {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
}

.motion.is-visible {
	opacity: 1;
	transform: none;
}

/* Shared motion language: short UI feedback, measured editorial reveals. */
.brand:focus-visible,
.nav-links a:focus-visible,
.footer-column a:focus-visible,
.footer-legal a:focus-visible {
	outline: 2px solid #ff5f58;
	outline-offset: 5px;
}

.nav-cta:focus-visible,
.button:focus-visible,
.carousel-controls button:focus-visible,
.menu-button:focus-visible {
	outline: 2px solid #ff5f58;
	outline-offset: 3px;
}

.js-ready [data-motion-group] .motion-item {
	opacity: 0;
	transform: translate3d(0, 16px, 0);
	transition: opacity 560ms var(--ease), transform 560ms var(--ease);
	transition-delay: calc(var(--motion-order, 0) * 42ms);
}

.js-ready [data-motion-group].is-visible .motion-item {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.quote-band__copy,
.quote-band__portrait {
	transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js-ready .quote-band:not(.is-visible) .quote-band__copy {
	opacity: 0;
	transform: translate3d(-24px, 0, 0);
}

.js-ready .quote-band:not(.is-visible) .quote-band__portrait {
	opacity: 0;
	transform: translate3d(28px, 0, 0);
}

.quote-band.is-visible .quote-band__portrait {
	transition-delay: 90ms;
}

.site-footer .footer-brand,
.site-footer .footer-column,
.site-footer .footer-bottom {
	transition: opacity 560ms var(--ease), transform 560ms var(--ease);
	transition-delay: var(--motion-delay, 0ms);
}

.js-ready .site-footer:not(.is-visible) .footer-brand,
.js-ready .site-footer:not(.is-visible) .footer-column,
.js-ready .site-footer:not(.is-visible) .footer-bottom {
	opacity: 0;
	transform: translate3d(0, 14px, 0);
}

.cta-panel .button .button-arrow,
.page-hero__cta .button-arrow {
	transition: transform var(--motion-ui) var(--ease);
}

@media (hover: hover) and (pointer: fine) {
	.brand:hover img {
		transform: scale(1.035);
		opacity: .92;
	}

	.sub-menu a:hover {
		color: white;
		transform: translate3d(4px, 0, 0);
	}

	a.feature {
		transition: transform var(--motion-ui) var(--ease), border-color var(--motion-ui) ease;
	}

	a.feature:hover {
		border-color: var(--red);
		transform: translate3d(0, -4px, 0);
	}

	.footer-socials a {
		transition: color var(--motion-ui) ease, border-color var(--motion-ui) ease, transform var(--motion-fast) var(--ease), box-shadow var(--motion-ui) ease;
	}

	.footer-socials a:hover {
		color: white;
		border-color: var(--red);
		box-shadow: 0 0 0 1px var(--red) inset;
		transform: translate3d(0, -3px, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.motion {
		opacity: 1 !important;
		transform: none !important;
	}
}

@media (max-width: 980px) {
	:root {
		--shell: min(100% - 40px, 760px);
	}

	.nav {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.brand span,
	.nav-cta {
		display: none;
	}

	.menu-button {
		display: block;
	}

	.primary-navigation {
		position: fixed;
		inset: 86px 0 0;
		display: block;
		padding: 36px 24px;
		background: rgba(7, 21, 35, .985);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate3d(0, -14px, 0);
		transition: opacity 180ms ease, transform 240ms var(--move-ease), visibility 0s linear 240ms;
	}

	.nav-open .primary-navigation {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate3d(0, 0, 0);
		transition-delay: 0s;
	}

	.nav-links {
		display: block;
	}

	.nav-links>li {
		opacity: 0;
		transform: translate3d(0, 10px, 0);
		transition: opacity 220ms var(--ease), transform 220ms var(--ease);
		transition-delay: calc(var(--nav-order, 0) * 36ms);
	}

	.nav-open .nav-links>li {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}

	.nav-links a {
		padding: 14px 0;
		font-size: 18px;
	}

	.sub-menu {
		position: static;
		display: block;
		padding: 0 0 8px 20px;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
	}

	.nav-open .menu-button span {
		background: transparent;
	}

	.nav-open .menu-button span::before {
		transform: rotate(45deg);
	}

	.nav-open .menu-button span::after {
		transform: rotate(-45deg);
	}

	.page-hero {
		min-height: 100svh;
	}

	.page-hero__media {
		background-position: 64% center;
	}

	.page-hero__media::after {
		background: linear-gradient(90deg, rgba(3, 10, 18, .96), rgba(4, 15, 28, .7) 58%, rgba(7, 24, 41, .3));
	}

	.page-hero__content {
		padding-top: 170px;
	}

	.intro-grid,
	.media-split,
	.media-split--reverse,
	.quote-band,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.media-split--reverse .media-split__image {
		order: -1;
	}

	.editorial-grid {
		grid-template-columns: 1fr;
	}

	.editorial-grid>* {
		grid-column: 1 / -1 !important;
	}

	.feature {
		grid-column: auto;
	}

	.stat-grid,
	.process {
		grid-template-columns: 1fr 1fr;
	}

	.stat:nth-child(2) {
		border-right: 0;
	}

	.quote-band {
		grid-template-columns: 1fr;
	}

	.quote-band__copy {
		min-height: 470px;
	}

	.quote-band__portrait {
		height: 520px;
		min-height: 520px;
	}

	.quote-band__portrait img {
		-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
		mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 100%);
	}

	.framework {
		grid-template-columns: 1fr;
	}

	.framework__steps {
		grid-template-columns: 1fr 1fr;
	}

	.footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	:root {
		--shell: calc(100vw - 32px);
	}

	.section {
		padding: 78px 0;
	}

	.page-hero {
		min-height: 100svh;
	}

	.page-hero__media {
		background-position: 70% center;
	}

	.page-hero__media::after,
	.page-hero--careers .page-hero__media::after {
		background: linear-gradient(180deg, rgba(3, 10, 18, .5) 0%, rgba(3, 10, 18, .75) 44%, rgba(3, 10, 18, .98) 100%);
	}

	.page-hero__content {
		padding: 150px 0 58px;
	}

	.page-hero h1 {
		font-size: clamp(46px, 14vw, 72px);
		line-height: .98;
	}

	.page-hero--careers h1 {
		font-size: clamp(62px, 18vw, 86px);
	}

	.page-hero__body {
		margin-top: 26px;
		padding-top: 20px;
	}

	.page-hero__cta {
		width: 100%;
	}

	.stat-grid,
	.process,
	.logo-row,
	.contact-form,
	.framework__steps {
		grid-template-columns: 1fr;
	}

	.stat,
	.process>article,
	.logo-row>div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.process>article {
		min-height: 250px;
	}

	.process>article::before {
		margin-bottom: 48px;
	}

	.quote-band__copy {
		min-height: 420px;
	}

	.quote-band__portrait {
		height: 440px;
		min-height: 440px;
	}

	.quote-band__copy,
	.media-split__content {
		padding: 48px 24px;
	}

	.framework__label,
	.framework__visual {
		padding: 28px;
	}

	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		grid-column: auto;
	}

	.footer-bottom,
	.footer-legal {
		flex-direction: column;
	}
}


/* WordPress host-theme compatibility: keep dark branded surfaces legible. */
body.hosho-remade .page-hero h1,
body.hosho-remade .page-hero h2,
body.hosho-remade .page-hero h3,
body.hosho-remade .cta-panel h2,
body.hosho-remade .cta-panel h3,
body.hosho-remade .section-navy h2,
body.hosho-remade .section-navy h3,
body.hosho-remade .section-red h2,
body.hosho-remade .section-red h3,
body.hosho-remade .media-split__content h2,
body.hosho-remade .media-split__content h3,
body.hosho-remade .photo-card__copy h2,
body.hosho-remade .photo-card__copy h3,
body.hosho-remade .process h3,
body.hosho-remade .site-footer h2,
body.hosho-remade .site-footer h3 {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

body.hosho-remade .quote-band blockquote,
body.hosho-remade .quote-band cite {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

body.hosho-remade .quote-band__mark {
	color: rgba(249, 210, 208, .6) !important;
	-webkit-text-fill-color: rgba(249, 210, 208, .6) !important;
}

body.hosho-remade .page-hero--careers h1 span {
	color: #f01f24 !important;
	-webkit-text-fill-color: #f01f24 !important;
}

body.hosho-remade .page-hero__eyebrow,
body.hosho-remade .page-hero__body p,
body.hosho-remade .cta-panel .eyebrow,
body.hosho-remade .cta-panel p,
body.hosho-remade .section-navy p,
body.hosho-remade .section-red p,
body.hosho-remade .media-split__content p,
body.hosho-remade .photo-card__copy p {
	color: rgba(255, 255, 255, .86) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, .86) !important;
}

body.hosho-remade .media-split--light .media-split__content h2,
body.hosho-remade .media-split--light .media-split__content h3 {
	color: var(--ink) !important;
	-webkit-text-fill-color: var(--ink) !important;
}

body.hosho-remade .media-split--light .media-split__content p {
	color: var(--muted) !important;
	-webkit-text-fill-color: var(--muted) !important;
}

body.hosho-remade .nav-cta,
body.hosho-remade .button,
body.hosho-remade .nav-cta:visited,
body.hosho-remade .button:visited {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	text-decoration: none !important;
}

body.hosho-remade .button-arrow {
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	margin-left: 34px;
	background: currentColor;
	clip-path: polygon(9% 40%, 59% 40%, 40% 21%, 52% 9%, 91% 48%, 52% 87%, 40% 75%, 59% 56%, 9% 56%);
	transform: rotate(-45deg);
	transform-origin: center;
	transition: transform .25s var(--ease);
}

body.hosho-remade .button-arrow::before,
body.hosho-remade .button-arrow::after {
	content: none;
}

body.hosho-remade .page-hero__cta:hover .button-arrow {
	transform: translate(3px, -3px) rotate(-45deg);
}

/* SOLUTIONS PAGE */

.page-hero--solutions .page-hero__media {
	background-position: 56% center;
}

.page-hero--solutions h1 {
	max-width: 960px;
}

.solutions-insight {
	position: relative;
	overflow: hidden;
	padding: clamp(48px, 6vw, 72px);
	border-radius: 24px;
	background: white;
	border: 1px solid rgba(211, 228, 254, .8);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
	text-align: center;
	max-width: 1020px;
	margin: 0 auto;
}

.solutions-insight__bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, transparent, var(--red));
}

.solutions-insight__heading {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
}

.solutions-insight__big {
	color: var(--red);
	font-size: clamp(56px, 7vw, 96px);
	font-weight: 700;
	letter-spacing: -.04em;
}

.solutions-insight__body p {
	max-width: 640px;
	margin: 0 auto;
}

.solutions-insight__source {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(232, 189, 182, .3);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
}

.solutions-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 56px;
	align-items: start;
}

.solutions-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 32px;
	border-radius: 0;
	background: white;
	border: 1px solid rgba(232, 189, 182, .6);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
	min-height: 0;
	overflow: hidden;
	cursor: pointer;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}

.solutions-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
	border-color: rgba(185, 0, 4, .3);
	align-items: stretch;
	justify-content: flex-start;
	padding: 36px 32px;
}

/* Icon + Title: always visible, centered by default */
.solutions-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	padding: 16px;
	border-radius: 0;
	margin: 0 auto 16px;
	box-sizing: border-box;
	flex-shrink: 0;
	transition: margin .4s var(--ease);
}

.solutions-card__icon--ops {
	background: rgba(93, 94, 97, .05);
	color: #5d5e61;
}

.solutions-card__icon--cx {
	background: rgba(185, 0, 4, .05);
	color: var(--red-dark);
}

.solutions-card__icon--ex {
	background: rgba(76, 91, 113, .05);
	color: #4c5b71;
}

body.hosho-remade .solutions-card h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
	color: #1a1c1d !important;
	-webkit-text-fill-color: #1a1c1d !important;
	text-align: center;
	transition: margin .4s var(--ease);
}

/* Hidden content: description, capabilities, link */
body.hosho-remade .solutions-card>p {
	font-size: 17px;
	color: var(--muted) !important;
	-webkit-text-fill-color: var(--muted) !important;
	margin-bottom: 0;
	line-height: 1.6;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(16px);
	transition: opacity .35s var(--ease), max-height .4s var(--ease), transform .35s var(--ease), margin .4s var(--ease);
}

.solutions-card__caps {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 0;
	padding-bottom: 0;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(16px);
	transition: opacity .35s var(--ease) .05s, max-height .4s var(--ease) .05s, transform .35s var(--ease) .05s, padding .4s var(--ease) .05s, margin .4s var(--ease) .05s;
}

body.hosho-remade .solutions-card__caps-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted) !important;
	-webkit-text-fill-color: var(--muted) !important;
}

body.hosho-remade .solutions-card__caps>span:last-child {
	font-size: 14px;
	color: var(--ink) !important;
	-webkit-text-fill-color: var(--ink) !important;
}

.solutions-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 24px;
	margin-top: auto;
	border: 1px solid #5d5e61;
	border-radius: 0;
	font-size: 14px;
	font-weight: 700;
	color: #5d5e61;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(12px);
	transition: opacity .3s var(--ease) .1s, transform .3s var(--ease) .1s, max-height .4s var(--ease) .1s, background .2s, color .2s, border-color .2s, padding .4s var(--ease) .1s;
	padding-top: 0;
	padding-bottom: 0;
}

.solutions-card__link:hover {
	background: #5d5e61;
	color: white;
}

.solutions-card__link--cx {
	border-color: var(--red-dark);
	color: var(--red-dark);
}

.solutions-card__link--cx:hover {
	background: var(--red-dark);
	color: white;
}

.solutions-card__link--ex {
	border-color: #4c5b71;
	color: #4c5b71;
}

.solutions-card__link--ex:hover {
	background: #4c5b71;
	color: white;
}

.solutions-card__link span {
	font-size: 16px;
	transition: transform .25s var(--ease);
}

.solutions-card__link:hover span {
	transform: translate(3px, -3px);
}

/* --- HOVER STATE: Expand card and reveal content --- */
.solutions-card:hover .solutions-card__icon {
	margin: 0 auto 16px;
}

body.hosho-remade .solutions-card:hover h3,
.solutions-card:hover h3 {
	margin-bottom: 20px;
	text-align: center;
}

body.hosho-remade .solutions-card:hover>p,
.solutions-card:hover>p {
	opacity: 1;
	max-height: 200px;
	transform: translateY(0);
	margin-bottom: 20px;
}

.solutions-card:hover .solutions-card__caps {
	opacity: 1;
	max-height: 200px;
	transform: translateY(0);
	padding-bottom: 24px;
	margin-bottom: auto;
}

.solutions-card:hover .solutions-card__link {
	opacity: 1;
	max-height: 60px;
	transform: translateY(0);
	padding-top: 16px;
	padding-bottom: 16px;
}

/* ── SPEEDOMETER SECTION ── */

.speedo-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(48px, 6vw, 96px);
	align-items: center;
}

.speedo-gauge {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 380px;
	margin: 0 auto;
}

.speedo-svg {
	width: 100%;
	height: auto;
	overflow: visible;
}

.speedo-track {
	opacity: .45;
}

.speedo-fill {
	transition: stroke-dasharray 2s cubic-bezier(.22, 1, .36, 1);
}

.speedo-needle-group {
	transform: rotate(-90deg);
	transform-origin: 140px 155px;
	transition: transform 2s cubic-bezier(.22, 1, .36, 1);
}

.speedo-label {
	font-size: 11px;
	font-weight: 600;
	fill: var(--muted, #6b7280);
	font-family: inherit;
}

.speedo-counter {
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.speedo-number {
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 800;
	color: var(--navy, #0e2a47);
	letter-spacing: -.03em;
	line-height: 1;
}

.speedo-unit {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--muted, #6b7280);
	margin-top: 4px;
}

.speedo-copy {
	max-width: 520px;
}

.speedo-copy h2 {
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 700;
	color: var(--navy, #0e2a47);
	line-height: 1.2;
	margin-bottom: 20px;
}

.speedo-copy h2 strong {
	color: var(--red-dark, #b90004);
}

.speedo-body {
	font-size: 18px;
	color: var(--muted, #6b7280);
	line-height: 1.7;
	margin-bottom: 32px;
}

.speedo-timeline {
	display: flex;
	align-items: center;
	gap: 20px;
}

.speedo-year {
	font-size: 15px;
	color: var(--ink, #1a1c1d);
}

.speedo-year strong {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var(--navy, #0e2a47);
	margin-bottom: 2px;
}

.speedo-year-divider {
	width: 48px;
	height: 2px;
	background: linear-gradient(to right, var(--navy, #0e2a47), var(--red-dark, #b90004));
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.speedo-layout {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.speedo-gauge {
		max-width: 300px;
	}

	.speedo-copy {
		max-width: 100%;
	}

	.speedo-timeline {
		justify-content: center;
	}
}

/* ── END SPEEDOMETER ── */

.solutions-why-grid .feature__index {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: rgba(185, 0, 4, .1);
	border-radius: 4px;
	margin-bottom: 28px;
	color: var(--red-dark);
}

.solutions-why-grid .feature__index svg {
	width: 32px;
	height: 32px;
}

@media (max-width: 980px) {
	.solutions-cards {
		grid-template-columns: 1fr 1fr;
	}

	.solutions-why-grid {
		grid-template-columns: 1fr 1fr;
	}

	.solutions-why-grid .feature {
		grid-column: auto !important;
	}
}

@media (max-width: 620px) {
	.solutions-cards {
		grid-template-columns: 1fr;
	}

	.solutions-why-grid {
		grid-template-columns: 1fr;
	}

	.solutions-insight {
		padding: 32px 20px;
	}
}

/* OPERATIONAL EXPERIENCE PAGE */

.page-hero--opex .page-hero__media {
	background-position: 60% center;
}

.opex-dual-cards__wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	gap: 48px;
	margin: 0 auto;
	max-width: 1080px;
	align-items: stretch;
}

.opex-stat-card {
	position: relative;
	overflow: hidden;
	padding: 48px;
	border-radius: 16px;
	background: #0b1c30;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border-bottom: 4px solid var(--red-dark);
}

.opex-stat-card__number {
	font-size: clamp(64px, 8vw, 84px);
	font-weight: 700;
	color: var(--red);
	line-height: 1;
	margin-bottom: 24px;
	letter-spacing: -.03em;
}

.opex-stat-card__heading {
	font-size: 22px;
	font-weight: 500;
	color: white;
	line-height: 1.4;
	margin-bottom: 16px;
	text-wrap: balance;
}

.opex-stat-card__body {
	font-size: 15px;
	color: #cfd4da;
	margin-bottom: 24px;
	line-height: 1.6;
}

.opex-stat-card__source {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 16px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	min-height: 38px;
}

.opex-stat-card__blob {
	position: absolute;
	bottom: -4rem;
	right: -4rem;
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	background: rgba(185, 0, 4, .1);
	pointer-events: none;
}

.opex-help-card {
	padding: 48px;
	border-radius: 16px;
	background: #f3f3f3;
	border-top: 4px solid var(--red-dark);
	border-right: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	border-left: 1px solid #e2e2e2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.opex-help-card__title {
	font-size: 32px;
	font-weight: 600;
	color: #0b1c30;
	margin-bottom: 24px;
}

.opex-help-card .body-copy {
	font-size: 18px;
	color: var(--muted);
	line-height: 1.65;
}

.opex-category {
	margin-bottom: 64px;
}

.opex-category:last-child {
	margin-bottom: 0;
}

.opex-category__header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 32px;
}

.opex-category__title {
	font-size: 28px;
	font-weight: 600;
	color: var(--navy);
	white-space: nowrap;
	margin-bottom: 0;
}

.opex-category__line {
	height: 1px;
	background: rgba(90, 91, 91, .2);
	flex-grow: 1;
}

.opex-category__grid {
	display: grid;
	gap: 24px;
}

.opex-scard {
	display: flex;
	flex-direction: column;
	padding: 32px;
	border-radius: 8px;
	background: white;
	border: 1px solid rgba(226, 28, 21, .15);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.opex-scard:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
	border-color: rgba(226, 28, 21, .4);
}

.opex-scard__icon {
	color: var(--red-dark);
	margin-bottom: 20px;
	display: inline-flex;
}

.opex-scard__icon svg {
	display: block;
}

.opex-scard__title {
	font-size: 20px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 12px;
}

.opex-scard__desc {
	font-size: 15px;
	color: var(--muted);
	margin-bottom: 24px;
	line-height: 1.6;
	flex-grow: 1;
}

.opex-scard__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--red-dark);
	transition: color .2s;
}

.opex-scard__link:hover {
	color: var(--red);
}

.opex-scard__link span {
	transition: transform .25s var(--ease);
}

.opex-scard__link:hover span {
	transform: translateX(4px);
}

.opex-cta {
	background: var(--navy);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.opex-cta__content {
	position: relative;
	z-index: 1;
	padding: 48px 0;
}

.opex-cta__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	color: white;
	margin-bottom: 28px;
}

.opex-cta .btn {
	min-width: 200px;
}

.opex-cta__blob {
	position: absolute;
	top: -8rem;
	left: -8rem;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background: rgba(185, 0, 4, .1);
	pointer-events: none;
}

@media (max-width: 1024px) {
	.opex-dual-cards__wrapper {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 980px) {
	.opex-category__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* CUSTOMER EXPERIENCE PAGE */

.page-hero--cx .page-hero__media {
	background-position: center center;
}

.cx-categories .cx-category {
	margin-bottom: 64px;
}

.cx-categories .cx-category:last-child {
	margin-bottom: 0;
}

.cx-category__header {
	border-left: 4px solid var(--red);
	padding-left: 24px;
	margin-bottom: 40px;
}

.cx-category__title {
	font-size: 28px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
}

.cx-category__desc {
	font-size: 18px;
	color: var(--muted);
	line-height: 1.5;
	max-width: 672px;
}

.cx-cta {
	background: var(--red);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cx-cta__content {
	padding: 48px 0;
	position: relative;
	z-index: 1;
}

.cx-cta__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	color: white;
	margin-bottom: 32px;
}

.cx-cta .btn--white {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	background: white;
	color: var(--red);
	border-radius: 4px;
	font-size: 18px;
	font-weight: 700;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.cx-cta .btn--white:hover {
	transform: translateY(-2px);
	box-shadow: 0 25px 35px -5px rgba(0, 0, 0, .15);
}

/* EMPLOYEE EXPERIENCE PAGEb*/

.page-hero--ex .page-hero__media {
	background-position: center center;
}

.ex-stat {
	background: #0e2a47;
	color: white;
	position: relative;
	overflow: hidden;
}

.ex-stat::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(135deg, rgba(185, 0, 4, .2), transparent);
	opacity: .4;
	pointer-events: none;
}

.ex-stat::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 648px;
	height: 648px;
	background: white;
	opacity: .1;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	pointer-events: none;
}

.ex-stat__wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ex-stat__headline {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 16px;
}

.ex-stat__highlight {
	color: #f9d2d0;
}

.ex-stat__accent {
	color: var(--red);
	font-size: clamp(56px, 7.5vw, 92px);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
	margin: 6px 4px;
}

.ex-stat__bar {
	width: 64px;
	height: 4px;
	background: var(--red-dark);
	margin-bottom: 16px;
}

.ex-stat__body {
	font-size: 16px;
	color: white;
	line-height: 1.6;
	margin-bottom: 16px;
}

.ex-stat__source {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 16px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	min-height: 38px;
}

.source-logo {
	display: block;
	max-width: none;
	max-height: 18px;
	width: auto;
	height: auto;
	object-fit: contain;
	flex-shrink: 0;
}

.source-brand {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .8;
	white-space: nowrap;
}

.source-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .7;
	white-space: nowrap;
}

.solutions-insight__source,
.opex-stat-card__source,
.ex-stat__source {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.source-logo--mckinsey {
	max-height: 30px;
}

.source-logo--hbr {
	max-height: 40px;
}

.source-logo--mit {
	max-height: 25px;
	filter: drop-shadow(0 0 1px rgba(255, 255, 255, .95));
}

.source-logo--gallup {
	max-height: 50px;
}

.ex-stat__right {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ex-stat__glass {
	padding: 32px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .3);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.ex-stat__glass svg {
	display: block;
	margin-bottom: 12px;
}

.ex-stat__glass h3 {
	font-size: 22px;
	font-weight: 600;
	color: white;
	margin-bottom: 12px;
}

.ex-stat__glass p {
	font-size: 16px;
	color: white;
	line-height: 1.55;
	margin-bottom: 0;
}

.ex-hcard {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	padding: 32px;
	border-radius: 8px;
	background: white;
	border: 1px solid rgba(226, 28, 21, .15);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.ex-hcard:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
	border-color: rgba(226, 28, 21, .4);
}

.ex-hcard__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 8px;
	background: #f3f3f3;
	color: var(--red-dark);
}

.ex-hcard__body {
	flex: 1;
}

.ex-hcard__title {
	font-size: 20px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 12px;
}

.ex-hcard__desc {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 16px;
}

.opex-scard__icon--badge {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(185, 0, 4, .1);
	border-radius: 12px;
}

.ex-cta {
	background: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ex-cta::before {
	content: '';
	position: absolute;
	left: -129px;
	top: -129px;
	width: 256px;
	height: 256px;
	border-radius: 12px;
	background: var(--red);
	opacity: .05;
	pointer-events: none;
}

.ex-cta::after {
	content: '';
	position: absolute;
	right: -100px;
	bottom: -100px;
	width: 384px;
	height: 384px;
	border-radius: 12px;
	background: var(--red);
	opacity: .05;
	pointer-events: none;
}

.ex-cta__content {
	padding: 48px 0;
	position: relative;
	z-index: 1;
}

.ex-cta__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.ex-stat__wrapper {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.ex-hcard {
		flex-direction: column;
		gap: 20px;
	}
}



/* =========================================================
   FRONT PAGE STYLES
   ========================================================= */

/* =========================================================
		HOSHO HOMEPAGE
		========================================================= */

body {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: #fff;
}

.home-page {
	width: 100%;
	overflow: hidden;
}

.container {
	max-width: 1200px;
	width: calc(100% - 80px);
	margin: auto;
}

section {
	position: relative;
}

img {
	display: block;
	width: 100%;
}

a {
	text-decoration: none;
}

.small-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
}

.section-title {
	font-size: 54px;
	font-weight: 800;
	line-height: 1;
	color: var(--navy);
}

.section-desc {
	color: #697586;
	font-size: 16px;
	line-height: 1.7;
}

.btn-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	padding: 14px 28px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	transition: .25s;
}

.btn-red:hover {
	background: var(--red-dark);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .35);
	padding: 14px 26px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
}

.btn-outline:hover {
	background: rgba(255, 255, 255, .1);
}

.btn-outline-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
	border: 1px solid var(--navy);
	padding: 16px 30px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	transition: .25s;
}

.btn-outline-dark:hover {
	background: var(--navy);
	color: #fff;
}

/* =========================================================
		HERO
		========================================================= */

.hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg,
			rgba(94, 8, 10, .88) 0%,
			rgba(150, 20, 22, .74) 38%,
			rgba(180, 40, 35, .28) 100%);
}

.hero-image {
	position: absolute;
	inset: 0;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .95;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 10%, rgba(255, 255, 255, .08), transparent 40%),
		linear-gradient(90deg,
			rgba(104, 11, 12, .84),
			rgba(122, 17, 20, .55),
			rgba(0, 0, 0, .08));
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 620px;
	color: #fff;
}

.hero h1 {
	font-size: 64px;
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.hero p {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .88);
	margin-bottom: 42px;
	max-width: 520px;
}

.hero-buttons {
	display: flex;
	gap: 18px;
}

/* =========================================================
		YOUR SUCCESS. OUR GUARANTEE.
		========================================================= */

.success-guarantee {
	padding: 56px 0 120px;
	background: #fff;
}

.success-card {
	width: 460px;
	max-width: 100%;
	margin: 0 auto 100px;
	background: #fff;
	box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
	border: 1px solid #eee;
	text-align: center;
	padding: 40px 30px;
}

.success-card h2 {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--red-dark);
	margin-bottom: 25px;
}

.success-seal {
	width: 130px;
	margin: 0 auto;
	border: 1px solid #eee;
}

.guarantee-body {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 60px;
	align-items: center;
}

.guarantee-body h3 {
	font-size: 54px;
	font-weight: 800;
	line-height: 1.05;
	color: var(--navy);
	margin-bottom: 18px;
}

.guarantee-underline {
	display: block;
	width: 90px;
	height: 4px;
	background: var(--red);
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pillar-card {
	background: #f4f4f5;
	padding: 30px 26px;
	border-left: 4px solid var(--red);
}

.pillar-card.capability {
	border-left-color: var(--red-soft);
}

.pillar-card.integrity {
	border-left-color: var(--navy);
}

.pillar-card .pillar-label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 12px;
}

.pillar-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 14px;
}

.pillar-card p {
	font-size: 15px;
	line-height: 1.6;
	color: #667483;
}

/* RESPONSIVE */

@media (max-width: 900px) {
	.guarantee-body {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.guarantee-underline {
		margin: 0 auto 18px;
	}

	.pillars-grid {
		grid-template-columns: 1fr;
	}

	.pillar-card {
		text-align: left;
	}
}

@media (max-width: 620px) {
	.success-guarantee {
		padding: 72px 0;
	}

	.success-card {
		padding: 32px 22px;
	}

	.guarantee-body h3 {
		font-size: clamp(30px, 9vw, 44px);
	}
}

/*==================================================
		THE INTELLIGENT DIGITAL CORE
		==================================================*/

.digital-core {
	padding: 120px 0 100px;
	background: #fff;
}

.digital-core-heading {
	max-width: 820px;
	margin: 0 auto 50px;
	text-align: center;
}

.digital-core-heading h2 {
	font-size: 46px;
	line-height: 1.1;
	margin: 14px auto 22px;
	color: var(--navy);
	font-weight: 800;
	text-align: center;
}

.digital-core-heading p {
	color: #444f5c;
	line-height: 1.8;
	font-size: 17px;
	text-align: center;
}

.idc-card {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 28px 36px;
	border-radius: 0;
	margin: 0 auto 55px;
	max-width: 640px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idc-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

.idc-card-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	text-align: left;
}

.idc-logo-wrapper {
	width: 84px;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 0;
	padding: 10px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	border: 1px solid #f1f5f9;
	flex-shrink: 0;
}

.idc-logo-wrapper img.idc-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.idc-card-title-group .idc-card-label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--red);
	display: block;
	margin-bottom: 4px;
}

.idc-card-title-group h3 {
	font-size: 26px;
	font-weight: 800;
	color: var(--navy);
	margin: 0;
}

.digital-core-process {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	margin-bottom: 55px;
	justify-content: center;
}

.core-step .step-label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .5px;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.core-step h3 {
	font-size: 26px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 16px;
}

.core-step p {
	line-height: 1.7;
	color: #4a5561;
	font-size: 15px;
}

/*==================================================
COGNITIVE SHIFT
==================================================*/

.intro-section {
	padding: 100px 0 130px;
	background:
		radial-gradient(circle at top, #fff 0%, rgba(255,255,255,0) 46%),
		linear-gradient(180deg, #e21c15 0%, #e8eef5 100%);
	position: relative;
	overflow: hidden;
}

.cognitive-shift {
	padding: 100px 0 130px;
	background:
		radial-gradient(circle at top, rgba(255,255,255,.78) 0%, rgba(255,255,255,0) 46%),
		linear-gradient(180deg, #f2f5f9 0%, #e8eef5 100%);
	position: relative;
	overflow: hidden;
}

/* Subtle ambient glow behind the section */
.cognitive-shift::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(980px, 90vw);
	height: min(980px, 90vw);
	background: radial-gradient(circle, rgba(226, 28, 21, .06) 0%, transparent 72%);
	transform: translate(-50%, -40%);
	pointer-events: none;
}

.cognitive-header {
	max-width: 850px;
	margin: auto;
	text-align: center;
	margin-bottom: 70px;
	position: relative;
}

.cognitive-header h2 {
	font-size: 46px;
	margin: 18px 0 22px;
}

.compare-flow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
	margin-bottom: 45px;
	padding: 36px 28px;
	position: relative;
}

/* â”€â”€ Compare cards â€“ base â”€â”€ */
.compare-card {
	width: 340px;
	border-radius: 10px;
	padding: 40px 34px;
	text-align: center;
	transition:
		transform 420ms var(--ease),
		box-shadow 420ms var(--ease),
		border-color 420ms var(--ease);
	position: relative;
	will-change: transform;
}

/* â”€â”€ Old card (Traditional Model) â”€â”€ */
.compare-card.old {
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.compare-card.old:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
		0 25px 60px rgba(0, 0, 0, .12),
		0 0 40px rgba(226, 28, 21, .10);
	border-color: #d0d0d5;
}

/* â”€â”€ New card (The New Standard) â”€â”€ */
.compare-card.new {
	background: var(--navy);
	color: #fff;
	border-bottom: 4px solid var(--red);
	box-shadow: 0 15px 40px rgba(7, 21, 35, .25);
}

.compare-card.new:hover {
	transform: translateY(-10px) scale(1.04);
	box-shadow:
		0 25px 60px rgba(7, 21, 35, .35),
		0 0 40px rgba(226, 28, 21, .12);
	border-bottom-color: #ff3a33;
}

/* Glowing rim on the new card */
.compare-card.new::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(226, 28, 21, .35), transparent 50%, rgba(226, 28, 21, .2));
	opacity: 0;
	transition: opacity 500ms var(--ease);
	pointer-events: none;
	z-index: -1;
}

.compare-card.new:hover::before {
	opacity: 1;
}

/* â”€â”€ Labels â”€â”€ */
.compare-card .compare-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
	transition: color 300ms var(--ease);
}

.compare-card.new .compare-label {
	color: rgba(255, 255, 255, .65);
}

.compare-card.new:hover .compare-label {
	color: rgba(255, 255, 255, .9);
}

/* â”€â”€ Headings â”€â”€ */
.compare-card h3 {
	font-size: 24px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 14px;
	transition: color 300ms var(--ease);
}

.compare-card.new h3 {
	color: #fff;
}

/* â”€â”€ Body text â”€â”€ */
.compare-card p {
	color: var(--muted);
	line-height: 1.6;
	font-size: 15px;
	transition: color 300ms var(--ease);
}

.compare-card.new p {
	color: rgba(255, 255, 255, .82);
}

.compare-card.new:hover p {
	color: rgba(255, 255, 255, .95);
}

/* Arrow connector */
.compare-arrow {
	width: 140px;
	text-align: center;
	position: relative;
}

.transform-track {
	position: relative;
	height: 3px;
	width: 100%;
	margin-bottom: 16px;
	background: linear-gradient(90deg, rgba(226, 28, 21, .06), rgba(226, 28, 21, .3));
	border-radius: 999px;
	overflow: hidden;
}

.stream-dot {
	position: absolute;
	top: 50%;
	left: -12%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--red);
	transform: translateY(-50%);
	box-shadow: 0 0 8px rgba(226, 28, 21, .7);
	opacity: 0;
	animation: streamFlow 2.6s linear infinite;
	animation-delay: calc(var(--i) * 0.45s);
}

.compare-arrow .arrow-glyph {
	font-size: 34px;
	color: var(--red);
	font-weight: 900;
	-webkit-text-stroke: 5px var(--red);
	line-height: 1;
	display: inline-block;
	animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
	0%, 100% { transform: translateX(0); opacity: 1; }
	50%      { transform: translateX(6px); opacity: .7; }
}

@keyframes streamFlow {
	0%   { left: -12%; opacity: 0; }
	10%  { opacity: 1; }
	85%  { opacity: 1; }
	100% { left: 110%; opacity: 0; }
}

.compare-card.new::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 13px;
	border: 2px solid rgba(226, 28, 21, .55);
	opacity: 0;
	pointer-events: none;
	animation: arrivalPing 2.6s ease-out infinite;
	animation-delay: 1.9s;
}

@keyframes arrivalPing {
	0%   { opacity: 0; transform: scale(1); }
	14%  { opacity: .85; }
	42%  { opacity: 0; transform: scale(1.035); }
	100% { opacity: 0; transform: scale(1.035); }
}

.compare-card.old {
	animation: oldPulseFade 2.6s ease-in-out infinite;
}

@keyframes oldPulseFade {
	0%, 100% { opacity: 1; }
	50%      { opacity: .88; }
}

.compare-arrow .arrow-label {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--red);
	text-transform: uppercase;
}

/* â”€â”€ Scroll-reveal entrance for compare-flow children â”€â”€ */
.js-ready .compare-flow .compare-card.old {
	transition:
		opacity 600ms var(--ease),
		transform 600ms var(--ease),
		box-shadow 420ms var(--ease),
		border-color 420ms var(--ease);
}

.js-ready .compare-flow .compare-arrow {
	transition: opacity 500ms var(--ease) 200ms, transform 500ms var(--ease) 200ms;
}

.js-ready .compare-flow .compare-card.new {
	transition:
		opacity 600ms var(--ease) 350ms,
		transform 600ms var(--ease) 350ms,
		box-shadow 420ms var(--ease),
		border-color 420ms var(--ease);
}

.cognitive-quote {
	max-width: 760px;
	margin: auto;
	text-align: center;
	font-style: italic;
	color: #4a5561;
	font-size: 18px;
	line-height: 1.7;
}

/*==================================================
			FROM STRATEGY TO CONTINUOUS VALUE (SERVICES)
		==================================================*/

.services-section {
	padding: 110px 0;
	background: #f8f8f8;
}

.strategy-header-box {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 72px;
}

.strategy-heading {
	font-size: 46px;
	font-weight: 800;
	letter-spacing: .5px;
	color: var(--red);
	margin-bottom: 18px;
	text-align: center;
}

/*==================================================
		INTERACTIVE VENN DIAGRAM (SOLUTION DISCIPLINE CONVERGENCE)
		==================================================*/

@keyframes venn-draw {
	from {
		stroke-dashoffset: 848;
		opacity: 0;
	}
	to {
		stroke-dashoffset: 0;
		opacity: 1;
	}
}

@keyframes venn-pop-in {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}
	70% {
		transform: scale(1.08);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes venn-fade-up {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Default: hide everything before animation plays */
.venn-circle {
	stroke-dasharray: 848;
	stroke-dashoffset: 848;
	opacity: 0;
}

.venn-interactive-container.is-visible .venn-circle-advisory {
	animation: venn-draw 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.venn-interactive-container.is-visible .venn-circle-consulting {
	animation: venn-draw 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.venn-interactive-container.is-visible .venn-circle-engineering {
	animation: venn-draw 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

/* Petals pop in after circles draw */
.venn-petal {
	opacity: 0;
	transform-origin: center;
}

.venn-interactive-container.is-visible .venn-petal {
	animation: venn-pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

/* Inner labels fade up after petals */
.venn-label-group,
.venn-arc-label {
	opacity: 0;
}

.venn-interactive-container.is-visible .venn-label-group.advisory-label {
	animation: venn-fade-up 0.5s var(--ease) 1.2s forwards;
}

.venn-interactive-container.is-visible .venn-label-group.consulting-label {
	animation: venn-fade-up 0.5s var(--ease) 1.35s forwards;
}

.venn-interactive-container.is-visible .venn-label-group.engineering-label {
	animation: venn-fade-up 0.5s var(--ease) 1.5s forwards;
}

.venn-interactive-container.is-visible .venn-arc-label.advisory-label {
	animation: venn-fade-up 0.5s var(--ease) 0.5s forwards;
}

.venn-interactive-container.is-visible .venn-arc-label.consulting-label {
	animation: venn-fade-up 0.5s var(--ease) 0.75s forwards;
}

.venn-interactive-container.is-visible .venn-arc-label.engineering-label {
	animation: venn-fade-up 0.5s var(--ease) 1s forwards;
}

/* â”€â”€ End Venn Entrance Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.venn-interactive-container {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	margin-top: 16px;
	margin-bottom: 60px;
}

.venn-main-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0px;
	align-items: center;
}

.venn-svg-wrapper {
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
}

.venn-svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
	/* create an isolated stacking context so text can sit above blended petals */
	isolation: isolate;
}

.venn-arc-label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-family: inherit;
}

/* Arc label colours should match their circle borders/fills */
.venn-arc-label.advisory-label { fill: #FF514B; }
.venn-arc-label.consulting-label { fill: #E21C15; }
.venn-arc-label.engineering-label { fill: #AC0D07; }

.venn-circle {
	stroke-width: 5;
	fill: transparent;
	mix-blend-mode: multiply;
	stroke-opacity: 0.9;
	cursor: pointer;
	outline: none !important;
	transition: stroke-width 0.4s ease;
}

.venn-circle:focus,
.venn-circle:focus-visible,
.venn-circle:active {
	outline: none !important;
}

/* Top Circle: Advisory */
.venn-circle-advisory {
	stroke: #FF514B;
	fill: #FF514B;
}

.venn-circle-advisory:hover,
.venn-circle-advisory.active {
	stroke: #FF514B;
	stroke-width: 8;
	filter: url(#vennGlow);
}

.advisory-label,
.advisory-label .venn-circle-title {
	fill: white;
}

/* Bottom-Right Circle: Consulting */
.venn-circle-consulting {
	stroke: #E21C15;
	fill: #E21C15;
}

.venn-circle-consulting:hover,
.venn-circle-consulED241Dting.active {
	stroke: #E21C15;
	stroke-width: 8;
	filter: url(#vennGlow);
}

.consulting-label,
.consulting-label .venn-circle-title {
	fill: white;
}

/* Bottom-Left Circle: Engineering */
.venn-circle-engineering {
	stroke: #AC0D07;
	fill: #AC0D07;
}

.venn-circle-engineering:hover,
.venn-circle-engineering.active {
	stroke: #AC0D07;
	stroke-width: 8;
	filter: url(#vennGlow);
}

.engineering-label,
.engineering-label .venn-circle-title {
	fill: white;
}

.venn-label-group,
.venn-arc-label {
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.4s ease;
}

.venn-label-group.active,
.venn-arc-label.active {
	transform: scale(1.1);
}

.advisory-label { transform-origin: 300px 165px; }
.consulting-label { transform-origin: 390px 330px; }
.engineering-label { transform-origin: 210px 330px; }

.venn-overlap-group {
	pointer-events: none;
}

.venn-petal {
	stroke: none;
	pointer-events: none;
	mix-blend-mode: multiply;
	animation-fill-mode: both;
	opacity: 1;
}

.petal-1 { fill: #FF514B; }
.petal-2 { fill: #E21C15; }
.petal-3 { fill: #AC0D07; }

.venn-petal-text {
	font-size: 15px;
	font-weight: 700;
	fill: #ffffff;
	text-anchor: middle;
	dominant-baseline: central;
	pointer-events: none;
	letter-spacing: 0.5px;
	mix-blend-mode: normal;
	position: relative;
}

.venn-center {
	--venn-center-size: 40px;
	--venn-center-offset-x: 280px;
	--venn-center-offset-y: 255px;
}

.venn-center-bg {
	fill: rgba(255,255,255,0.18);
	stroke: rgba(255,255,255,0.16);
	stroke-width: 1;
	filter: drop-shadow(0 6px 18px rgba(0,0,0,0.08));
}

.venn-center-logo {
	pointer-events: none;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
	width: var(--venn-center-size);
	height: var(--venn-center-size);
}

.venn-circle-title {
	font-size: 22px;
	font-weight: 800;
	fill: #800000;
	text-anchor: middle;
	pointer-events: none;
	letter-spacing: -0.2px;
}

.venn-details-card {
	background: #ffffff;
	border: 1px solid var(--line);
	padding: 38px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.details-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.details-badge {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--red);
	background: rgba(229, 62, 62, 0.1);
	padding: 6px 12px;
	border-radius: 4px;
}

.details-icon {
	font-size: 28px;
}

.details-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 4px;
}

.details-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #334155;
	margin-bottom: 24px;
}

.details-divider {
	height: 1px;
	background: #e2e8f0;
	margin-bottom: 20px;
}

.capabilities-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #64748b;
	display: block;
	margin-bottom: 12px;
}

.capabilities-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.details-footer-hint {
	font-size: 12px;
	color: #94a3b8;
	font-style: italic;
}

/* Cognitive Shift overrides */
.cognitive-shift {
	background: radial-gradient(circle at top, rgba(255,255,255,.92) 0%, rgba(245,247,250,.94) 42%, rgba(235,239,245,.98) 100%);
}

.cognitive-shift::before {
	width: 840px;
	height: 840px;
	background: radial-gradient(circle, rgba(226, 28, 21, .05) 0%, transparent 72%);
	transform: translate(-50%, -42%);
}

.venn-interactive-container {
	padding: 36px 28px;
}

.venn-svg-wrapper {
	max-width: 640px;
}

.venn-circle {
	transform-box: fill-box;
	transform-origin: center;
	transition: stroke-width 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.venn-circle-advisory,
.venn-circle-consulting,
.venn-circle-engineering {
	fill-opacity: 0.9;
}

.venn-circle-advisory {
	fill: #FF514B;
}

.venn-circle-consulting {
	fill: #E21C15;
}

.venn-circle-engineering {
	fill: #AC0D07;
}

.venn-circle-advisory.active,
.venn-circle-consulting.active,
.venn-circle-engineering.active {
	stroke-width: 8;
	filter: url(#vennGlow);
	transform: scale(1.03);
	fill-opacity: 0.9;
}

.venn-circle-advisory:hover,
.venn-circle-consulting:hover,
.venn-circle-engineering:hover {
	stroke-width: 8;
	filter: url(#vennGlow);
	transform: scale(1.03);
}

.venn-circle-title {
	fill: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

.venn-details-card {
	display: block;
	background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
	border: 1px solid var(--line);
	padding: 34px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.business-value-box {
	display: block;
}

.business-value-box.is-default .value-items {
	max-width: 760px;
}

.strategy-desc {
	max-width: 820px;
	margin: 30px auto;
	font-size: 17px;
	line-height: 1.8;
	color: white;
	text-align: center;
}

.strategy-desc strong {
	color: var(--red);
}


@media (max-width: 900px) {
	.venn-main-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.venn-interactive-container {
		padding: 24px;
	}

	.venn-details-card {
		padding: 24px;
	}

	.venn-interactive-container {
		padding: 24px 18px;
	}
}

.services-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 24px !important;
	width: 100% !important;
	max-width: none !important;
	margin-bottom: 60px;
	align-items: stretch;
}

.service-card {
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	box-sizing: border-box;

	display: flex;
	flex-direction: column;

	background: #fff;
	padding: 25px 28px 22px;

	border: 1px solid #e2e2e2;
	border-top: 2px solid var(--red);

	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.service-card.advisory {
	border-top-color: var(--red);
}

.service-card.consulting {
	border-top-color: #6d84a6;
}

.service-card.engineering {
	border-top-color: var(--navy);
}

.service-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
}

.service-icon {
	width: 22px;
	min-width: 22px;
	font-size: 20px;
	line-height: 1;
	margin-right: 8px;
}

.service-card h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--navy);
}

.service-category {
	font-size: 8px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 16px;
}


.service-card p.service-desc {
	margin: 0 0 18px;
	font-size: 11px;
	line-height: 1.55;
	color: #4a5561;
}

.service-divider {
	display: block;
	width: 100%;
	height: 1px;
	background: #d9d9d9;
	margin-top: auto;
	margin-bottom: 14px;
}

.capabilities-label {
	margin-bottom: 8px;
	font-size: 9px;
	font-weight: 600;
	color: #555;
	text-transform: none;
}




/* =========================
		RESPONSIVE
		========================= */

@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.service-card {
		padding: 20px 18px;
	}

	.service-card h3 {
		font-size: 14px;
	}

	.service-card p.service-desc {
		font-size: 10px;
	}

	.capability-tag {
		font-size: 12px;
		padding: 3px 5px;
	}
}

/*==================================================
		CONTINUOUS BUSINESS VALUE
		==================================================*/

.business-value-box {
	background: #112d4b;
	padding: 65px;
	text-align: center;
	color: white;
}

.business-value-box .small-title.white {
	color: #ffffff;
	opacity: .75;
}

.business-value-box h2 {
	font-size: 40px;
	margin: 18px 0 40px;
	font-weight: 800;
}

.value-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 45px;
}

.value-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.value-item span {
	width: 8px;
	height: 8px;
	background: #c11d22;
}

/*==================================================
		QUOTE
		==================================================*/

.quote-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, #991518, #132d4c);
	color: white;
}

.quote-content {
	display: grid;
	grid-template-columns: 1fr 520px;
	align-items: end;
}

.quote-left {
	padding: 120px 0;
}

.quote-mark {
	font-size: 90px;
	color: #f1d0d0;
	line-height: 1;
	margin-bottom: 10px;
}

.quote-left h2 {
	font-size: 50px;
	line-height: 1.1;
	max-width: 520px;
	margin-bottom: 35px;
	font-weight: 800;
}

.quote-author {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	border-top: 1px solid rgba(255, 255, 255, .3);
	padding-top: 20px;
	max-width: 480px;
}

.quote-author span {
	display: block;
	margin-top: 10px;
	font-size: 15px;
	font-weight: 400;
	text-transform: none;
	opacity: .8;
}

.quote-right {
	display: flex;
	justify-content: flex-end;
}

.quote-right img {
	width: 100%;
	max-width: 520px;
	object-fit: cover;
}

/*==========================================
		RAPID TO BE SPOKE
		==========================================*/

.rapid-spectrum {
	padding: 80px 0;
}

.rapid-header {
	text-align: center;
	max-width: 760px;
	margin: auto;
	margin-bottom: 80px;
}

.rapid-header h2 {
	font-size: 46px;
	color: #112d4b;
	line-height: 1.25;
	margin-top: 18px;
	font-weight: 800;
}

.rapid-header strong {
	color: #c01d22;
}

.rapid-process {
	position: relative;
	width: 780px;
	height: 82px;
	margin: 32px auto 30px;
}

.process-layer {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: .6px;
	text-align: left;
	text-transform: uppercase;
	box-sizing: border-box;
	transform-origin: center;
	transition: transform 260ms var(--ease), filter 260ms var(--ease), box-shadow 260ms var(--ease);
}

.process-data {
	top: -30px;
	left: 0;
	width: 100%;
	height: 120px;
	background: #ef1717;
	z-index: 1;
	padding-left: 10%;
	clip-path: polygon(0 0,
			calc(100% - 42px) 0,
			100% 50%,
			calc(100% - 42px) 100%,
			0 100%,
			42px 50%);
}

.process-automation {
	top: -20px;
	left: 17%;
	width: 83%;
	height: 100px;
	background: #d10f0f;
	z-index: 2;
	padding-left: 10%;
	clip-path: polygon(0 0,
			calc(100% - 42px) 0,
			100% 50%,
			calc(100% - 42px) 100%,
			0 100%,
			42px 50%);
}

.process-ai {
	top: -10px;
	left: 42%;
	width: 58%;
	height: 80px;
	background: #a70d0d;
	text-align: center;
	z-index: 3;
	padding-left: 10%;
	clip-path: polygon(0 0,
			calc(100% - 42px) 0,
			100% 50%,
			calc(100% - 42px) 100%,
			0 100%,
			42px 50%);
}

.process-ux {
	top: 0;
	left: 67%;
	width: 33%;
	height: 60px;
	background: #800808;
	z-index: 4;
	justify-content: center;
	text-align: center;
	clip-path: polygon(0 0,
			calc(100% - 42px) 0,
			100% 50%,
			calc(100% - 42px) 100%,
			0 100%,
			42px 50%);
}

.rapid-process.is-visible .process-layer {
	animation: rapidLayerReveal 820ms var(--ease) both;
	animation-delay: calc(var(--layer-order, 0) * 150ms);
}

@keyframes rapidLayerReveal {
	0% {
		opacity: 0;
		transform: translate3d(0, 10px, 0) scale(.985);
		filter: saturate(.96);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		filter: none;
	}
}

.process-layer span {
	transition: transform 260ms var(--ease);
	will-change: transform;
}

/* ==========================================
		RESPONSIVE
		========================================== */

@media (max-width: 900px) and (min-width: 769px) {
	.rapid-process {
		width: 90%;
		max-width: 780px;
		height: 72px;
	}

	.process-layer {
		height: 72px;
		font-size: 11px;
	}
}

@media (max-width: 768px) {
	.rapid-process {
		position: relative;
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin: 32px 0 30px;
	}

	.process-layer {
		position: static;
		width: 100%;
		height: 60px;
		justify-content: center;
		text-align: center;
		padding: 0 20px;
		left: auto;
		top: auto;
		clip-path: polygon(0 0,
				calc(100% - 26px) 0,
				100% 50%,
				calc(100% - 26px) 100%,
				0 100%,
				0 100%);
		opacity: 0;
		transform: translate3d(-28px, 0, 0);
		transition: opacity .5s var(--ease, ease), transform .5s var(--ease, ease);
	}

	.rapid-process.is-visible .process-layer {
		opacity: 1;
		transform: none;
	}

	.rapid-process.is-visible .process-data {
		transition-delay: .05s;
	}

	.rapid-process.is-visible .process-automation {
		transition-delay: .15s;
	}

	.rapid-process.is-visible .process-ai {
		transition-delay: .25s;
	}

	.rapid-process.is-visible .process-ux {
		transition-delay: .35s;
	}

	.process-layer span {
		margin: 0 !important;
	}

	.rapid-process.is-visible .process-layer {
		animation: none;
	}
}

@media (max-width: 600px) {
	.process-layer {
		height: 52px;
		font-size: 12px;
		letter-spacing: .3px;
	}
}

@media (max-width: 420px) {
	.process-layer {
		height: 48px;
		font-size: 10.5px;
	}
}

.rapid-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 70px;
}

.rapid-card {
	background: white;
	padding: 38px;
	border: 1px solid var(--line);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
	cursor: default;
}

.rapid-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
	border-color: #e21c15;
}

.rapid-card.featured {
	background: #112d4b;
	color: white;
}

.rapid-card-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
}

.rapid-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	flex: 0 0 auto;
	margin-top: 2px;
	font-size: 24px;
	color: var(--red);
}

.rapid-icon svg {
	display: block;
}

.rapid-card.featured .rapid-icon {
	color: #fff;
}

.rapid-card h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.05;
	margin: 0;
}

.rapid-card p.rapid-desc {
	color: #687484;
	line-height: 1.7;
	margin-bottom: 22px;
}

.rapid-card.featured p.rapid-desc {
	color: rgba(255, 255, 255, .8);
}

.rapid-usecases-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #98a4b3;
	margin-bottom: 14px;
}

.rapid-card ul {
	list-style: none;
	padding: 0;
}

.rapid-card li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-weight: 700;
	color: var(--navy);
}

.rapid-card.featured li {
	color: #fff;
}

.rapid-card li::before {
	content: "âœ“";
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 1px solid var(--red);
	color: var(--red);
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rapid-card.featured li::before {
	border-color: rgba(255, 255, 255, .6);
	color: #fff;
}

/*==================================
		AI BUDGET
		==================================*/

.ai-budget {
	padding: 120px 0;
	background: #ffffff;
}

.budget-header {
	max-width: 900px;
	margin: auto;
	text-align: center;
	margin-bottom: 70px;
}

.budget-header h2 {
	font-size: 42px;
	color: #112d4b;
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: 800;
}

.budget-header p {
	max-width: 720px;
	margin: auto;
	color: var(--muted);
	line-height: 1.8;
}

.budget-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.budget-card {
	background: #fff;
	border: 1px solid #ededed;
	padding: 35px;
	transition: .3s;
}

.budget-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.budget-icon {
	width: 50px;
	height: 50px;
	background: #fff4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	font-size: 22px;
}

.budget-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #112d4b;
	font-weight: 700;
}

.budget-card p {
	color: #697586;
	line-height: 1.7;
	font-size: 15px;
}

/*==================================
		SOLUTION GROWTH
		==================================*/

.solution-growth {
	padding: 110px 0;
	background: #fff;
}

.growth-header {
	text-align: center;
	margin-bottom: 55px;
}

.growth-header h2 {
	font-size: 38px;
	color: #112d4b;
	font-weight: 800;
	letter-spacing: .5px;
}

.growth-header p {
	margin-top: 14px;
	color: #4a5561;
	font-style: italic;
}

.growth-timeline {
	display: flex;
	align-items: flex-end;
	gap: 0;
}

.growth-step {
	flex: 1;
	position: relative;
}

.growth-wedge {
	height: 45px;
	background: #111;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.growth-box {
	background: #c51d23;
	color: white;
	text-align: center;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.growth-step.s1 .growth-box {
	min-height: 90px;
}

.growth-step.s2 .growth-box {
	min-height: 150px;
}

.growth-step.s3 .growth-box {
	min-height: 210px;
}

.growth-box h3 {
	font-size: 26px;
	font-weight: 800;
}

.growth-year {
	text-align: center;
	margin-top: 18px;
	font-size: 15px;
	color: var(--text);
	font-weight: 600;
}

/*==================================
		PARTNERS
		==================================*/

.partners-section {
	padding: 90px 0 110px;
	background: #fff;
}

.partner-category-section {
	margin-bottom: 80px;
}

.partner-category-section:last-child {
	margin-bottom: 0;
}

.partner-category-title {
	display: block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 34px;
	text-align: center;
}

.partner-logos-wrap {
	overflow: hidden;
	max-width: 900px;
	margin: 0 auto;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-logos-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: logos-scroll 22s linear infinite;
}

.partner-logos-track:hover {
	animation-play-state: paused;
}

.partner-logo {
	flex: 0 0 auto;
	width: 180px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	opacity: .85;
}

.partner-logo:hover {
	opacity: 1;
}

.partner-logo img {
	height: 60px;
	width: auto;
	max-width: 130px;
	object-fit: contain;
	display: block;
}

@keyframes logos-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/*==================================
		FINAL CTA
		==================================*/

.final-cta {
	position: relative;
	overflow: hidden;
	background: #102a47;
	padding: 150px 0;
}

.final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('images/homepage/cta.png') center/cover;
	opacity: .18;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center, rgba(193, 29, 34, .35), transparent 45%),
		linear-gradient(rgba(15, 41, 70, .15), rgba(15, 41, 70, .85));
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	text-align: center;
	margin: auto;
	color: white;
}

.cta-content h2 {
	font-size: 52px;
	margin: 22px 0 26px;
	line-height: 1.15;
	font-weight: 800;
}

.cta-content p {
	max-width: 700px;
	margin: auto;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, .82);
	line-height: 1.8;
}


/* =========================================================
   APPROACH PAGE STYLES
   ========================================================= */

.approach-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: #fff;
	overflow: hidden;
}

.approach-page section:not(.nodes-section):not(.quote-band):not(.page-hero):not(.cta-panel) {
	display: block;
	width: 100%;
	float: none;
	clear: both;
}

.container {
	max-width: 1200px;
	width: calc(100% - 80px);
	margin: auto;
}

img {
	display: block;
	width: 100%;
}

a {
	text-decoration: none;
}

.btn-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	padding: 16px 30px;
	font-weight: 700;
	font-size: 14px;
	transition: .25s;
}

.btn-red:hover {
	background: var(--red-dark);
}

/* =========================================================
		HERO
		========================================================= */

.approach-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #3a0608;
}

.approach-hero-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.approach-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.approach-hero-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:
		radial-gradient(circle at 50% 0%, rgba(14, 66, 120, .45), transparent 55%),
		linear-gradient(90deg, rgba(7, 21, 35, .92) 0%, rgba(14, 42, 71, .78) 45%, rgba(4, 12, 20, .55) 100%);
}

.approach-hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	color: #fff;
	padding: 60px 0;
	padding-top: 260px;
}

.approach-hero h1 {
	font-size: 56px;
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.approach-hero p {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .88);
	max-width: 620px;
}

/* =========================================================
		INTRO
		========================================================= */

.approach-intro {
	padding: 90px 0 70px;
	text-align: center;
	background: #fff;
}

.approach-intro h2 {
	font-size: 34px;
	font-weight: 800;
	color: #111;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 22px;
}

.approach-intro h2 .highlight {
	color: var(--red);
}

.approach-intro p {
	max-width: 900px;
	margin: auto;
	font-size: 17px;
	line-height: 1.8;
	color: #333;
}

/* =========================================================
		ARCHITECTURE OF SCALE
		========================================================= */

.architecture-scale {
	padding: 80px 0 110px;
}

.architecture-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 55px;
}

.architecture-header .small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 14px;
}

.architecture-header h3 {
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 16px;
}

.architecture-header p {
	color: #4a5561;
	line-height: 1.7;
	font-size: 16px;
}

.building-frame {
	position: relative;
	max-width: 940px;
	margin: auto;
	border: 3px solid var(--red);
	background: #fff;
	padding: 40px 40px 40px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}

.building-roof {
	text-align: center;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--navy);
	border: 1px solid var(--border);
	background: #fdf1f1;
	padding: 14px;
	margin-bottom: 25px;
}

.building-layer {
	display: flex;
	align-items: center;
	gap: 22px;
	border: 1px solid var(--border);
	padding: 22px 26px;
	margin-bottom: 20px;
}

.building-layer:last-child {
	margin-bottom: 0;
}

.building-layer .layer-num {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	background: var(--navy);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.building-layer h4 {
	font-size: 24px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 4px;
}

.building-layer p {
	color: var(--gray);
	font-size: 18px;
}

.building-tab {
	position: absolute;
	right: -28px;
	top: 190px;
	bottom: 60px;
	width: 30px;
	background: var(--red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	writing-mode: vertical-rl;
	text-transform: uppercase;
}

.building-quote {
	position: absolute;
	right: -60px;
	bottom: -60px;
	width: 340px;
	background: var(--navy);
	color: #fff;
	padding: 26px 30px;
	font-size: 18px;
	line-height: 1.6;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.building-quote span {
	display: block;
	width: 34px;
	height: 2px;
	background: var(--red);
	margin-top: 14px;
}

/* =========================================================
		TRANSFORMATION
		========================================================= */

.transformation-section {
	padding: 190px 0 90px;
	text-align: center;
	background: var(--mist);
}

.transformation-section h2 {
	font-size: 42px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.15;
	margin-bottom: 26px;
}

.transformation-section p {
	max-width: 680px;
	margin: auto;
	color: var(--gray);
	line-height: 1.8;
	font-size: 16px;
}

.transformation-divider {
	width: 90px;
	height: 4px;
	background: var(--red);
	margin: 40px auto 0;
}

/* =========================================================
		PHILOSOPHY
		========================================================= */

.philosophy-section {
	padding: 90px 0 100px;
	background: var(--mist);

}

.philosophy-section h2 {
	font-size: 38px;
	font-weight: 800;
	color: #111;
	margin-bottom: 24px;
	max-width: 700px;
}

.philosophy-section p {
	max-width: 700px;
	color: #444f5c;
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 35px;
}

/* =========================================================
		SEVEN NODES
		========================================================= */

.nodes-section {
	display: grid;
	grid-template-columns: 420px 1fr;
	background: var(--mist);
	width: 100%;
	float: none;
	clear: both;
}

.nodes-left {
	background: var(--navy);
	color: #fff;
	padding: 90px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nodes-left h2 {
	font-size: 38px;
	font-weight: 800;
	color: #f6c7c9;
	margin-bottom: 22px;
	line-height: 1.15;
}

.nodes-left p {
	color: rgba(255, 255, 255, .75);
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 26px;
}

.nodes-tags {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nodes-tags .tag {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .85);
}

.nodes-tags .tag span {
	width: 8px;
	height: 8px;
	background: var(--red);
}

.nodes-right {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

.nodes-diagram-image {
	width: 100%;
	max-width: 680px;
}

.nodes-diagram-image img {
	width: 100%;
	height: auto;
	display: block;
}

.nodes-diagram-svg {
	width: 100%;
	max-width: 680px;
}

.nodes-diagram-svg svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
}

/* =========================================================
		QUOTE
		========================================================= */

.approach-quote {
	position: relative;
	overflow: hidden;
	background: linear-gradient(100deg, #8c1114 0%, #6a0d10 30%, var(--navy) 75%);
	min-height: 380px;
	display: flex;
	align-items: center;
}

.approach-quote-inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
	color: #fff;
	padding: 70px 0;
}

.approach-quote .quote-mark {
	font-size: 70px;
	color: rgba(255, 255, 255, .35);
	line-height: 1;
	margin-bottom: 10px;
}

.approach-quote h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 26px;
}

.approach-quote .quote-author {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.approach-quote .quote-role {
	font-size: 14px;
	color: rgba(255, 255, 255, .7);
	margin-top: 4px;
	font-weight: 400;
}

.approach-quote-photo {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 42%;
	overflow: hidden;
}

.approach-quote-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}

/* =========================================================
		FINAL CTA
		========================================================= */

.approach-cta {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	padding: 130px 0;
}

.approach-cta-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.approach-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .35;
}

.approach-cta-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(rgba(15, 41, 70, .3), rgba(15, 41, 70, .9));
}

.approach-cta-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: auto;
	text-align: center;
	color: #fff;
}

.approach-cta-content .small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #f0b8ba;
	margin-bottom: 20px;
}

.approach-cta-content h2 {
	font-size: 44px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 22px;
}

.approach-cta-content p {
	color: rgba(255, 255, 255, .75);
	line-height: 1.8;
	margin-bottom: 36px;
}


/* =========================================================
   PHILOSOPHY PAGE STYLES
   ========================================================= */

.philosophy-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: #fff;
	overflow: hidden;
}

.philosophy-page section {
	display: block;
	width: 100%;
	float: none;
	clear: both;
}

.container {
	max-width: 1200px;
	width: calc(100% - 80px);
	margin: auto;
}

img {
	display: block;
	width: 100%;
}

a {
	text-decoration: none;
}

svg {
	display: block;
}

.btn-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	padding: 16px 30px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .3px;
	text-transform: uppercase;
	border: 1px solid var(--red);
	cursor: pointer;
	transition: .25s;
}

.btn-red:hover {
	background: var(--red-dark);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: transparent;
	color: #fff;
	padding: 16px 30px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .3px;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, .55);
	transition: .25s;
}

.btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 14px;
}

/* =========================================================
		HERO
		========================================================= */

.philosophy-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #3a0608;
}

.philosophy-hero-image {
	position: absolute;
	inset: 0;
}

.philosophy-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.philosophy-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 10%, rgba(220, 40, 35, .55), transparent 55%),
		linear-gradient(100deg, rgba(58, 6, 8, .95) 0%, rgba(90, 12, 15, .82) 45%, rgba(42, 5, 7, .6) 100%);
}

.philosophy-hero-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	color: #fff;
	padding: 140px 0;
	padding-top: 260px;
}

.philosophy-hero h1 {
	font-size: 52px;
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.philosophy-hero p {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .85);
	max-width: 560px;
	margin-bottom: 34px;
}

.philosophy-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

/* =========================================================
		WHY 80% OF ENTERPRISE AI FAILS
		========================================================= */

.fail-section {
	width: 100%;
	background: #ffffff;
	padding: 70px 0 40px;
	box-sizing: border-box;
}

.fail-container {
	width: calc(100% - 56px);
	max-width: 1200px;
	margin: 0 auto;
}

.fail-intro {
	display: grid;
	grid-template-columns: 300px 1fr;
	column-gap: 50px;
	align-items: center;

	min-height: 151px;

	margin-bottom: 64px;
}

.fail-intro__stat {
	min-height: 151px;
	display: flex;
	align-items: center;
	padding: 0 28px 0 16px;
	border-right: 3px solid #ef1b24;
	box-sizing: border-box;
}

.fail-intro__stat strong {
	flex: 0 0 auto;
	display: inline-block;
	margin-right: 13px;
	font-size: 38px;
	line-height: 1;
	font-weight: 800;
	color: #050505;
	letter-spacing: -1.5px;
}

.fail-intro__stat span {
	display: block;
	font-size: 17px;
	line-height: 1.45;
	font-weight: 400;
	color: #111111;
}

.fail-intro__copy {
	align-self: center;
	padding-top: 2px;
}

.fail-intro__copy h2 {
	margin: 0 0 19px;
	font-size: 35px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -1.2px;
	color: #111111;
}

.fail-intro__copy p {
	max-width: 760px;
	margin: 0;
	font-size: 18px;
	line-height: 1.42;
	font-weight: 400;
	color: #171717;
}

.fail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	width: 100%;
}

.fail-card {
	position: relative;
	min-height: 207px;
	padding: 28px 28px 24px;
	box-sizing: border-box;
	background: #ffffff;
	border: 1px solid #cccccc;
	overflow: hidden;
}

.fail-card__top {
	display: flex;
	align-items: center;
	gap: 21px;
	margin-bottom: 14px;
}

.fail-card__icon {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: #f7f7f7;
	border: 1px solid #d1d1d1;
	color: #ef1b24;
}

.fail-card__icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.fail-card h3 {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: 21px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.3px;
	color: #111111;
}

.fail-card p {
	position: relative;
	z-index: 2;
	max-width: 275px;
	margin: 0;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 400;
	color: #161616;
}


.fail-card--highlight {
	border: 2px solid #ef1b24;
	padding: 27px 27px 23px;
}

.fail-card--highlight .fail-card__icon {
	color: #ef1b24;
	background: #f7f7f7;
	border-color: #d1d1d1;
}

.fail-card__watermark {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 82px;
	height: 82px;
	color: rgba(239, 27, 36, 0.09);
	pointer-events: none;
	transform: rotate(-8deg);
}

.fail-card__watermark svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* =========================================================
		RESPONSIVE
		========================================================= */

@media (max-width: 900px) {

	.fail-section {
		padding: 60px 0;
	}

	.fail-container {
		width: calc(100% - 40px);
	}

	.fail-intro {
		grid-template-columns: 1fr;
		row-gap: 30px;
		min-height: auto;
		margin-bottom: 40px;
	}

	.fail-intro__stat {
		min-height: auto;
		padding: 0 0 25px;
		border-right: 0;
		border-bottom: 3px solid #ef1b24;
	}

	.fail-intro__copy {
		padding-top: 0;
	}

	.fail-grid {
		grid-template-columns: 1fr;
	}

	.fail-card {
		min-height: auto;
	}

}


@media (max-width: 600px) {

	.fail-section {
		padding: 45px 0;
	}

	.fail-container {
		width: calc(100% - 32px);
	}

	.fail-intro__stat {
		align-items: flex-start;
	}

	.fail-intro__stat strong {
		font-size: 36px;
	}

	.fail-intro__stat span {
		font-size: 16px;
	}

	.fail-intro__copy h2 {
		font-size: 30px;
	}

	.fail-intro__copy p {
		font-size: 16px;
	}

	.fail-card {
		padding: 24px;
	}

	.fail-card--highlight {
		padding: 23px;
	}

}

/* =========================================================
		EXECUTION GAP
		========================================================= */

.gap-section {
	padding: 90px 0 100px;
	text-align: center;
	background: var(--light);
}

.gap-section h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.3;
	margin-bottom: 18px;
}

.gap-section>.container>p {
	max-width: 680px;
	margin: 0 auto 50px;
	color: var(--gray);
	font-size: 16px;
	line-height: 1.8;
}

.gap-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	text-align: left;
	box-shadow: 0 25px 50px rgba(15, 41, 70, .08);
}

.gap-col {
	padding: 44px 44px;
}

.gap-col-left {
	background: var(--red-light);
}

.gap-col-right {
	background: var(--navy);
	color: #fff;
}

.gap-col .col-label {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.gap-col-left .col-label {
	color: var(--red);
}

.gap-col-right .col-label {
	color: #f0b8ba;
}

.gap-item {
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.gap-col-right .gap-item {
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.gap-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.gap-item h4 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--navy);
}

.gap-col-right .gap-item h4 {
	color: #fff;
}

.gap-item p {
	font-size: 15px;
	line-height: 1.75;
	color: #4a5561;
}

.gap-col-right .gap-item p {
	color: rgba(255, 255, 255, .78);
}

/* =========================================================
		8-STAGE DELIVERY FRAMEWORK
		========================================================= */
.framework-section {
	position: relative;
	width: 100%;
	padding: 65px 0 80px;
	background: #f8f9fa;
	overflow: hidden;
}

/* =========================================================
		CONTAINER
		========================================================= */
.framework-container {
	position: relative;
	width: calc(100% - 110px);
	max-width: 1200px;
	margin: 0 auto;
}

/* =========================================================
		HEADER
		========================================================= */
.framework-header {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 0 20px;
}

.framework-header h2 {
	margin: 0 0 24px;
	font-size: 38px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -1px;
	color: #111;
}

.framework-header p {
	max-width: 820px;
	margin: 0 auto;
	padding-bottom: 20px;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 400;
	color: #111;
}

/* =========================================================
		VISUAL
		========================================================= */
.framework-visual {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
}

/* =========================================================
		HACHIDAN WATERMARK
		========================================================= */
.framework-watermark {
	position: absolute;
	top: 130px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
	font-size: 68px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -3px;
	white-space: nowrap;
	color: rgba(225, 42, 48, .18);
	pointer-events: none;
}

/* =========================================================
		SPIRAL IMAGE
		========================================================= */
.framework-spiral-image {
	position: relative;
	z-index: 2;
	display: block;
	width: 270px;
	height: auto;
	max-height: 330px;
	object-fit: contain;
}

.hachidan-image-btn {
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.hachidan-image-btn img {
	display: block;
	width: 100%;
	height: auto;
}

.hachidan-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: rgba(0, 0, 0, .82);
}

.hachidan-modal.is-open {
	display: flex;
}

.hachidan-modal-image {
	display: block;
	max-width: 90vw;
	max-height: 88vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.hachidan-modal-close {
	position: absolute;
	top: 20px;
	right: 25px;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
}

.hachidan-modal-close:hover {
	opacity: .7;
}

/* =========================================================
		PHASE TABS
		========================================================= */
.phase-tabs {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
	margin: 20px 0 33px;
}

.phase-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 8px 10px;
	border: none;
	background: #07182d;
	color: #fff;
	font-family: inherit;
	text-align: center;
	cursor: pointer;
	transition: background .2s ease;
}

.phase-tab:hover {
	background: #102b49;
}

.phase-tab.active {
	background: #8d0d0d;
}

.phase-number {
	display: block;
	margin-bottom: 3px;
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: rgba(255, 255, 255, .9);
}

.phase-title {
	padding: 5px;
	display: block;
	font-size: 18px;
	line-height: 1.15;
	font-weight: 700;
	color: #fff;
}

.phase-range {
	display: block;
	margin-top: 3px;
	font-size: 10px;
	line-height: 1;
	color: rgba(255, 255, 255, .9);
}

/* =========================================================
		FRAMEWORK CONTENT
		========================================================= */
.framework-content {
	position: relative;
	z-index: 4;
	width: 100%;
}

.phase-panel {
	display: none;
	width: 100%;
	background: #fff;
	border: 1px solid #d5d5d5;
	box-sizing: border-box;
}

.phase-panel.active {
	display: block;
}

/* =========================================================
		PHASE HEADING
		========================================================= */
.phase-panel-heading {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 67px;
	margin: 0 25px;
	border-bottom: 1px solid #d8d8d8;
}

.phase-panel-number {
	font-size: 20px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -1px;
	color: #c9cacb;
}

.phase-panel-heading h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -.4px;
	color: #111;
}

/* =========================================================
		STAGE GRID
		========================================================= */
.stage-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 35px;
	padding: 18px 25px 27px;
}

/* =========================================================
		STAGE CARD
		========================================================= */
.stage-card {
	min-width: 0;
	padding: 0;
	position: relative;
	transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), filter 220ms var(--ease);
	will-change: transform;
}

.stage-card::before {
	content: "";
	position: absolute;
	inset: -10px -12px;
	border: 1px solid transparent;
	pointer-events: none;
	opacity: 0;
	transform: scale(.985);
	transition: opacity 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
}

.stage-card:hover {
	transform: translateY(-4px);
	filter: drop-shadow(0 14px 24px rgba(7, 21, 35, .08));
}

.stage-card:hover::before {
	opacity: 1;
	transform: scale(1);
	border-color: rgba(226, 28, 21, .18);
}

.stage-card:hover .stage-number {
	transform: translateX(2px);
}

.stage-card:hover .stage-card h4 {
	color: var(--red);
}

.stage-number,
.stage-card h4,
.stage-label,
.stage-focus-block p {
	transition: transform 220ms var(--ease), color 220ms var(--ease), opacity 220ms var(--ease);
}

/* =========================================================
		STAGE NUMBER
		========================================================= */
.stage-number {
	margin-bottom: 5px;
	font-size: 18px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -1px;
	color: #c9000b;
}

/* =========================================================
		STAGE TITLE
		========================================================= */
.stage-card h4 {
	margin: 0 0 16px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #111;
}

/* =========================================================
		LABEL
		========================================================= */
.stage-label {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	line-height: 1;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #c9000b;
}

/* =========================================================
		FOCUS
		========================================================= */
.stage-focus-block {
	margin-bottom: 14px;
}

.stage-focus-block p {
	max-width: 350px;
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: #222;
}

/* =========================================================
		GUARANTEE
		========================================================= */
.stage-guarantee {
	position: relative;
	width: 100%;
	margin-bottom: 14px;
	padding: 9px 12px;
	background: #f0f0f1;
	border-left: 2px solid #e31b23;
	box-sizing: border-box;
}

.stage-guarantee .stage-label {
	margin-bottom: 6px;
}

.stage-guarantee p {
	max-width: 350px;
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	font-weight: 600;
	color: #111;
}

/* =========================================================
		DELIVERABLES
		========================================================= */
.stage-deliverables {
	width: 100%;
}

.capability-tags {
	display: flex;
	flex-wrap: nowrap;
	gap: 5px;
	width: 100%;
	overflow: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.capability-tags::-webkit-scrollbar {
	display: none;
}

.capability-tag {
	flex: 0 0 auto;
	white-space: nowrap;
	border: 1px solid #dfe3e8;
	padding: 4px 7px;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--navy);
	background: #fff;
}

/* =========================================================
		TABLET
		========================================================= */
@media (max-width: 900px) {
	.framework-container {
		width: calc(100% - 60px);
	}

	.framework-header h2 {
		font-size: 28px;
	}

	.framework-watermark {
		font-size: 60px;
	}
}

/* =========================================================
		MOBILE
		========================================================= */
@media (max-width: 700px) {
	.framework-section {
		padding: 55px 0 65px;
	}

	.framework-container {
		width: calc(100% - 32px);
	}

	.framework-header {
		padding: 0;
	}

	.framework-header h2 {
		font-size: 25px;
		margin-bottom: 17px;
	}

	.framework-header p {
		font-size: 12px;
		line-height: 1.45;
	}

	.framework-visual {
		height: 210px;
	}

	.framework-watermark {
		top: 15px;
		font-size: 48px;
		letter-spacing: -2px;
	}

	.framework-spiral-image {
		width: 190px;
		max-height: 190px;
	}

	/* PHASES */
	.phase-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 7px;
	}

	/* CONTENT */
	.phase-panel-heading {
		margin: 0 18px;
		min-height: 62px;
	}

	.phase-panel-number {
		font-size: 18px;
	}

	.phase-panel-heading h3 {
		font-size: 16px;
	}

	.stage-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 18px 18px 25px;
	}

	.stage-card h4 {
		font-size: 14px;
	}
}

/* =========================================================
		SMALL MOBILE
		========================================================= */
@media (max-width: 450px) {
	.framework-container {
		width: calc(100% - 24px);
	}

	.framework-header h2 {
		font-size: 22px;
	}

	.framework-header p {
		font-size: 11px;
	}

	.framework-visual {
		height: 185px;
	}

	.framework-watermark {
		top: 12px;
		font-size: 37px;
	}

	.framework-spiral-image {
		width: 165px;
		max-height: 165px;
	}

	.phase-tabs {
		grid-template-columns: 1fr 1fr;
	}

	.phase-tab {
		min-height: 55px;
	}

	.phase-title {
		font-size: 15px;
	}

	.phase-panel-heading {
		margin: 0 14px;
	}

	.stage-grid {
		padding-left: 14px;
		padding-right: 14px;
	}

	.capability-tag {
		font-size: 7.5px;
	}
}

/* =========================================================
		GUARANTEE
		========================================================= */

.stage-guarantee {
	position: relative;
	margin-bottom: 17px;
	padding: 12px 15px 12px 17px;
	background: #f1f1f2;
	border-left: 3px solid #e31b23;
	box-sizing: border-box;
}


.stage-guarantee .stage-label {
	margin-bottom: 7px;
}


.stage-guarantee p {
	max-width: 390px;

	margin: 0;

	font-size: 11px;

	line-height: 1.45;

	font-weight: 600;

	color: #111111;
}


/* =========================================================
		DELIVERABLES
		========================================================= */

.stage-deliverables {
	width: 100%;
}


.deliverables-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}


.deliverable {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 5px 11px;
	box-sizing: border-box;
	background: #eeeeef;
	border: 1px solid #e0e0e0;
	font-size: 9px;
	line-height: 1.2;
	color: #111111;
	white-space: nowrap;
}


/* =========================================================
		RESPONSIVE
		========================================================= */

@media (max-width: 1000px) {

	.framework-container {
		width: calc(100% - 60px);
	}

	.framework-header {
		grid-template-columns: minmax(0, 1fr) 280px;
		column-gap: 20px;
	}

	.framework-header-text h2 {
		font-size: 28px;
	}

	.framework-header-text p {
		font-size: 14px;
	}

	.framework-spiral {
		width: 210px;
		height: 210px;
	}

	.framework-watermark {
		font-size: 60px;
		top: 180px;
	}

	.stage-grid {
		column-gap: 40px;
	}

}


@media (max-width: 760px) {

	.framework-section {
		padding: 55px 0 70px;
	}

	.framework-container {
		width: calc(100% - 36px);
	}


	/* HEADER */

	.framework-header {
		grid-template-columns: 1fr;

		min-height: auto;

		margin-bottom: 20px;
	}

	.framework-header-text {
		max-width: none;
	}

	.framework-header-text h2 {
		font-size: 27px;
		margin-bottom: 18px;
	}

	.framework-header-text p {
		max-width: none;
		font-size: 14px;
	}

	.framework-header-visual {
		height: 210px;
		margin-top: 5px;
	}

	.framework-spiral {
		width: 200px;
		height: 200px;
	}


	/* WATERMARK */

	.framework-watermark {
		top: 270px;

		right: 50%;

		transform: translateX(50%);

		font-size: 48px;
	}


	/* TABS */

	.phase-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));

		gap: 8px;

		margin-bottom: 25px;
	}

	.phase-tab {
		min-height: 58px;
	}


	/* CONTENT */

	.phase-panel-heading {
		margin: 0 20px;
	}

	.stage-grid {
		grid-template-columns: 1fr;
		gap: 35px;
		padding: 25px 20px 30px;
	}

}


@media (max-width: 480px) {

	.framework-container {
		width: calc(100% - 24px);
	}

	.framework-header-text h2 {
		font-size: 24px;
	}

	.framework-header-text p {
		font-size: 13px;
		line-height: 1.5;
	}

	.framework-header-visual {
		height: 185px;
	}

	.framework-spiral {
		width: 175px;
		height: 175px;
	}

	.framework-watermark {
		top: 245px;

		font-size: 36px;
	}

	.phase-tabs {
		grid-template-columns: 1fr;
	}

	.phase-tab {
		min-height: 55px;
	}

	.phase-panel-heading {
		min-height: 65px;

		margin: 0 16px;
	}

	.phase-panel-number {
		font-size: 20px;
	}

	.phase-panel-heading h3 {
		font-size: 20px;
	}

	.stage-grid {
		padding: 22px 16px 25px;
	}

	.stage-number {
		font-size: 28px;
	}

}

/* =========================================================
		RESILIENCE
		========================================================= */

.resilience-section {
	background: #fff;
	padding: 90px 0 0;
	text-align: center;
}

.resilience-card {
	background: var(--navy);
	padding: 54px 54px 50px;
	color: #fff;
}

.resilience-card h2 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 18px;
	color: white;
}

.resilience-divider {
	width: 60px;
	height: 3px;
	background: var(--red);
	margin: 0 auto 38px;
}

.resilience-image {
	width: 100%;
	max-height: 320px;
	overflow: hidden;
	margin-bottom: 40px;
}

.resilience-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.resilience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: left;
}

.rapid-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 70px;
}

.resilience-item {
	padding: 26px 24px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .12);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
	cursor: default;
}

.resilience-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
	border-color: #e21c15;
}

.resilience-item .icon {
	color: var(--red);
	margin-bottom: 14px;
}

.resilience-item h4 {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 8px;
	color: #fff;
}

.resilience-item p {
	font-size: 13.5px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .7);
}

/* =========================================================
		FINAL CTA
		========================================================= */

.philosophy-cta {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	padding: 110px 0;
}

.philosophy-cta-image {
	position: absolute;
	inset: 0;
}

.philosophy-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .4;
}

.philosophy-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(58, 6, 8, .55), rgba(15, 41, 70, .85));
}

.philosophy-cta-card {
	position: relative;
	z-index: 2;
	max-width: 540px;
	margin: auto;
	background: rgba(247, 247, 247, .96);
	text-align: center;
	padding: 54px 50px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.philosophy-cta-card .icon {
	width: 46px;
	height: 46px;
	background: var(--red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.philosophy-cta-card h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 14px;
}

.philosophy-cta-card p {
	color: var(--gray);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 30px;
}

/* =========================================================
		CORE PLATFORM
		========================================================= */
.core-platform-section {
	padding: 44px 0 34px;
	background: linear-gradient(180deg, #fff8f8 0%, #f8fbff 100%);
}

.core-platform-header {
	text-align: center;
	margin-bottom: 18px;
}

.core-platform-header h2 {
	margin-bottom: 30px;
	color: var(--red);
	font-size: clamp(22px, 2.8vw, 34px);
	font-weight: 700;
}

.core-platform-header p {
	margin: 0;
	font-size: 13px;
	color: #6d7078;
}

.core-platform-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.core-platform-card {
	margin-bottom: 30px;
	margin-top: 30px;
	position: relative;
	min-height: 220px;
	overflow: hidden;
	display: block;
	border-radius: 0;
	border: 1px solid rgba(7, 21, 35, .12);
	background: #fff;
	box-shadow: none;
	isolation: isolate;
}

.core-platform-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 100%);
	opacity: 1;
	transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.core-platform-card:hover::before {
	opacity: .8;
	transform: none;
}

.core-platform-card__orb {
	position: absolute;
	inset: 10px 10px 58px;
	display: grid;
	place-items: center;
	border-radius: inherit;
	background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .22) 56%, rgba(255, 255, 255, .96) 100%);
	transition: transform 240ms var(--ease);
}

.core-platform-card__orb img {
	width: min(50%, 110px);
	height: auto;
	object-fit: contain;
	transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}

.core-platform-card__overlay {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	padding: 12px 12px 14px;
	background: rgba(255, 255, 255, .96);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}

.core-platform-card:hover .core-platform-card__overlay {
	transform: translateY(0);
	opacity: 1;
}

.core-platform-card:hover .core-platform-card__orb {
	transform: translateY(-6px) scale(1.01);
}

.core-platform-card:hover .core-platform-card__orb img {
	transform: scale(.92);
	opacity: .18;
}

.core-platform-card__eyebrow {
	display: block;
	margin-bottom: 6px;
	color: var(--red);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-align: center;
}

.core-platform-card__overlay p {
	margin: 0;
	color: #1c1f27;
	font-size: 15px;
	line-height: 1.5;
}

.core-platform-card--power {
	background: linear-gradient(180deg, #fff5f4 0%, #ffe9e7 100%);
}

.core-platform-card--azure {
	background: linear-gradient(180deg, #f7faff 0%, #ecf3ff 100%);
}

.core-platform-card--copilot {
	background: linear-gradient(180deg, #fff6f5 0%, #ffeceb 100%);
}

.core-platform-card--openai {
	background: linear-gradient(180deg, #f5f9ff 0%, #e8f1ff 100%);
}

.core-platform-card--power .core-platform-card__eyebrow,
.core-platform-card--copilot .core-platform-card__eyebrow {
	color: var(--red);
}

.core-platform-card--azure .core-platform-card__eyebrow,
.core-platform-card--openai .core-platform-card__eyebrow {
	color: var(--navy-soft);
}

.core-platform-card--power .core-platform-card__overlay p,
.core-platform-card--copilot .core-platform-card__overlay p {
	color: #2b1111;
}

.core-platform-card--azure .core-platform-card__overlay p,
.core-platform-card--openai .core-platform-card__overlay p {
	color: #15243b;
}

@media (max-width: 1100px) {
	.core-platform-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.core-platform-section {
		padding: 38px 0 28px;
	}

	.core-platform-grid {
		grid-template-columns: 1fr;
	}

	.core-platform-card {
		min-height: 200px;
	}

	.core-platform-card__orb img {
		width: min(48%, 92px);
	}

	.core-platform-card__overlay {
		transform: translateY(60%);
	}
}

.cta-form {
	text-align: left;
}

.cta-form label {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 8px;
}

.cta-form input,
.cta-form select {
	width: 100%;
	border: 1px solid var(--border);
	background: #fff;
	padding: 14px 16px;
	font-size: 14px;
	margin-bottom: 18px;
	font-family: inherit;
	color: var(--text);
}

.cta-form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7787' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.cta-form select:invalid {
	color: var(--gray);
}

.cta-form .btn-red,
.cta-form .button {
	width: 100%;
	display: flex;
}

/* RESPONSIVE */

@media (max-width: 900px) {
	.approach-page .philosophy-cta {
		padding: 90px 0;
	}

	.approach-page .philosophy-cta-card {
		max-width: 480px;
		padding-inline: 36px;
		padding-block: 44px;
	}
}

@media (max-width: 640px) {
	.approach-page .philosophy-cta {
		padding: 64px 0;
	}

	.approach-page .philosophy-cta .container {
		padding-inline: 20px;
		box-sizing: border-box;
	}

	.approach-page .philosophy-cta-card {
		width: 100%;
		max-width: 100%;
		padding-inline: 22px;
		/* ini yang menang lawan rule global */
		padding-block: 36px;
		box-sizing: border-box;
	}

	.approach-page .philosophy-cta-card h2 {
		font-size: clamp(24px, 7vw, 30px);
	}

	.approach-page .philosophy-cta-card p {
		font-size: 14px;
	}

	.approach-page .cta-form input,
	.approach-page .cta-form select {
		min-height: 48px;
		font-size: 16px;
		/* biar iOS Safari nggak auto-zoom pas fokus */
	}

	.approach-page .cta-form .btn-red {
		min-height: 48px;
	}
}

@media (max-width: 380px) {
	.approach-page .philosophy-cta-card {
		padding-inline: 16px;
		padding-block: 30px;
	}
}

/* =========================================================
   APPROACH AI PAGE STYLES
   ========================================================= */

.ai-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: #fff;
	overflow: hidden;
}

.ai-page section:not(.quote-band):not(.page-hero):not(.cta-panel) {
	display: block;
	width: 100%;
	float: none;
	clear: both;
}

.container {
	max-width: 1200px;
	width: calc(100% - 80px);
	margin: auto;
}

img {
	display: block;
	width: 100%;
}

a {
	text-decoration: none;
}

.highlight {
	color: var(--red);
}

.btn-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	padding: 16px 30px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .5px;
	transition: .25s;
}

.btn-red:hover {
	background: var(--red-dark);
}

.small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 10px;
}

/* =========================================================
		HERO
		========================================================= */

.ai-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #3a0608;
}

.ai-hero-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.ai-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ai-hero-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:
		radial-gradient(circle at 80% 10%, rgba(120, 20, 22, .5), transparent 45%),
		linear-gradient(100deg, rgba(20, 4, 5, .82) 0%, rgba(58, 6, 8, .8) 45%, rgba(150, 20, 22, .55) 100%);
}

.ai-hero .container {
	position: relative;
	z-index: 2;
}

.ai-hero-content {
	max-width: 760px;
	color: #fff;
	padding: 70px 0;
	padding-top: 260px;
}

.ai-hero h1 {
	font-size: 44px;
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: -.5px;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.ai-hero h1 .highlight {
	color: #ff5b5f;
}

.ai-hero p {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .88);
	max-width: 620px;
}

/* =========================================================
		INTRO
		========================================================= */

.ai-intro-section {
	padding: 80px 0 90px;
	background: #fff;
}

.ai-intro-header {
	text-align: center;
	margin-bottom: 28px;
}

.ai-intro-header h2 {
	font-size: 32px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.ai-intro-header h2 .highlight {
	color: var(--red);
}

.ai-intro-header h2 .dark {
	color: #111;
}

.ai-intro-lead {
	color: #333c46;
	line-height: 1.8;
	font-size: 15.5px;
	max-width: 100%;
	margin: 0 0 40px;
}

.ai-intro-divider {
	height: 3px;
	background: var(--red);
	margin-bottom: 40px;
}

.ai-intro-panel {
	background: #f7f3f0;
	padding: 45px 50px;
}

.ai-intro-panel h3 {
	font-size: 24px;
	font-weight: 800;
	color: #111;
	line-height: 1.35;
	margin-bottom: 18px;
}

.ai-intro-panel h3 span {
	display: block;
}

.ai-intro-panel h3 .highlight {
	color: var(--red);
}

.ai-intro-panel>p {
	color: #444f5c;
	line-height: 1.8;
	font-size: 15.5px;
	max-width: 900px;
}

/* =========================================================
		OUR PRINCIPLES
		========================================================= */

.ai-principles {
	padding: 80px 0 90px;
	background: var(--mist);
}

.principles-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 45px;
}

.principles-header h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 12px;
}

.principles-header p {
	color: var(--gray);
	font-size: 15.5px;
}

.principles-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.principle-card {
	background: #fff;
	border: 1px solid var(--border);
	padding: 28px 24px;
}

.principle-card__top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 10px;
}

.principle-card .cap-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	line-height: 0;
	flex: 0 0 auto;
}

.service-card-head,
.rapid-card-head,
.capability-card__top,
.gov-text h4,
.outcome-card__top,
.outcome-featured__top,
.continuity-item,
.intervention-card,
.success-item,
.principle-card__top {
	display: flex;
	align-items: center;
}

.service-icon,
.rapid-icon,
.budget-icon,
.cap-icon,
.gov-icon,
.out-icon,
.icon-box,
.comp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	line-height: 0;
	overflow: visible;
}

.service-icon svg,
.rapid-icon svg,
.budget-icon svg,
.cap-icon svg,
.gov-icon svg,
.out-icon svg,
.icon-box svg,
.comp-icon svg {
	display: block;
	width: 30px;
	height: 20px;
}

.outcome-card__top,
.outcome-featured__top,
.principle-card__top,
.service-card-head,
.rapid-card-head,
.capability-card__top,
.continuity-item,
.intervention-card,
.success-item {
	gap: 16px;
}

.principle-card h4 {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
	margin: 0;
}

.principle-card p {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.6;
}

/* =========================================================
		THE AI AGENT FLOW
		========================================================= */

.ai-flow-section {
	padding: 90px 0 100px;
	background: var(--navy);
	color: #fff;
}

.flow-header {
	max-width: 780px;
	margin: 0 auto 60px;
	text-align: center;
}

.flow-header h2 {
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 16px;
}

.flow-header p {
	color: rgba(255, 255, 255, .65);
	font-size: 15.5px;
	line-height: 1.7;
}

.flow-timeline {
	max-width: 980px;
	margin: 0 auto;
}

.flow-step {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	padding: 10px 0;
}

.flow-step.reverse {
	flex-direction: row-reverse;
	text-align: right;
}

.flow-num {
	flex: 0 0 auto;
	font-size: 46px;
	font-weight: 900;
	color: var(--red);
	line-height: 1;
	min-width: 70px;
}

.flow-step.reverse .flow-num {
	text-align: right;
}

.flow-content h3 {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #fff;
}

.flow-content p {
	font-size: 14.5px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .6);
	max-width: 560px;
	margin-bottom: 16px;
}

.flow-step.reverse .flow-content p {
	margin-left: auto;
}

.flow-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.flow-step.reverse .flow-tags {
	justify-content: flex-end;
}

.flow-tags span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: #f0b8ba;
	background: rgba(191, 30, 35, .18);
	border: 1px solid rgba(191, 30, 35, .35);
	padding: 6px 12px;
}

.flow-connector {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 6px 0 6px 33px;
}

.flow-step.reverse+.flow-connector {
	flex-direction: row-reverse;
	padding-left: 0;
	padding-right: 33px;
	justify-content: flex-end;
}

.flow-step.reverse+.flow-connector span.label {
	text-align: right;
}

.flow-connector .line {
	width: 1px;
	height: 34px;
	background: rgba(255, 255, 255, .18);
}

.flow-connector span.label {
	font-size: 11px;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(255, 255, 255, .4);
}

/* =========================================================
		GOVERNANCE
		========================================================= */

.governance-section {
	padding: 90px 0 100px;
	background: var(--pink-soft);
}

.governance-header {
	margin-bottom: 55px;
}

.governance-header h2 {
	font-size: 34px;
	font-weight: 800;
	color: #111;
	line-height: 1.25;
}

.governance-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.gov-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px 22px;
	background: #fff;
	border: 1px solid rgba(226, 28, 21, .14);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
	min-height: 160px;
	box-sizing: border-box;
}

.gov-icon {
	flex: 0 0 auto;
	width: 76px;
	height: 76px;
	background: #fff;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	line-height: 0;
}

.gov-icon svg {
	display: block;
	width: 30px;
	height: 26px;
}

.gov-text {
	min-width: 0;
}

.gov-text .small-title {
	display: block;
	margin: 0 0 4px;
	line-height: 1;
	letter-spacing: 1px;
}

.gov-text h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 4px;
}

.gov-text p {
	font-size: 14.5px;
	line-height: 1.7;
	color: #4a5561;
	max-width: 380px;
	margin: 0;
}

/* =========================================================
		QUOTE
		========================================================= */

.ai-quote {
	position: relative;
	overflow: hidden;
	background: linear-gradient(100deg, var(--navy) 0%, #6a0d10 65%, #8c1114 100%);
	min-height: 340px;
	display: flex;
	align-items: center;
}

.ai-quote-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 340px 1fr;
	align-items: center;
	gap: 50px;
}

.ai-quote-photo {
	width: 100%;
	overflow: hidden;
}

.ai-quote-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}

.ai-quote-text .quote-mark {
	font-size: 60px;
	color: rgba(255, 255, 255, .35);
	line-height: 1;
	margin-bottom: 8px;
}

.ai-quote-text h2 {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
	margin-bottom: 22px;
}

.ai-quote-text .quote-author {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
}

.ai-quote-text .quote-role {
	font-size: 14px;
	color: rgba(255, 255, 255, .7);
	margin-top: 4px;
}

/* =========================================================
		DESIGNED FOR OUTCOMES
		========================================================= */

.outcomes-section {
	padding: 90px 0 60px;
	background: #fff;
	text-align: center;
}

.outcomes-header h2 {
	font-size: 36px;
	font-weight: 800;
	color: #111;
	margin-bottom: 50px;
}

.outcomes-grid {
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	align-items: stretch;
	gap: 24px;
	text-align: left;
	margin-bottom: 24px;
}

.outcome-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--border);
	padding: 30px 28px;
	box-sizing: border-box;
}

.outcome-card.accent {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.outcome-card__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.outcome-card .out-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 20px;
	line-height: 1;
	flex: 0 0 auto;
}

.outcome-card h4 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: var(--navy);
	line-height: 1.3;
}

.outcome-card.accent h4 {
	color: #fff;
}

.outcome-card p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--gray);
}

.outcome-card.accent p {
	color: rgba(255, 255, 255, .85);
}

.outcome-featured {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border);
	padding: 30px 28px;
	text-align: left;
	box-sizing: border-box;
}

.outcome-featured__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.outcome-featured .out-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 20px;
	line-height: 1;
	color: var(--red);
	flex: 0 0 auto;
}

.outcome-featured h4 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: var(--navy);
	line-height: 1.3;
}

.outcome-featured p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--gray);
}

@media (max-width: 900px) {
	.outcomes-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
		LOGOS
		========================================================= */

.logos-section {
	padding: 50px 0 90px;
	background: #fff;
	text-align: center;
}

.logos-title {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 34px;
}

.logos-track-wrap {
	overflow: hidden;
	max-width: 900px;
	margin: 0 auto;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logos-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: logos-scroll 22s linear infinite;
}

.logos-track:hover {
	animation-play-state: paused;
}

.logos-track .logo-item {
	flex: 0 0 auto;
	width: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes logos-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.logos-track img {
	height: 60px;
	width: auto;
	max-width: 130px;
	object-fit: contain;
	display: block;
}

/* =========================================================
		FINAL CTA
		========================================================= */

.ai-cta {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	padding: 130px 0;
}

.ai-cta-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.ai-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .35;
}

.ai-cta-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(rgba(15, 41, 70, .3), rgba(15, 41, 70, .9));
}

.ai-cta-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin: auto;
	text-align: center;
	color: #fff;
}

.ai-cta-content h2 {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.ai-cta-content p {
	color: rgba(255, 255, 255, .75);
	line-height: 1.7;
	margin-bottom: 34px;
	font-size: 16px;
}


/* =========================================================
   APPROACH AMS PAGE STYLES
   ========================================================= */

.ams-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: #fff;
	overflow: hidden;
}

.ams-page section:not(.ams-quote):not(.quote-band):not(.page-hero):not(.cta-panel) {
	display: block;
	width: 100%;
	float: none;
	clear: both;
}

.ams-page section.ams-quote {
	width: 100%;
	float: none;
	clear: both;
}

.container {
	max-width: 1200px;
	width: calc(100% - 80px);
	margin: auto;
}

img {
	display: block;
	width: 100%;
}

a {
	text-decoration: none;
}

.btn-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	padding: 16px 30px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .5px;
	transition: .25s;
}

.btn-red:hover {
	background: var(--red-dark);
}

/* =========================================================
		HERO
		========================================================= */

.ams-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #3a0608;
}

.ams-hero-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.ams-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ams-hero-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(80, 80, 80, .55), transparent 45%),
		linear-gradient(100deg, rgba(58, 6, 8, .55) 0%, rgba(90, 12, 15, .78) 45%, rgba(150, 20, 22, .55) 100%);
}

.ams-hero .container {
	position: relative;
	z-index: 2;
}

.ams-hero-content {
	max-width: 760px;
	color: #fff;
	padding: 55px 0;
	padding-top: 260px;
}

.ams-hero h1 {
	font-size: 46px;
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: -.5px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.ams-hero p {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .88);
	max-width: 620px;
}

/* =========================================================
		INTRO
		========================================================= */

.ams-intro {
	padding: 75px 0 60px;
	text-align: center;
	background: #fff;
}

.ams-intro h2 {
	font-size: 32px;
	font-weight: 800;
	color: #111;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.ams-intro h2 .highlight {
	color: var(--red);
}

/* =========================================================
		STATEMENT BANNER
		========================================================= */

.ams-statement {
	background: #ececed;
	padding: 45px 0;
}

.ams-statement h3 {
	font-size: 26px;
	font-weight: 800;
	color: var(--red);
	line-height: 1.3;
	margin-bottom: 18px;
}

.ams-statement p {
	color: #333;
	line-height: 1.7;
	font-size: 16px;
}

/* =========================================================
		CONTINUITY FRAMEWORK
		========================================================= */

.continuity-section {
	padding: 90px 0;
	background: #fff;
}

.continuity-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 40px;
	align-items: center;
}

.continuity-left .small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 12px;
}

.continuity-left h3 {
	font-size: 30px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.25;
	margin-bottom: 22px;
}

.continuity-left>p {
	color: #444f5c;
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 35px;
}

.continuity-item {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 26px;

}

.continuity-item:last-child {
	margin-bottom: 0;
}

.continuity-item .icon-box .rapid-card{
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	color: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	border: 1px solid var(--red);
}

.continuity-item.final .icon-box {
	background: var(--red);
	color: #fff;
}

.continuity-item h4 {
	font-size: 19px;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 4px;
}

.continuity-item p {
	margin: 0;
	color: var(--gray);
	font-size: 15px;
	line-height: 1.6;
}

.continuity-item.final p {
	color: var(--red);
	font-weight: 700;
}

.continuity-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

.continuity-right img {
	width: 100%;
	max-width: 80%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* =========================================================
		STAY WITH YOU
		========================================================= */

.stay-section {
	background: var(--navy);
	color: #fff;
	padding: 70px 0 60px;
	text-align: center;
}

.stay-section h2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 14px;
}

.stay-section>.container>p {
	color: rgba(255, 255, 255, .7);
	margin-bottom: 55px;
	font-size: 16px;
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.timeline-step {
    text-align: center;
    position: relative;
    padding: 26px 24px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .12);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
	cursor: default;
}

.timeline-step.active h4 {
	color: #000;
}

.timeline-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0px;
    color: #E21C15;
}

.timeline-step.active h4 {
    color: #fff;
}

.timeline-step p {
	font-size: 13.5px;
    color: #fff;
	line-height: 1.6;
	margin: 0;
}

/* =========================================================
		AMS ENGINE
		========================================================= */

.engine-section {
	padding: 90px 0 80px;
	background: var(--mist);
}

.engine-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 45px;
}

.engine-header h2 {
	font-size: 34px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 16px;
}

.engine-header p {
	color: var(--gray);
	line-height: 1.7;
	font-size: 15.5px;
}

.engine-chevrons {
	display: flex;
	margin-bottom: 45px;
}

.engine-chevron {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 18px 10px;
	clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 10% 50%);
	margin-left: -14px;
	transition: transform 220ms var(--ease), filter 220ms var(--ease), box-shadow 220ms var(--ease);
	will-change: transform;
}

.engine-chevron::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .18) 18%, rgba(255, 255, 255, 0) 36%);
	transform: translateX(-120%);
	opacity: 0;
	pointer-events: none;
}

.engine-chevron:nth-child(1) { animation: engineChevronFloat 6.2s ease-in-out infinite 0s; }
.engine-chevron:nth-child(2) { animation: engineChevronFloat 6.2s ease-in-out infinite .15s; }
.engine-chevron:nth-child(3) { animation: engineChevronFloat 6.2s ease-in-out infinite .3s; }
.engine-chevron:nth-child(4) { animation: engineChevronFloat 6.2s ease-in-out infinite .45s; }
.engine-chevron:nth-child(5) { animation: engineChevronFloat 6.2s ease-in-out infinite .6s; }
.engine-chevron:nth-child(6) { animation: engineChevronFloat 6.2s ease-in-out infinite .75s; }
.engine-chevron:nth-child(7) { animation: engineChevronFloat 6.2s ease-in-out infinite .9s; }

.engine-chevron:hover,
.engine-chevron:focus-visible {
	transform: translateY(-2px) scale(1.01);
	filter: brightness(1.06) saturate(1.04);
	box-shadow: 0 12px 24px rgba(7, 21, 35, .12);
	z-index: 2;
}

.engine-chevron:hover::after,
.engine-chevron:focus-visible::after {
	animation: engineChevronShine 780ms var(--ease) 1;
}

@keyframes engineChevronFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-1px);
	}
}

@keyframes engineChevronShine {
	0% {
		transform: translateX(-120%);
		opacity: 0;
	}
	15% {
		opacity: .85;
	}
	100% {
		transform: translateX(120%);
		opacity: 0;
	}
}

.engine-chevron:first-child {
	margin-left: 0;
	padding-left: 20px;
}

.engine-note {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 50px;
	color: var(--gray);
	line-height: 1.7;
	font-size: 15px;
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.capability-card {
	background: #fff;
	border: 1px solid var(--border);
	padding: 30px 26px;
}

.capability-card__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.capability-card .cap-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	line-height: 1;
	flex: 0 0 auto;
}

.capability-card h4 {
	font-size: 19px;
	font-weight: 700;
	color: #111;
	margin: 0;
	line-height: 1.25;
}

.capability-card p {
	margin: 0;
	font-size: 14.5px;
	color: var(--gray);
	line-height: 1.65;
}

/* =========================================================
		STATS BAR
		========================================================= */

.stats-bar {
	background: #2b2b2e;
	color: #fff;
	padding: 40px 45px;
	margin: 55px auto 0;
	max-width: 1200px;
	width: calc(100% - 80px);
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
	text-align: center;
}

.stats-row .stat span.label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.stats-row .stat span.tag {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--red);
}

.stats-quote {
	font-style: italic;
	color: rgba(255, 255, 255, .75);
	font-size: 15px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding-top: 22px;
}

/* =========================================================
		QUOTE
		========================================================= */

.ams-quote {
	position: relative;
	overflow: hidden;
	background: linear-gradient(100deg, var(--navy) 0%, #6a0d10 65%, #8c1114 100%);
	min-height: 340px;
	display: flex;
	align-items: center;
	margin-top: 70px;
}

.ams-quote-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 340px 1fr;
	align-items: center;
	gap: 50px;
}

.ams-quote-photo {
	width: 100%;
	overflow: hidden;
}

.ams-quote-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}

.ams-quote-text .quote-mark {
	font-size: 60px;
	color: rgba(255, 255, 255, .35);
	line-height: 1;
	margin-bottom: 8px;
}

.ams-quote-text h2 {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
	margin-bottom: 22px;
}

.ams-quote-text .quote-author {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
}

.ams-quote-text .quote-role {
	font-size: 14px;
	color: rgba(255, 255, 255, .7);
	margin-top: 4px;
}

/* =========================================================
		CORE COMPETENCIES
		========================================================= */

.competencies-section {
	padding: 90px 0 80px;
	background: var(--mist);
}

.competencies-header {
	margin-bottom: 45px;
}

.competencies-header .small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 10px;
}

.competencies-header h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	text-align: center;
}

.competencies-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.competency-card {
	border: 1px solid var(--border);
}

.competency-card.pink {
	background: var(--pink);
	border-color: var(--pink);
}

.competency-card.gray {
	background: #f2f2f3;
}

.competency-card h4 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 14px;
}

.competency-card h4 .comp-icon {
	font-size: 18px;
	color: var(--navy);
}

.competency-card p {
	font-size: 14.5px;
	line-height: 1.7;
	color: #4a5561;
}

/* =========================================================
		HOSHO ADVANTAGE
		========================================================= */

.advantage-section {
	padding: 90px 0 100px;
	background: var(--mist);
}

.advantage-header {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 40px;
	align-items: end;
	margin-bottom: 50px;
}

.advantage-header .small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 10px;
}

.advantage-header h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.25;
	text-align: center;
}

.advantage-header p {
	color: #4a5561;
	line-height: 1.7;
	font-size: 15.5px;
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 40px;
}

.advantage-item {
	padding-top: 20px;
}

.advantage-item h4 {
	font-size: 21px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
}

.advantage-item h4.red-text {
	color: var(--red);
}

.advantage-item p {
	font-size: 15px;
	color: #4a5561;
	line-height: 1.7;
}

/* =========================================================
		FINAL CTA
		========================================================= */

.ams-cta {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	padding: 130px 0;
}

.ams-cta-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.ams-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .35;
}

.ams-cta-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(rgba(15, 41, 70, .3), rgba(15, 41, 70, .9));
}

.ams-cta-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
	margin: auto;
	text-align: center;
	color: #fff;
}

.ams-cta-content h2 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.ams-cta-content p {
	color: rgba(255, 255, 255, .75);
	line-height: 1.7;
	margin-bottom: 34px;
	font-size: 16px;
}


/* =========================================================
   APPROACH ERP PAGE STYLES
   ========================================================= */

.erp-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: #fff;
	overflow: hidden;
}

.erp-page section:not(.quote-band):not(.page-hero):not(.cta-panel) {
	display: block;
	width: 100%;
	float: none;
	clear: both;
}

.container {
	max-width: 1200px;
	width: calc(100% - 80px);
	margin: auto;
}

img {
	display: block;
	width: 100%;
}

a {
	text-decoration: none;
}

svg {
	display: block;
}

.btn-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	padding: 16px 30px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .3px;
	text-transform: uppercase;
	border: 1px solid var(--red);
	cursor: pointer;
	transition: .25s;
}

.btn-red:hover {
	background: var(--red-dark);
}

.small-title {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 14px;
}

/* =========================================================
		HERO
		========================================================= */

.erp-hero {
	position: relative;
	min-height: 650px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #1c0505;
}

.erp-hero-image {
	position: absolute;
	inset: 0;
}

.erp-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.62) contrast(1.12) saturate(1.35);
}

.erp-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 18%, rgba(191, 30, 35, .42), transparent 36%),
		linear-gradient(100deg, rgba(8, 8, 10, .86) 0%, rgba(104, 16, 20, .84) 46%, rgba(191, 30, 35, .68) 100%);
}

.erp-hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	color: #fff;
	padding: 110px 0;
	padding-top: 260px;
}

.erp-hero h1 {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: -.5px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.erp-hero p {
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, .82);
	max-width: 560px;
}

/* =========================================================
		OPTIMIZATION GAP
		========================================================= */

.opt-gap-section {
	padding: 80px 0;
	background: #fff;
	text-align: center;
}

.opt-gap-section h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.3;
}

.opt-gap-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	margin-top: 44px;
}

.opt-gap-card {
	border: 1px solid var(--border);
	padding: 26px 20px;
	background: #fff;
	text-align: left;
}

.opt-gap-card__top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.opt-gap-card .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	color: var(--red);
	flex: 0 0 auto;
}

.opt-gap-card h3 {
	font-size: 15px;
	font-weight: 800;
	color: var(--navy);
	margin: 0;
	line-height: 1.3;
}

.opt-gap-card p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--gray);
}

/* =========================================================
		HELP BANNER (4 STEPS)
		========================================================= */

.help-section {
	background: var(--salmon);
	padding: 70px 0 90px;
	text-align: center;
}

.help-section h2 {
	font-size: 30px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 16px;
}

.help-section h2 .highlight {
	color: var(--red-dark);
}

.help-section>.container>p {
	max-width: 640px;
	margin: 0 auto 44px;
	color: rgba(15, 41, 70, .78);
	font-size: 15px;
	line-height: 1.75;
}

.help-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: left;
}

.help-card {
	background: #fff;
	border: 1px solid var(--border);
	padding: 35px 20px 20px;
}

.help-card h3 {
	font-size: 17px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 20px;
	text-align: center;
}

.help-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--gray);
	text-align: center;
}

/* =========================================================
		STRATEGIC INTERVENTION SERVICES
		========================================================= */

.intervention-section {
	padding: 90px 0;
	background: #fff;
	text-align: center;
}

.intervention-section h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 14px;
}

.intervention-section>.container>p {
	max-width: 620px;
	margin: 0 auto;
	color: var(--gray);
	font-size: 15px;
	line-height: 1.75;
}

.intervention-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	text-align: left;
	margin-top: 50px;
}

.intervention-card {
	border: 1px solid var(--border);
	padding: 30px 30px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.intervention-card .icon-box {
	width: 44px;
	height: 44px;
	background: var(--navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.intervention-card h3 {
	font-size: 16px;
	font-weight: 800;
	color: var(--navy);
	margin: 0 0 8px;
}

.intervention-card p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--gray);
}

@media (max-width: 760px) {
	.intervention-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
		QUOTE
		========================================================= */

.erp-quote {
	position: relative;
	overflow: hidden;
	background: linear-gradient(260deg, #8c1114 0%, #6a0d10 30%, var(--navy) 75%);
	min-height: 380px;
	display: flex;
	align-items: center;
}

.erp-quote .container {
	display: flex;
	justify-content: flex-end;
}

.erp-quote-inner {
	position: relative;
	z-index: 2;
	max-width: 600px;
	color: #fff;
	padding: 70px 0;
}

.erp-quote .quote-mark {
	font-size: 70px;
	color: rgba(255, 255, 255, .35);
	line-height: 1;
	margin-bottom: 10px;
}

.erp-quote h2 {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 26px;
}

.erp-quote .quote-author {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.erp-quote .quote-role {
	font-size: 14px;
	color: rgba(255, 255, 255, .7);
	margin-top: 4px;
	font-weight: 400;
}

.erp-quote-photo {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 38%;
	overflow: hidden;
}

.erp-quote-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}

/* =========================================================
		WHY HOSHO DIGITAL
		========================================================= */

.why-hosho-section {
	background: var(--navy);
	padding: 90px 0;
	color: #fff;
}

.why-hosho-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 24px;
}

.why-hosho-card {
	background: var(--red-light);
	padding: 44px 40px;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.why-hosho-card h2 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 16px;
}

.why-hosho-card p {
	font-size: 14.5px;
	line-height: 1.75;
	color: white;
}

.why-hosho-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.feature-card {
	background: #fff;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature-card .icon {
	color: var(--red);
	margin-bottom: 14px;
}

.feature-card p {
	font-weight: 700;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--navy);
}

.why-hosho-footer {
	text-align: center;
	color: rgba(255, 255, 255, .68);
	max-width: 780px;
	margin: 50px auto 0;
	font-size: 14.5px;
	line-height: 1.8;
}

/* =========================================================
		HOW WE DELIVER SUCCESS
		========================================================= */

.success-section {
	padding: 72px 0 78px;
	background: #fff;
	text-align: center;
}

.success-section h2 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--navy);
	margin-bottom: 26px;
}

.success-grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	max-width: 1200px;
	margin: 40px auto 0;
	overflow-x: auto;
}

.success-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 0;
	min-width: 0;
	padding-inline: 2px;
}

.success-separator {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: 18px;
	min-width: 18px;
	height: 18px;
	color: rgba(225, 28, 21, .9);
	margin-top: 3px;
}

.success-item .icon-box {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(225, 28, 21, .28);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0px;
	color: var(--red);
	border-radius: 8px;
	background: rgba(225, 28, 21, .03);
}

.success-item h3 {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	color: var(--navy);
	margin: 0 0 0px;
	line-height: 1.25;
}

.success-item p {
	display: block;
	font-size: 11.5px;
	color: rgba(7, 21, 35, .72);
	line-height: 1.32;
	max-width: 124px;
	margin: 0 auto;
}

@media (max-width: 1100px) {
	.success-grid {
		gap: 8px;
		max-width: 1200px;
	}
}

@media (max-width: 640px) {
	.success-section {
		padding: 64px 0;
	}

	.success-grid {
		flex-wrap: nowrap;
		gap: 8px;
		max-width: 1200px;
	}

	.success-item p {
		max-width: 100%;
	}
}

/* =========================================================
		THE OPTIMIZED OUTCOME
		========================================================= */

.outcome-section {
	background: var(--red-light);
	padding: 90px 0;
}

.outcome-section h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 14px;
}

.outcome-section .outcome-header p {
	max-width: 560px;
	color: #4a5561;
	font-size: 15px;
	line-height: 1.75;
}

.outcome-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 50px;
}

.outcome-card {
	padding: 34px 32px;
}

.outcome-card.style-white {
	background: #fff;
}

.outcome-card.style-navy {
	background: var(--navy);
	color: #fff;
}

.outcome-card.style-gray {
	background: var(--line);
}

.outcome-card .icon {
	color: var(--red);
	margin-bottom: 16px;
}

.outcome-card.style-navy .icon {
	color: #f0b8ba;
}

.outcome-card h3 {
	font-size: 17px;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--navy);
}

.outcome-card.style-navy h3 {
	color: #fff;
}

.outcome-card p {
	font-size: 14px;
	line-height: 1.75;
	color: var(--gray);
}

.outcome-card.style-navy p {
	color: rgba(255, 255, 255, .72);
}

/* =========================================================
		PHILOSOPHY STRIP
		========================================================= */

.philosophy-strip {
	padding: 90px 0;
	background: #fff;
	text-align: center;
}

.philosophy-strip h2 {
	font-size: 32px;
	font-weight: 800;
	color: #111;
	max-width: 640px;
	margin: 0 auto 20px;
	line-height: 1.3;
}

.philosophy-strip>.container>p {
	max-width: 620px;
	margin: 0 auto;
	color: var(--gray);
	font-size: 15px;
	line-height: 1.8;
}

.journey-row {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 54px;
	flex-wrap: wrap;
}

.journey-row span {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray);
	padding-bottom: 14px;
	border-bottom: 2px solid var(--border);
}

/* =========================================================
		FINAL CTA
		========================================================= */

.erp-cta {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	padding: 130px 0;
}

.erp-cta-image {
	position: absolute;
	inset: 0;
}

.erp-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .35;
}

.erp-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(15, 41, 70, .3), rgba(15, 41, 70, .92));
}

.erp-cta-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: auto;
	text-align: center;
	color: #fff;
}

.erp-cta-content h2 {
	font-size: 38px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 22px;
}

.erp-cta-content p {
	color: rgba(255, 255, 255, .75);
	line-height: 1.8;
	margin-bottom: 36px;
}

/* =========================================================
		RESPONSIVE
		========================================================= */

@media (max-width: 1000px) {
	.opt-gap-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.help-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.success-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.erp-hero h1 {
		font-size: 30px;
	}

	.opt-gap-grid {
		grid-template-columns: 1fr 1fr;
	}

	.help-grid {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.why-hosho-grid {
		grid-template-columns: 1fr;
	}

	.why-hosho-features {
		grid-template-columns: 1fr;
	}

	.success-grid {
		grid-template-columns: 1fr 1fr;
	}

	.outcome-grid {
		grid-template-columns: 1fr;
	}

	.journey-row {
		gap: 30px;
	}

	.erp-quote .container {
		justify-content: flex-start;
	}

	.erp-quote-photo {
		position: static;
		width: 100%;
		height: 220px;
		margin-bottom: 20px;
	}

	.erp-quote-inner {
		padding: 30px 0 60px;
	}
}


/* =========================================================
   PRIVACY POLICY PAGE STYLES
   ========================================================= */

.legal-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: var(--mist);
}

.legal-page .container {
	max-width: 1160px;
	width: calc(100% - 80px);
	margin: auto;
}

/* ============ HERO ============ */

.legal-hero {
	position: relative;
	height: 420px;
	overflow: hidden;
	background:
		linear-gradient(90deg,
			rgba(94, 8, 10, .92) 0%,
			rgba(150, 20, 22, .8) 55%,
			rgba(180, 40, 35, .55) 100%);
}

.legal-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============ CONTENT ============ */

.legal-content {
	padding: 70px 0 90px;
}

.legal-title {
	text-align: center;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: .5px;
	color: #111;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, .18);
	margin-bottom: 45px;
}

.legal-content h2 {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	margin-bottom: 18px;
}

.legal-content h2:not(:first-of-type) {
	margin-top: 40px;
}

.legal-content p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.legal-content p strong {
	font-weight: 700;
}

.legal-contact-box {
	margin-top: 45px;
	border: 1px solid var(--red);
	background: #fff;
	padding: 30px 35px;
}

.legal-contact-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	margin-bottom: 14px;
}

.legal-contact-box p {
	margin-bottom: 18px;
}

.legal-contact-box p:last-child {
	margin-bottom: 0;
}

.legal-contact-box a {
	color: var(--red);
	text-decoration: none;
}

/* Sushil review: focused Company values and standard quote alignment. */
body.hosho-remade .company-value__copy h3,
body.hosho-remade .company-value__copy blockquote,
body.hosho-remade .company-value__copy cite {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

body.hosho-remade .company-value__copy>p {
	color: rgba(255, 255, 255, .78) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, .78) !important;
}

@media (max-width: 980px) {
	.company-value {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.company-value__visual {
		min-height: 430px;
	}

	.company-value__copy {
		min-height: 500px;
	}

	.quote-band--lee {
		grid-template-columns: 1fr;
	}

	.quote-band--lee .quote-band__portrait img {
		max-width: 460px;
	}
}

@media (max-width: 620px) {
	.page-hero--sustainability .page-hero__media {
		background-position: 70% center;
	}

	.page-hero--sustainability .page-hero__media::after {
		background: linear-gradient(180deg, rgba(3, 10, 18, .38) 0%, rgba(7, 24, 43, .68) 42%, rgba(3, 10, 18, .98) 100%);
	}

	.company-values__window {
		margin-top: 36px;
	}

	.company-value__visual {
		min-height: 300px;
	}

	.company-value__copy {
		min-height: 0;
		padding: 44px 24px 52px;
	}

	.company-value__copy h3 {
		font-size: 40px;
	}

	.company-value__copy blockquote {
		margin-top: 34px;
		font-size: 22px;
	}

	.quote-band--standard .quote-band__portrait {
		height: 360px;
		min-height: 360px;
	}

	.quote-band--lee .quote-band__copy {
		min-height: 520px;
	}

	.quote-band--lee .quote-band__portrait img {
		max-width: 340px;
	}
}

/* =========================================================
   RESPONSIVE SYSTEM: shared across every merged page
   ========================================================= */

html,
body {
	max-width: 100%;
	overflow-x: clip;
}

body.nav-open {
	overflow: hidden;
}

img,
svg,
video,
canvas {
	max-width: 100%;
}

.site-main,
.site-main>*,
.home-page,
.approach-page,
.philosophy-page,
.ai-page,
.ams-page,
.erp-page,
.legal-page,
.shell,
.container,
.nav,
.primary-navigation,
.nav-links,
.footer-main,
.footer-column,
.intro-grid>*,
.media-split>*,
.editorial-grid>*,
.quote-band>*,
.contact-layout>*,
.framework>*,
.solutions-cards>*,
.opex-category__grid>*,
.cx-categories>*,
.ex-categories>* {
	min-width: 0;
}

.site-main p,
.site-main li,
.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.site-footer a {
	overflow-wrap: anywhere;
}

@media (max-width: 1180px) {

	.home-page .container,
	.approach-page .container,
	.philosophy-page .container,
	.ai-page .container,
	.ams-page .container,
	.erp-page .container,
	.legal-page .container {
		width: min(calc(100% - 48px), 1160px);
	}

	.pillars-grid,
	.digital-core-process,
	.services-grid,
	.rapid-grid,
	.principles-grid,
	.capability-grid,
	.stats-row,
	.competencies-grid,
	.advantage-grid,
	.budget-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nodes-section {
		grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
	}

	.ai-quote-content,
	.ams-quote-content {
		grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
	}
}

@media (max-width: 980px) {
	.site-header {
		z-index: 100;
	}

	.primary-navigation {
		inset: 86px 0 0 !important;
		width: 100%;
		max-width: none;
		height: calc(100dvh - 86px);
		padding: 28px max(24px, calc((100vw - 760px) / 2)) calc(40px + env(safe-area-inset-bottom));
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: #07182b;
		-webkit-overflow-scrolling: touch;
	}

	.nav-links {
		width: 100%;
		padding-bottom: 24px;
	}

	.nav-links a {
		min-height: 48px;
		display: flex;
		align-items: center;
	}

	.sub-menu {
		min-width: 0;
		padding: 0 0 12px 20px;
	}

	.sub-menu a {
		font-size: 16px;
	}

	.hero,
	.approach-hero,
	.philosophy-hero,
	.ai-hero,
	.ams-hero,
	.erp-hero {
		min-height: 720px;
		height: auto;
	}

	.hero-content,
	.approach-hero-content,
	.philosophy-hero-content,
	.ai-hero-content,
	.ams-hero-content,
	.erp-hero-content {
		width: 100%;
		max-width: 760px;
		padding-block: 150px 80px;
	}

	.hero h1,
	.approach-hero h1,
	.philosophy-hero h1,
	.ai-hero h1,
	.ams-hero h1,
	.erp-hero h1 {
		font-size: clamp(42px, 8vw, 66px);
		line-height: 1.02;
	}

	.success-guarantee,
	.digital-core,
	.cognitive-shift,
	.services-section,
	.rapid-spectrum,
	.ai-budget,
	.solution-growth,
	.partners-section,
	.approach-intro,
	.architecture-scale,
	.transformation-section,
	.philosophy-section,
	.fail-section,
	.gap-section,
	.framework-section,
	.resilience-section,
	.ai-intro-section,
	.governance-section,
	.outcomes-section,
	.logos-section,
	.ams-intro,
	.continuity-section,
	.stay-section,
	.engine-section,
	.competencies-section,
	.advantage-section,
	.opt-gap-section,
	.help-section,
	.why-hosho-section,
	.success-section,
	.outcome-section,
	.philosophy-strip {
		padding-block: clamp(72px, 10vw, 104px);
	}

	.compare-flow,
	.rapid-process,
	.continuity-grid,
	.governance-grid,
	.why-hosho-grid {
		display: grid;
		grid-template-columns: 1fr;
	}

	.compare-arrow {
		transform: rotate(90deg);
		margin: 8px auto;
	}

	.nodes-section {
		grid-template-columns: 1fr;
	}

	.nodes-left,
	.nodes-right {
		width: auto;
		max-width: none;
		padding: 64px max(24px, calc((100vw - 760px) / 2));
	}

	.nodes-diagram-image,
	.nodes-diagram-image img {
		width: 100%;
		height: auto;
	}

	.ai-quote-content,
	.ams-quote-content,
	.approach-quote-inner,
	.erp-quote-inner {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.ai-quote-photo,
	.ams-quote-photo {
		min-height: 360px;
	}

	.flow-step,
	.flow-step.reverse,
	.gov-item,
	.gov-item.reverse {
		flex-direction: row;
		text-align: left;
	}

	.flow-tags,
	.flow-step.reverse .flow-tags {
		justify-content: flex-start;
	}

	.outcomes-grid,
	.opt-gap-grid,
	.help-grid,
	.success-grid,
	.outcome-grid,
	.fail-grid,
	.resilience-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.solutions-cards,
	.solutions-why-grid,
	.opex-category__grid,
	.cx-categories,
	.ex-categories,
	.opex-dual-cards__wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.opex-category__title {
		white-space: normal;
	}

	.opex-scard,
	.ex-hcard,
	.opex-help-card,
	.opex-stat-card {
		min-width: 0;
		max-width: 100%;
	}

	.legal-page .container {
		width: min(calc(100% - 48px), 760px);
	}

	.legal-content {
		padding: 72px 0;
	}
}

@media (max-width: 640px) {
	:root {
		--shell: calc(100vw - 32px);
	}

	body {
		font-size: 16px;
	}

	main p:not(.eyebrow):not(.small-title):not(.quote-role):not(.solutions-insight__source):not(.opex-stat-card__source):not(.ex-stat__source),
	main li {
		font-size: max(16px, 1em);
	}

	.site-header .nav {
		height: 72px;
	}

	.brand {
		min-width: 48px;
		min-height: 48px;
	}

	.brand img {
		width: 40px;
		height: 40px;
	}

	.menu-button {
		width: 48px;
		height: 48px;
	}

	.footer-socials a,
	.footer-socials span {
		width: 44px;
		height: 44px;
	}

	.primary-navigation {
		inset: 72px 0 0 !important;
		height: calc(100dvh - 72px);
		padding: 18px 24px calc(36px + env(safe-area-inset-bottom));
	}

	.nav-links>li {
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}

	.nav-links a {
		padding: 12px 0;
		font-size: 17px;
	}

	.sub-menu {
		padding-left: 16px;
	}

	.sub-menu a {
		min-height: 44px;
		padding: 8px 0;
		font-size: 15px;
		color: #bcc9d5;
	}

	.home-page .container,
	.approach-page .container,
	.philosophy-page .container,
	.ai-page .container,
	.ams-page .container,
	.erp-page .container,
	.legal-page .container {
		width: calc(100% - 32px);
	}

	.page-hero__content {
		padding-top: 124px;
	}

	.page-hero h1 {
		font-size: clamp(42px, 13vw, 62px);
	}

	.page-hero--careers h1 {
		font-size: clamp(56px, 17vw, 78px);
	}

	.hero,
	.approach-hero,
	.philosophy-hero,
	.ai-hero,
	.ams-hero,
	.erp-hero {
		min-height: 100svh;
	}

	.hero-content,
	.approach-hero-content,
	.philosophy-hero-content,
	.ai-hero-content,
	.ams-hero-content,
	.erp-hero-content {
		padding: 122px 0 56px;
	}

	.hero h1,
	.approach-hero h1,
	.philosophy-hero h1,
	.ai-hero h1,
	.ams-hero h1,
	.erp-hero h1 {
		max-width: 100%;
		font-size: clamp(40px, 12vw, 58px);
		line-height: 1.04;
		letter-spacing: -.04em;
	}

	.hero p,
	.approach-hero p,
	.philosophy-hero p,
	.ai-hero p,
	.ams-hero p,
	.erp-hero p,
	.section-desc,
	.body-copy,
	.lede,
	.cta-content p,
	.approach-cta-content p,
	.philosophy-cta-card p,
	.ai-cta-content p,
	.ams-cta-content p,
	.erp-cta-content p {
		font-size: 16px;
		line-height: 1.65;
	}

	.hero-buttons,
	.philosophy-hero-actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.hero-buttons a,
	.philosophy-hero-actions a,
	.btn-red,
	.btn-outline,
	.btn-outline-dark,
	.button {
		min-height: 48px;
	}

	.hero-buttons a,
	.philosophy-hero-actions a {
		width: 100%;
		justify-content: center;
	}

	.success-guarantee,
	.digital-core,
	.cognitive-shift,
	.services-section,
	.rapid-spectrum,
	.ai-budget,
	.solution-growth,
	.partners-section,
	.final-cta,
	.approach-intro,
	.architecture-scale,
	.transformation-section,
	.philosophy-section,
	.fail-section,
	.gap-section,
	.framework-section,
	.resilience-section,
	.ai-intro-section,
	.governance-section,
	.outcomes-section,
	.logos-section,
	.ams-intro,
	.continuity-section,
	.stay-section,
	.engine-section,
	.competencies-section,
	.advantage-section,
	.opt-gap-section,
	.help-section,
	.why-hosho-section,
	.success-section,
	.outcome-section,
	.philosophy-strip,
	.approach-cta,
	.philosophy-cta,
	.ai-cta,
	.ams-cta,
	.erp-cta {
		padding-block: 72px;
	}

	.section-title,
	.digital-core-heading h2,
	.cognitive-header h2,
	.strategy-heading,
	.rapid-header h2,
	.budget-header h2,
	.growth-header h2,
	.approach-intro h2,
	.architecture-header h3,
	.transformation-section h2,
	.philosophy-section h2,
	.fail-section h2,
	.gap-section h2,
	.framework-section h2,
	.resilience-card h2,
	.ai-intro-header h2,
	.principles-header h2,
	.flow-header h2,
	.governance-header h2,
	.outcomes-header h2,
	.ams-intro h2,
	.continuity-left h3,
	.stay-section h2,
	.engine-header h2,
	.competencies-header h2,
	.advantage-header h2,
	.opt-gap-section h2,
	.help-section h2,
	.services-section h2,
	.success-section h2,
	.outcome-section h2,
	.philosophy-strip h2,
	.legal-title {
		font-size: clamp(30px, 9vw, 44px);
		line-height: 1.08;
	}

	.pillars-grid,
	.digital-core-process,
	.services-grid,
	.rapid-grid,
	.budget-grid,
	.principles-grid,
	.governance-grid,
	.outcomes-grid,
	.capability-grid,
	.stats-row,
	.competencies-grid,
	.advantage-grid,
	.opt-gap-grid,
	.help-grid,
	.success-grid,
	.outcome-grid,
	.fail-grid,
	.gap-columns,
	.resilience-grid,
	.solutions-cards,
	.solutions-why-grid,
	.opex-category__grid,
	.cx-categories,
	.ex-categories,
	.opex-dual-cards__wrapper {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.success-card,
	.guarantee-left,
	.compare-card,
	.rapid-card,
	.budget-card,
	.pillar-card,
	.service-card,
	.principle-card,
	.capability-card,
	.competency-card,
	.opt-gap-card,
	.help-card,
	.outcome-card,
	.opex-scard,
	.ex-hcard {
		width: 100%;
		max-width: 100%;
	}

	.success-card {
		margin-bottom: 56px;
	}

	.guarantee-body,
	.success-card,
	.pillar-card,
	.service-card,
	.rapid-card,
	.budget-card,
	.fail-card,
	.resilience-card,
	.why-hosho-card,
	.outcome-card {
		padding: 28px 22px;
	}

	.building-layer,
	.flow-step,
	.flow-step.reverse,
	.gov-item,
	.gov-item.reverse,
	.continuity-item {
		align-items: flex-start;
		gap: 18px;
	}

	.building-layer {
		padding: 20px;
	}

	.flow-step,
	.flow-step.reverse,
	.gov-item,
	.gov-item.reverse {
		flex-direction: column;
	}

	.ai-quote-content,
	.ams-quote-content {
		gap: 28px;
	}

	.ai-quote-photo,
	.ams-quote-photo {
		min-height: 280px;
	}

	.phase-tabs,
	.framework-nav,
	.growth-timeline,
	.timeline-row,
	.engine-chevrons {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 14px;
		width: 100%;
		overflow-x: auto;
		padding: 8px 2px 18px;
		scroll-snap-type: x mandatory;
		overscroll-behavior-inline: contain;
		-webkit-overflow-scrolling: touch;
	}

	.phase-tab,
	.framework-nav-item,
	.growth-step,
	.timeline-step,
	.engine-chevron {
		flex: 0 0 min(78vw, 290px);
		min-width: 0;
		scroll-snap-align: start;
	}

	.engine-chevron:hover,
	.engine-chevron:focus-visible {
		transform: none;
		box-shadow: none;
	}

	.framework-nav {
		position: static;
	}

	.growth-box,
	.growth-wedge {
		width: 100%;
	}

	.partner-logos-wrap,
	.logos-track-wrap {
		width: 100%;
		max-width: 100%;
	}

	.timeline-row {
		gap: 10px;
		padding: 8px 0 14px;
		overflow-x: auto;
	}

	.timeline-step {
		flex: 0 0 min(62vw, 170px);
		padding: 16px 14px;
	}

	.timeline-step h4 {
		font-size: 15px;
		margin-bottom: 8px;
	}

	.timeline-step p {
		font-size: 12px;
		line-height: 1.5;
	}

	.help-arrow {
		flex: 0 0 28px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.help-arrow svg {
		width: 28px;
		height: 28px;
		display: block;
	}

	.nodes-left,
	.nodes-right {
		padding: 56px 16px;
	}

	.quote-band {
		min-height: 0;
	}

	.quote-band__copy {
		min-height: 0;
		padding: 72px 24px 48px;
	}

	.quote-band__mark {
		top: 20px;
		left: 20px;
		font-size: 92px;
	}

	.quote-band blockquote {
		margin-bottom: 32px;
		font-size: clamp(24px, 7vw, 31px);
	}

	.quote-band__portrait {
		width: 100%;
		height: 340px;
		min-height: 340px;
	}

	.testimonial-window {
		width: 100%;
		margin-top: 36px;
	}

	.testimonial {
		min-height: 480px;
		padding: 42px 24px;
	}

	.testimonial blockquote {
		margin: 28px 0 36px;
		font-size: clamp(25px, 8vw, 34px);
	}

	.carousel-controls {
		align-items: center;
		flex-wrap: wrap;
	}

	.carousel-controls button {
		width: 48px;
		height: 48px;
	}

	.media-split,
	.media-split--reverse {
		min-height: 0;
	}

	.media-split__image,
	.contact-visual {
		min-height: 360px;
	}

	.contact-form {
		gap: 18px;
	}

	.field input,
	.field select,
	.field textarea {
		min-height: 48px;
		font-size: 16px;
	}

	.consent input {
		width: 20px;
		height: 20px;
	}

	.consent label {
		min-height: 44px;
		display: flex;
		align-items: flex-start;
	}

	.cta-panel,
	.final-cta,
	.approach-cta,
	.philosophy-cta,
	.ai-cta,
	.ams-cta,
	.erp-cta {
		min-height: 440px;
	}

	.cta-panel__inner,
	.cta-content,
	.approach-cta-content,
	.philosophy-cta-card,
	.ai-cta-content,
	.ams-cta-content,
	.erp-cta-content {
		width: 100%;
		max-width: 100%;
		padding-inline: 0;
	}

	.cta-panel h2,
	.cta-content h2,
	.approach-cta-content h2,
	.philosophy-cta-card h2,
	.ai-cta-content h2,
	.ams-cta-content h2,
	.erp-cta-content h2 {
		font-size: clamp(32px, 10vw, 48px);
		line-height: 1.06;
	}

	.footer-main {
		gap: 40px;
		padding-bottom: 48px;
	}

	.footer-column {
		gap: 0;
	}

	.footer-column h2 {
		margin-bottom: 12px;
	}

	.footer-column a {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.footer-legal {
		gap: 0;
	}

	.footer-legal a {
		min-height: 40px;
		display: flex;
		align-items: center;
	}

	.legal-hero {
		min-height: 320px;
	}

	.legal-content {
		padding: 56px 0;
	}

	.legal-content h2:not(:first-of-type) {
		margin-top: 48px;
	}

	.legal-contact-box,
	.legal-callout {
		padding: 24px;
	}
}

@media (max-width: 380px) {
	:root {
		--shell: calc(100vw - 24px);
	}

	.home-page .container,
	.approach-page .container,
	.philosophy-page .container,
	.ai-page .container,
	.ams-page .container,
	.erp-page .container,
	.legal-page .container {
		width: calc(100% - 24px);
	}

	.page-hero h1,
	.hero h1,
	.approach-hero h1,
	.philosophy-hero h1,
	.ai-hero h1,
	.ams-hero h1,
	.erp-hero h1 {
		font-size: clamp(38px, 12vw, 50px);
	}

	.page-hero--careers h1 {
		font-size: clamp(52px, 17vw, 70px);
	}

	.testimonial,
	.quote-band__copy,
	.media-split__content,
	.framework__label,
	.framework__visual {
		padding-inline: 20px;
	}
}


/* =========================================================
   ACCESSIBILITY PAGE STYLES
   ========================================================= */

.legal-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: var(--mist);
}

.legal-page .container {
	max-width: 1160px;
	width: calc(100% - 80px);
	margin: auto;
}

/* ============ HERO ============ */

.legal-hero {
	position: relative;
	height: 420px;
	overflow: hidden;
	background:
		linear-gradient(90deg,
			rgba(94, 8, 10, .92) 0%,
			rgba(150, 20, 22, .8) 55%,
			rgba(180, 40, 35, .55) 100%);
}

.legal-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============ CONTENT ============ */

.legal-content {
	padding: 70px 0 90px;
}

.legal-title {
	text-align: center;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: .5px;
	color: #111;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, .18);
	margin-bottom: 55px;
}

.legal-content h2 {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	margin-bottom: 18px;
}

.legal-content h2:not(:first-of-type) {
	margin-top: 40px;
}

.legal-content p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.legal-content p strong {
	font-weight: 700;
}

.legal-contact-box {
	margin-top: 45px;
	border: 1px solid var(--red);
	background: #fff;
	padding: 30px 35px;
}

.legal-contact-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	margin-bottom: 14px;
}

.legal-contact-box p {
	margin-bottom: 0;
}

.legal-contact-box a {
	color: var(--red);
	text-decoration: none;
}


/* =========================================================
   TERMS OF USE PAGE STYLES
   ========================================================= */

.legal-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: var(--mist);
}

.legal-page .container {
	max-width: 1160px;
	width: calc(100% - 80px);
	margin: auto;
}

/* ============ HERO ============ */

.legal-hero {
	position: relative;
	height: 420px;
	overflow: hidden;
	background:
		linear-gradient(90deg,
			rgba(94, 8, 10, .92) 0%,
			rgba(150, 20, 22, .8) 55%,
			rgba(180, 40, 35, .55) 100%);
}

.legal-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============ CONTENT ============ */

.legal-content {
	padding: 70px 0 90px;
}

.legal-title {
	text-align: center;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: .5px;
	color: #111;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, .18);
	margin-bottom: 40px;
}

.legal-callout {
	display: flex;
	align-items: center;
	border-left: 3px solid var(--red);
	padding: 4px 0 4px 22px;
	margin-bottom: 40px;
}

.legal-callout {
	border-left: 3px solid var(--red);
	padding: 10px 0 10px 22px;
	margin-bottom: 40px;
}

.legal-callout p {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin: 0;
	line-height: 1.6;
}

.legal-content h2 {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	margin-bottom: 18px;
}

.legal-content h2:not(:first-of-type) {
	margin-top: 40px;
}

.legal-content p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.legal-content p strong {
	font-weight: 700;
}

.legal-contact-box {
	margin-top: 45px;
	border: 1px solid var(--red);
	background: #fff;
	padding: 30px 35px;
}

.legal-contact-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	margin-bottom: 14px;
}

.legal-contact-box p {
	margin-bottom: 0;
}

.legal-contact-box a {
	color: var(--red);
	text-decoration: none;
}


/* =========================================================
		COOKIES POLICY PAGE STYLES
		========================================================= */

.legal-page {
	font-family: Inter, sans-serif;
	color: var(--text);
	background: var(--mist);
}

.legal-page .container {
	max-width: 1160px;
	width: calc(100% - 80px);
	margin: auto;
}

/* ============ HERO ============ */

.legal-hero {
	position: relative;
	height: 420px;
	overflow: hidden;
	background: #1a0407;
}

.legal-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============ CONTENT ============ */

.legal-content {
	padding: 70px 0 90px;
}

.legal-title {
	text-align: center;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: .5px;
	color: #111;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, .18);
	margin-bottom: 40px;
}

.legal-callout {
	border-left: 3px solid var(--red);
	padding: 10px 0 10px 22px;
	margin-bottom: 40px;
}

.legal-callout p {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin: 0;
}

.legal-content h2 {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	margin-bottom: 18px;
}

.legal-content h3 {
	font-size: 19px;
	font-weight: 700;
	color: #111;
	margin-bottom: 14px;
}

.legal-content h2:not(:first-of-type) {
	margin-top: 40px;
}

.legal-content p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.legal-content p strong {
	font-weight: 700;
}

.legal-contact-box {
	margin-top: 45px;
	border: 1px solid var(--red);
	background: #fff;
	padding: 30px 35px;
}

.legal-contact-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	margin-bottom: 14px;
}

.legal-contact-box p {
	margin-bottom: 0;
}

.legal-contact-box a {
	color: var(--red);
	text-decoration: none;
}

/*==================================
		SOLUTION GROWTH
		==================================*/

.growth-full-bleed {
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
}

.growth-full-bleed:not(.growth-years-row) {
	height: 210px;
}

.growth-shape {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: #c51d23;
	clip-path: polygon(0% 57.143%,
			calc(33.333% - 60px) 57.143%,
			33.333% 28.571%,
			calc(66.667% - 60px) 28.571%,
			66.667% 0%,
			100% 0%,
			100% 100%,
			0% 100%);
}

.growth-label {
	position: absolute;
	z-index: 2;
	width: 33.333%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 40px;
	color: #fff;
}

.growth-label h3 {
	font-size: 26px;
	font-weight: 800;
	margin: 0;
}

.growth-label.l1 {
	left: 0;
	top: 57.143%;
	bottom: 0;
}

.growth-label.l2 {
	left: 33.333%;
	top: 28.571%;
	bottom: 0;
}

.growth-label.l3 {
	left: 66.667%;
	top: 0;
	bottom: 0;
}

.growth-years-row {
	display: flex;
	margin-top: 18px;
}

.growth-year {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	padding: 0 20px 0;
}


.growth-riser {
	position: absolute;
	z-index: 2;
	width: 84px;
	height: 64px;
	background: #111;

	clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

.growth-riser.r1 {
	left: calc(33.333% - 84px);
	top: 28.571%;
	height: 28.572%;
}

.growth-riser.r2 {
	left: calc(66.667% - 84px);
	top: 0%;
	height: 28.572%;
}

.growth-box {
	position: absolute;
	z-index: 1;
	bottom: 0;
	background: #c51d23;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 40px;
	color: #fff;
}

.growth-box h3 {
	font-size: 26px;
	font-weight: 800;
	margin: 0;
}

.growth-box.b1 {
	left: 0;
	width: 33.333%;
	top: 57.143%;
}

.growth-box.b2 {
	left: 33.333%;
	width: 33.333%;
	top: 28.571%;
}

.growth-box.b3 {
	left: 66.667%;
	width: 33.333%;
	top: 0;
}

.growth-timeline-wrap {
	position: relative;
}

.growth-divider {
	position: absolute;
	width: 2px;
	background: #F5B3B1;
	z-index: 4;
	pointer-events: none;
}

.growth-divider.d1 {
	left: calc(50% - 50vw + 33.333vw);
	top: 22%;
	bottom: 0;
}

.growth-divider.d2 {
	left: calc(50% - 50vw + 66.667vw);
	top: 0;
	bottom: 0;
}


@media (max-width: 860px) {
	.technology-logo-cloud {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.technology-logo-cloud>div {
		min-height: 140px;
		border-bottom: 1px solid var(--line);
	}

	.technology-logo-cloud>div:nth-child(2n) {
		border-right: 0;
	}

	.technology-logo-cloud>div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.qualification-panel {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 540px) {
	.technology-logo-cloud {
		grid-template-columns: 1fr;
	}

	.technology-logo-cloud>div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.technology-logo-cloud>div:nth-last-child(2) {
		border-bottom: 1px solid var(--line);
	}
}

/* Flat cards for homepage and approach pages */
.success-card,
.pillar-card,
.compare-card,
.core-step,
.service-card,
.solutions-card,
.opex-stat-card,
.opex-help-card,
.opex-scard,
.ex-hcard,
.fail-card,
.resilience-card,
.philosophy-cta-card,
.stage-card,
.help-card,
.framework-container,
.solutions-insight,
.principle-card,
.outcome-card,
.outcome-featured,
.capability-card,
.intervention-card,
.opt-gap-card,
.competency-card,
.advantage-item,
.deliverable,
.ex-stat__glass,
.solutions-card__icon,
.solutions-card__link,
.solutions-why-grid .feature__index,
.ex-hcard__icon,
.opex-scard__icon--badge,
.cx-cta .btn--white {
	border-radius: 0 !important;
}

/* Seven Nodes Diagram Animations */
.nodes-right.motion .node-arc {
    stroke-dasharray: 1450;
    stroke-dashoffset: 1450;
}

.nodes-right.motion.is-visible .node-arc {
    animation: drawArc 1.5s ease-in-out forwards;
}

@keyframes drawArc {
    to {
        stroke-dashoffset: 0;
    }
}

.nodes-right.motion .node-arrowhead {
    opacity: 0;
    transform: scale(0.5);
    transform-origin: center;
    transform-box: fill-box;
}

.nodes-right.motion.is-visible .node-arrowhead {
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.4s;
}

.nodes-right.motion .node-box {
    opacity: 0;
    transform: scale(0.9);
    transform-origin: center;
    transform-box: fill-box;
}

.nodes-right.motion.is-visible .node-box {
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.nodes-right.motion .node-box rect {
    transition: transform 220ms var(--ease), filter 220ms var(--ease), stroke-width 220ms var(--ease), fill 220ms var(--ease);
    transform-box: fill-box;
    transform-origin: center;
    pointer-events: all;
}

.nodes-right.motion.is-visible .node-box:hover rect {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 8px 16px rgba(7, 21, 35, .14));
    stroke-width: 5.5;
}

.nodes-right.motion.is-visible .node-box:hover text {
    transform: translateY(-1px);
    fill: var(--red);
}

.nodes-right.motion .node-box text {
    transition: transform 220ms var(--ease), fill 220ms var(--ease);
    transform-box: fill-box;
    transform-origin: center;
    pointer-events: none;
}

.nodes-right.motion.is-visible g.node-box:nth-of-type(1) { animation-delay: 0.1s; }
.nodes-right.motion.is-visible g.node-box:nth-of-type(2) { animation-delay: 0.3s; }
.nodes-right.motion.is-visible g.node-box:nth-of-type(3) { animation-delay: 0.5s; }
.nodes-right.motion.is-visible g.node-box:nth-of-type(4) { animation-delay: 0.7s; }
.nodes-right.motion.is-visible g.node-box:nth-of-type(5) { animation-delay: 0.9s; }
.nodes-right.motion.is-visible g.node-box:nth-of-type(6) { animation-delay: 1.1s; }
.nodes-right.motion.is-visible g.node-box:nth-of-type(7) { animation-delay: 1.3s; }

.nodes-right.motion .node-logo {
    opacity: 0;
    transform: scale(0.8);
    transform-origin: center;
    transform-box: fill-box;
}

.nodes-right.motion.is-visible .node-logo {
    animation: popInLogo 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popInLogo {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================================
   EVAN'S SEVEN PAGES: 2026 REVIEW PASS
   Scoped to avoid changing coworker-owned templates.
   ========================================================= */

body:is(.page-careers, .page-sustainability, .page-press, .page-contact, .page-company, .page-ai-quick-win, .page-eci) .page-hero h1 {
	max-width: 980px;
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -.055em;
	text-transform: uppercase;
}

body:is(.page-careers, .page-sustainability, .page-company, .page-ai-quick-win, .page-eci) .process > article::before {
	display: none !important;
	content: none !important;
}

body:is(.page-careers, .page-sustainability, .page-company, .page-ai-quick-win, .page-eci) .cta-panel {
	min-height: clamp(480px, 62svh, 700px);
}

body:is(.page-careers, .page-company, .page-ai-quick-win, .page-eci) .cta-panel--concise .cta-panel__inner {
	align-content: center;
	gap: 40px;
}

body:is(.page-careers, .page-company, .page-ai-quick-win, .page-eci) .cta-panel--concise h2 {
	max-width: 980px;
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(48px, 6.4vw, 92px);
	font-weight: 700;
	letter-spacing: -.055em;
	line-height: .98;
	text-transform: uppercase;
}

/* Larger, consistent quote system with isolated monochrome portraits. */
body:is(.page-careers, .page-sustainability, .page-company) .quote-band {
	grid-template-columns: minmax(0, 66%) minmax(320px, 34%);
	min-height: clamp(540px, 50vw, 680px);
}

body:is(.page-careers, .page-sustainability, .page-company) .quote-band__copy {
	min-height: clamp(540px, 50vw, 680px);
	padding: clamp(96px, 9vw, 150px) clamp(40px, 6vw, 100px) clamp(62px, 7vw, 104px);
}

body:is(.page-careers, .page-sustainability, .page-company) .quote-band blockquote,
body.page-company .quote-band--lee blockquote {
	max-width: 900px;
	margin-bottom: 48px;
	font-size: clamp(34px, 3.2vw, 54px);
	font-weight: 600;
	line-height: 1.14;
}

body:is(.page-careers, .page-sustainability, .page-company) .quote-band__portrait {
	height: clamp(540px, 50vw, 680px);
	min-height: clamp(540px, 50vw, 680px);
}

body:is(.page-careers, .page-sustainability, .page-company) .quote-band__portrait img {
	width: 100%;
	max-width: none;
	height: 100%;
	object-position: center bottom;
	filter: grayscale(1) contrast(1.08);
}

/* Company values keep the approved split treatment without carousel numbering. */
body.page-company .company-values__window {
	overflow: visible;
	background: transparent;
}

body.page-company .company-values__track--grid {
	display: grid;
	gap: 28px;
	transform: none !important;
	will-change: auto;
}

body.page-company .company-value {
	min-height: 560px;
}

body.page-company .company-value:nth-child(even) .company-value__visual { order: 2; }
body.page-company .company-value__visual {
	min-height: 560px;
	filter: grayscale(1) contrast(1.06);
}

body.page-company .company-value__copy h3 { margin-top: 0; }

/* Clean, full-width editorial contact and media-contact pages. */
body:is(.page-contact, .page-media, .page-press) #main-content {
	padding-top: 86px;
}

body:is(.page-contact, .page-media, .page-press) .site-header:not(.is-scrolled) {
	background: var(--navy);
	border-color: rgba(255,255,255,.12);
}

body.page-contact .contact-page,
body.page-press .press-contact {
	min-height: calc(100svh - 86px);
	padding: clamp(72px, 9vw, 144px) 0;
}

body.page-contact .contact-page__intro,
body.page-press .press-contact__intro {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
	gap: clamp(48px, 9vw, 140px);
	align-items: end;
	margin-bottom: clamp(58px, 8vw, 110px);
	padding-bottom: clamp(44px, 6vw, 72px);
	border-bottom: 1px solid var(--line);
}

body.page-contact .contact-page__intro {
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
	gap: clamp(40px, 5vw, 72px);
}

body.page-contact .contact-page__intro > div {
	min-width: 0;
}

body:is(.page-contact, .page-media, .page-press) .contact-page__intro h1,
body.page-press .press-contact__intro h1 {
	max-width: 900px;
	margin: 0;
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(58px, 8vw, 116px);
	font-weight: 600;
	letter-spacing: -.06em;
	line-height: .94;
}

body.page-contact .contact-page__intro h1 {
	font-size: clamp(56px, 6.4vw, 92px);
	overflow-wrap: normal;
}

body.page-contact .contact-layout--full {
	grid-template-columns: 1fr;
	max-width: 1080px;
}

body.page-contact .contact-form {
	padding: clamp(28px, 5vw, 72px);
	border: 1px solid var(--line);
	background: rgba(255,255,255,.88);
	box-shadow: 0 28px 80px rgba(7,21,35,.08);
}

body.page-press .press-contact__profile {
	display: grid;
	grid-template-columns: minmax(260px, .72fr) minmax(300px, 1.05fr) minmax(260px, .72fr);
	min-height: 470px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 28px 80px rgba(7,21,35,.08);
}

body.page-press .press-contact__portrait {
	position: relative;
	display: grid;
	min-height: 470px;
	margin: 0;
	place-items: center;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(238,28,31,.96), rgba(113,14,10,.96) 48%, rgba(7,21,35,.98));
	color: #fff;
}

body.page-press .press-contact__portrait::before,
body.page-press .press-contact__portrait::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50%;
}

body.page-press .press-contact__portrait::before {
	width: 76%;
	aspect-ratio: 1;
}

body.page-press .press-contact__portrait::after {
	width: 46%;
	aspect-ratio: 1;
}

body.page-press .press-contact__portrait span {
	position: relative;
	z-index: 1;
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(70px, 8vw, 132px);
	font-weight: 500;
	letter-spacing: -.08em;
	line-height: 1;
}

body.page-press .press-contact__person,
body.page-press .press-contact__address {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(34px, 5vw, 76px);
}

body.page-press .press-contact__person {
	border-right: 1px solid var(--line);
}

body.page-press .press-contact__person h2 {
	margin: 12px 0 8px;
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(46px, 5vw, 76px);
	font-weight: 500;
	letter-spacing: -.055em;
	line-height: .98;
}

body.page-press .press-contact__role {
	margin: 0 0 42px;
	color: var(--muted);
	font-size: 17px;
}

body.page-press .press-contact__email {
	width: fit-content;
	color: var(--red-dark);
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .35em;
}

body.page-press .press-contact__address {
	gap: 8px;
	color: var(--muted);
	font-style: normal;
	font-size: 16px;
	line-height: 1.6;
}

body.page-press .press-contact__address strong {
	margin-bottom: 18px;
	color: var(--ink);
	font-size: 18px;
}

/* AI Quick Win outcomes and ECI delivery stages. */
body.page-ai-quick-win .quickwin-outcomes > article {
	grid-column: span 3;
}

body:is(.page-ai-quick-win, .page-eci) .process--arrow {
	position: relative;
	gap: 18px;
	border-top: 0;
}

body:is(.page-ai-quick-win, .page-eci) .process--arrow > article {
	position: relative;
	min-height: 300px;
	padding: 44px 34px;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(255,255,255,.045);
}

body:is(.page-ai-quick-win, .page-eci) .process--arrow > article:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -27px;
	z-index: 2;
	width: 34px;
	height: 18px;
	background: #ff5f58;
	clip-path: polygon(0 36%, 62% 36%, 62% 0, 100% 50%, 62% 100%, 62% 64%, 0 64%);
	transform: translateY(-50%);
}

body.page-eci .eci-hero-partners {
	background: var(--navy);
	color: white;
}

body.page-eci .eci-hero-partners .shell {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(36px, 7vw, 96px);
	align-items: center;
	padding-block: 30px;
}

body.page-eci .eci-hero-partners p {
	margin: 0;
	color: rgba(255,255,255,.62);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

body.page-eci .eci-hero-partners .shell > div {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255,255,255,.14);
}

body.page-eci .eci-hero-partners .shell > div > img {
	width: 100%;
	height: 74px;
	padding: 20px clamp(16px, 2vw, 30px);
	object-fit: contain;
	background: white;
}

@media (max-width: 980px) {
	body:is(.page-careers, .page-sustainability, .page-company) .quote-band {
		grid-template-columns: 1fr;
	}

	body:is(.page-careers, .page-sustainability, .page-company) .quote-band__copy {
		min-height: 470px;
	}

	body:is(.page-careers, .page-sustainability, .page-company) .quote-band__portrait {
		height: 500px;
		min-height: 500px;
	}

	body.page-company .company-value,
	body.page-company .company-value:nth-child(even) {
		grid-template-columns: 1fr;
	}

	body.page-company .company-value:nth-child(even) .company-value__visual { order: initial; }
	body.page-company .company-value__visual { min-height: 440px; }

	body:is(.page-contact, .page-media, .page-press) .contact-page__intro,
	body.page-press .press-contact__intro,
	body.page-press .press-contact__profile {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	body.page-press .press-contact__profile { gap: 0; }
	body.page-press .press-contact__portrait { min-height: 440px; }
	body.page-press .press-contact__person { border-right: 0; border-bottom: 1px solid var(--line); }

	body.page-ai-quick-win .quickwin-outcomes > article { grid-column: span 6; }
	body:is(.page-ai-quick-win, .page-eci) .process--arrow { grid-template-columns: 1fr; }

	body:is(.page-ai-quick-win, .page-eci) .process--arrow > article:not(:last-child)::after {
		top: auto;
		right: 50%;
		bottom: -27px;
		transform: translateX(50%) rotate(90deg);
	}

	body.page-eci .eci-hero-partners .shell {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 620px) {
	body:is(.page-careers, .page-sustainability, .page-company, .page-ai-quick-win, .page-eci) .page-hero h1 {
		font-size: clamp(44px, 13vw, 68px);
	}

	body:is(.page-careers, .page-sustainability, .page-company) .quote-band__copy {
		min-height: 420px;
		padding: 86px 24px 46px;
	}

	body:is(.page-careers, .page-sustainability, .page-company) .quote-band blockquote,
	body.page-company .quote-band--lee blockquote {
		font-size: clamp(28px, 8vw, 38px);
	}

	body:is(.page-careers, .page-sustainability, .page-company) .quote-band__portrait {
		height: 390px;
		min-height: 390px;
	}

	body.page-company .company-value__visual { min-height: 320px; }
	body.page-company .company-value__copy { padding: 44px 24px 52px; }

	body:is(.page-contact, .page-media, .page-press) #main-content { padding-top: 74px; }
	body.page-contact .contact-form { grid-template-columns: 1fr; padding: 26px 20px; }
	body.page-contact .contact-form .field-full,
	body.page-contact .contact-form .consent { grid-column: auto; }

	body.page-ai-quick-win .quickwin-outcomes > article { grid-column: 1 / -1; }

	body:is(.page-ai-quick-win, .page-eci) .process--arrow {
		grid-template-columns: 1fr;
	}

	body.page-eci .eci-hero-partners .shell > div {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

body:is(.page-careers, .page-company, .page-ai-quick-win, .page-eci) .cta-panel--concise h2 {
		font-size: clamp(40px, 12vw, 58px);
	}
}
.hg-section {
	--hg-red: #7a1416;
	--hg-navy: #16213e;
	--hg-body: #3a3a3a;

	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 48px;
	box-sizing: border-box;
	text-align: center;
}

.hg-section * {
	box-sizing: border-box;
}

.hg-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

.hg-brand-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 24px 18px;
	text-align: center;
}

.hg-tagline {
	margin: 0 0 24px;
	color: var(--hg-red);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: .01em;
	text-transform: uppercase;

}

.hg-stamp-stage {
	width: 100%;
	max-width: 190px;
}

.hg-stamp-img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0;
	transform: scale(2.2);
}

.hg-stamp-stage.is-stamped .hg-stamp-img {
	animation: hgStampDown .55s cubic-bezier(.2, 1.5, .4, 1) forwards;
}

@keyframes hgStampDown {
	0%   { opacity: 0; transform: scale(2.2); }
	60%  { opacity: 1; transform: scale(.9); }
	80%  { transform: scale(1.05); }
	100% { opacity: 1; transform: scale(1); }
}

.hg-heading {
	margin: 0 0 18px;
	color: var(--hg-navy);
	font-family: "Poppins";
	font-size: 46px;
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: 1;
	text-align: center;
}

.hg-cards-col {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	padding-top: 40px;
}

.hg-flip-card {
	position: relative;
	display: block;
	width: 100%;
	min-height: 50px;
	padding: 40px 28px;
	cursor: pointer;
	text-align: center;
	background: #fff;
	border: 3px solid var(--line, #E21C15);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
	overflow: hidden;
	font: inherit;
	color: inherit;
	appearance: none;
	transition:
		transform 420ms var(--ease),
		box-shadow 420ms var(--ease),
		border-color 420ms var(--ease);
}

.hg-flip-card:focus-visible {
	outline: 2px solid var(--hg-red);
	outline-offset: 3px;
}

.hg-flip-card:hover,
.hg-flip-card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
	border-color: rgba(122, 20, 22, .22);
}

.hg-corner-stamp {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: auto;
	opacity: .9;
	transform: none;
}

.hg-card-head {
	margin-bottom: 14px;
}

.hg-card-title-wrap {
	display: grid;
	gap: 4px;
	justify-items: center;
}

.hg-card-title {
	margin: 0;
	color: var(--hg-navy);
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -.03em;
	line-height: 1.1;
}

.hg-tap-hint {
	color: #8a8a8a;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: opacity .25s ease;
}

.hg-flip-card.is-open .hg-tap-hint {
	opacity: 0;
}

.hg-flip-card:hover .hg-tap-hint,
.hg-flip-card:focus-visible .hg-tap-hint {
	opacity: 0;
}

.hg-card-body-wrap {
	display: grid;
	gap: 8px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	text-align: center;
	transition: max-height .45s var(--ease, cubic-bezier(.4, 0, .2, 1)), opacity .25s ease;
}

.hg-flip-card.is-open .hg-card-body-wrap {
	max-height: 220px;
	opacity: 1;
}

.hg-flip-card:hover .hg-card-body-wrap,
.hg-flip-card:focus-visible .hg-card-body-wrap {
	max-height: 220px;
	opacity: 1;
}

.hg-subtitle {
	color: var(--hg-navy);
	font-size: 16px;
	font-weight: 800;
}

.hg-body {
	color: var(--hg-body);
	font-size:18px;
	line-height: 1.5;
}

.hg-flip-card.is-open,
.hg-flip-card:hover,
.hg-flip-card:focus-visible {
	z-index: 1;
}

@media (max-width: 900px) {
	.hg-layout { grid-template-columns: 1fr; }
	.hg-cards-col { grid-template-columns: 1fr; }
	.hg-heading {`r`n`tmargin: 0 0 18px;`r`n`tcolor: var(--hg-navy);`r`n`tfont-family: "Poppins", "Helvetica Neue", Arial, sans-serif;`r`n`tfont-size: 46px;`r`n`tfont-weight: 500;`r`n`tletter-spacing: -.045em;`r`n`tline-height: 1;`r`n`ttext-align: center;`r`n}

.idc-card {
	position: relative;
}

.idc-card-header {
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.idc-stamp-wrapper {
	width: 118px;
	height: 118px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}

.idc-stamp-img {
	width: 100%;
	height: auto;
	display: block;
}

@media (prefers-reduced-motion: reduce) {
	.hg-stamp-img { animation: none !important; opacity: 1; transform: none; }
	.hg-card-body-wrap { transition: none; }
	.hg-tap-hint { transition: none; }
}

/* --- Hover Effects for fail-card --- */
.fail-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.fail-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    transform: translateY(-8px);
    border-color: #e21c15;
}

/* --- Hover Effects for process-layer --- */
.process-layer:hover {
    transform: translateY(-6px) scale(1.04);
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.35)) brightness(1.12);
    z-index: 10;
}

/* Added for page-approach-ams.php modifications */
.icon-box { background-color: #f1f2f4 !important; transition: background-color 0.3s ease, transform 0.3s ease; }
.icon-box:hover { transform: translateY(-3px); }
.timeline-num { color: #112d4b !important; background: #f1f2f4 !important; transition: transform 0.3s ease; }
.timeline-num:hover { transform: translateY(-3px); }


/* Added for page-approach-erp.php */
.feature-card { transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); }

  /* ==========================================================================
   EVAN SEVEN-PAGE REVISION · 2026-08-20
   Scoped to Careers, ESG, Media, Contact, Company, AI Quick Win and ECI.
   ========================================================================== */

:is(.page-careers,.page-esg,.page-sustainability,.page-media,.page-press,.page-contact,.page-company,.page-ai-quick-win,.page-eci) .page-hero {
  min-height: 100svh;
}

:is(.page-careers,.page-esg,.page-sustainability,.page-company,.page-ai-quick-win,.page-eci) .page-hero h1 {
  max-width: 12ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.25rem, 7vw, 7.75rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.055em;
}

/* Careers */
.careers-belief__grid {
  display: grid;
  grid-template-columns: minmax(220px,.7fr) minmax(420px,1.3fr);
  gap: clamp(3rem,7vw,8rem);
  align-items: start;
}
.careers-belief__title { max-width: 12ch; font-size: clamp(2rem,3vw,3.6rem); }
.careers-belief__lines { min-height: clamp(17rem,32vw,34rem); }
.careers-belief__lines p {
  position: relative;
  margin: 0 0 .28em;
  color: #071b2c;
  font-family: "Poppins",sans-serif;
  font-size: clamp(2.25rem,5vw,6.4rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}
.careers-belief__lines p:nth-child(2) { color:#e91a1a; }
.careers-belief__lines p.is-typing::after { content:""; display:inline-block; width:.06em; height:.82em; margin-left:.08em; background:#e91a1a; animation:hosho-caret .8s steps(1) infinite; }
.careers-belief__body { grid-column:2; max-width:56ch; margin:0; font-size:1.08rem; line-height:1.75; color:#56616d; }
@keyframes hosho-caret { 50% { opacity:0; } }
.careers-diversity .media-split__image { background-position:center 46%; }
.careers-voices { padding-block:clamp(3.75rem,7vw,7rem); }
.careers-voices .testimonial-window { max-width:1080px; }
.careers-voices .testimonial { padding:clamp(1.75rem,3vw,3rem); min-height:320px; }
.careers-voices .testimonial blockquote { max-width:32ch; font-size:clamp(1.35rem,2.3vw,2.25rem); line-height:1.32; }
.page-careers .cta-panel { background-position:center 48%; }

/* ESG commitment accordion */
.esg-commitments { display:flex; min-height:640px; gap:14px; margin-top:clamp(2rem,4vw,4rem); overflow:hidden; }
.esg-card { position:relative; flex:1 1 0; min-width:0; overflow:hidden; cursor:pointer; outline:none; background:#071b2c; transition:flex .7s cubic-bezier(.22,1,.36,1), transform .35s ease; }
.esg-card.is-active { flex:2.25 1 0; }
.esg-card:focus-visible { box-shadow:inset 0 0 0 3px #e91a1a; }
.esg-card img { width:100%; height:100%; object-fit:cover; filter:saturate(.78) contrast(1.03); transition:transform 1s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.esg-card.is-active img { transform:scale(1.035); filter:saturate(.9) contrast(1.06); }
.esg-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 38%,rgba(3,15,27,.9) 100%); }
.esg-card__overlay { position:absolute; z-index:1; inset:auto clamp(1.25rem,2.4vw,2.5rem) clamp(1.5rem,3vw,3rem); color:#fff; }
.esg-card__overlay h3 { max-width:14ch; margin:0; color:#fff; font-size:clamp(1.25rem,2vw,2.15rem); line-height:1.05; }
.esg-card__overlay p { max-width:42ch; max-height:0; margin:0; opacity:0; overflow:hidden; transform:translateY(14px); transition:max-height .45s ease, opacity .35s ease .12s, transform .45s ease .08s, margin .45s ease; }
.esg-card.is-active .esg-card__overlay p { max-height:8rem; margin-top:1rem; opacity:1; transform:none; }
.logo-row__panel--dark { background:#071b2c; }
.logo-row__panel--dark img { filter:none!important; }
.logo-row--credentials { grid-template-columns:repeat(3,minmax(0,1fr)); }

/* Standard quote composition */
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,36%);
  min-height:520px;
  overflow:hidden;
  background:linear-gradient(105deg,#bd0711 0%,#76101b 34%,#071b2c 76%);
}
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band--balanced { background:linear-gradient(105deg,#9b0d18 0%,#4b1423 38%,#0a2944 100%); }
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band--red-soft { background:linear-gradient(105deg,#ad0b17 0%,#501522 43%,#0b2439 100%); }
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band__copy { align-self:center; padding:clamp(3rem,6vw,7rem) clamp(2rem,6vw,7rem); }
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band blockquote { max-width:27ch; margin:1.5rem 0 2.4rem; color:#fff; font-size:clamp(2rem,3.7vw,4.65rem); font-style:normal; font-weight:500; line-height:1.08; letter-spacing:-.045em; }
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band cite { color:#fff; font-size:.8rem; font-style:normal; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band__portrait { min-height:520px; background:transparent; }
:is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band__portrait img { width:100%; height:100%; object-fit:cover; object-position:center top; filter:grayscale(1) contrast(1.08); mix-blend-mode:luminosity; }

/* Media */
.press-contact { padding-block:clamp(5rem,10vw,10rem); }
.press-contact__profile { display:grid; grid-template-columns:minmax(180px,240px) minmax(240px,1fr) minmax(240px,.8fr); gap:clamp(2rem,5vw,6rem); align-items:center; min-height:420px; padding:clamp(1.5rem,3vw,3.25rem); border:1px solid #dce1e6; background:#fff; box-shadow:0 28px 80px rgba(7,21,35,.08); }
.press-contact__portrait { position:relative; display:grid; width:min(100%,220px); aspect-ratio:4/5; min-height:0; margin:0; place-items:center; overflow:hidden; border:1px solid rgba(7,27,44,.16); box-shadow:0 22px 55px rgba(7,27,44,.12); }
.press-contact__portrait--placeholder { background:linear-gradient(145deg,#122d47 0%,#071b2c 56%,#710e0a 100%); color:#fff; }
.press-contact__portrait--placeholder::before { width:72%; border-color:rgba(255,255,255,.12); }
.press-contact__portrait--placeholder::after { width:42%; border-color:rgba(255,255,255,.18); }
.press-contact__portrait--placeholder span { display:grid; width:5.25rem; height:5.25rem; place-items:center; border:1px solid rgba(255,255,255,.3); border-radius:50%; background:rgba(255,255,255,.07); font-size:1.35rem!important; font-weight:600!important; letter-spacing:.08em!important; }
.press-contact__person,.press-contact__address { display:flex; flex-direction:column; justify-content:center; padding:clamp(1rem,2.5vw,2.5rem); }
.press-contact__person { border-right:1px solid #dce1e6; }
.press-contact__person h2 { font-size:clamp(2.4rem,4vw,4.4rem); }
.press-contact__address { gap:.4rem; color:#5c6570; font-style:normal; line-height:1.6; }
.press-contact__address strong { margin-bottom:1rem; color:#071b2c; }

/* Contact, full-width transparent form */
.contact-page--immersive { position:relative; min-height:calc(100svh - 76px); padding:clamp(6rem,9vw,10rem) 0; color:#fff; background:#020b13 var(--contact-bg) center/cover no-repeat; isolation:isolate; }
.contact-page--immersive::before { content:""; position:absolute; z-index:-1; inset:0; background:linear-gradient(90deg,rgba(1,11,20,.96),rgba(2,18,31,.8) 52%,rgba(75,6,17,.66)); }
.contact-page__canvas { display:grid; grid-template-columns:minmax(260px,.7fr) minmax(560px,1.3fr); gap:clamp(3rem,8vw,9rem); align-items:start; }
.contact-page__heading h1 { max-width:7ch; margin:0; color:#fff; font-family:"Poppins",sans-serif; font-size:clamp(3.8rem,7vw,8rem); line-height:.9; letter-spacing:-.06em; }
.contact-page__heading p { max-width:35ch; margin-top:2rem; color:rgba(255,255,255,.76); font-size:1.1rem; line-height:1.7; }
body.page-contact .contact-form.contact-form--glass { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.2rem; padding:clamp(1.5rem,3vw,3.25rem); border:1px solid rgba(255,255,255,.26); background:linear-gradient(145deg,rgba(4,17,30,.82),rgba(17,32,49,.68)); box-shadow:0 32px 80px rgba(0,0,0,.3); backdrop-filter:blur(18px); }
body.page-contact .contact-form--glass label { color:#fff; }
body.page-contact .contact-form--glass :is(input,select,textarea) { width:100%; color:#fff; border:1px solid rgba(255,255,255,.5); background:rgba(255,255,255,.065); border-radius:0; box-shadow:none; }
body.page-contact .contact-form--glass :is(input,select,textarea)::placeholder { color:rgba(255,255,255,.62); }
body.page-contact .contact-form--glass :is(input,select,textarea):focus { border-color:#fff; outline:2px solid rgba(233,26,26,.75); outline-offset:2px; }
body.page-contact .contact-form--glass select option { color:#071b2c; background:#fff; }
body.page-contact .contact-form--glass .consent { grid-column:1/-1; color:rgba(255,255,255,.8); }
body.page-contact .contact-form--glass .consent label { color:rgba(255,255,255,.8); }

/* Company values */
.company-value__visual--portrait { background-position:center top!important; background-size:cover!important; filter:grayscale(1) contrast(1.04); }
.company-value__copy blockquote { font-size:clamp(1.25rem,2vw,2rem); }

/* Quick Win */
.quickwin-stat-grid .stat { border-top:3px solid #e91a1a; }
.quickwin-outcomes { grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px; background:#dce1e6; }
.quickwin-outcomes .feature { grid-column:auto!important; background:#fff; }
.process--four { grid-template-columns:repeat(4,minmax(0,1fr)); }
.process--four article { position:relative; min-width:0; }
.process--four article:not(:last-child)::after { content:""; position:absolute; z-index:3; top:50%; right:-19px; width:38px; height:38px; transform:translateY(-50%) rotate(45deg); border-top:1px solid currentColor; border-right:1px solid currentColor; opacity:.55; }

/* ECI */
.page-hero--eci .page-hero__actions { display:grid; grid-template-columns:repeat(4,minmax(120px,190px)); gap:10px; max-width:800px; }
.eci-hero-partner { display:grid; place-items:center; min-height:76px; padding:1rem 1.2rem; border:1px solid rgba(255,255,255,.28); background-color:rgba(2,13,24,.62); background-position:center; background-repeat:no-repeat; background-size:min(72%,150px) auto; backdrop-filter:blur(12px); }
.eci-hero-partner--microsoft { background-image:url('assets/images/eci-logo-microsoft.png'); }
.eci-hero-partner--imda { background-image:url('assets/images/eci-logo-imda.png'); }
.eci-hero-partner--enterprise { background-image:url('assets/images/eci-logo-enterprise-sg.png'); }
.eci-hero-partner--edb { background-image:url('assets/images/eci-logo-edb.png'); }
.eci-benefit-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; margin-top:clamp(2rem,4vw,4rem); background:#d9dee3; }
.eci-benefit-grid article { min-height:340px; padding:clamp(2rem,4vw,4rem); background:#fff; transition:transform .4s cubic-bezier(.22,1,.36,1), background .35s ease, color .35s ease; }
.eci-benefit-grid article:hover { z-index:1; transform:translateY(-10px); background:#071b2c; color:#fff; }
.eci-benefit-grid article span { display:block; margin-bottom:clamp(3rem,7vw,7rem); color:#e91a1a; font-size:2rem; }
.eci-benefit-grid article h3 { font-size:clamp(1.5rem,2.2vw,2.45rem); }
.eci-benefit-grid article:hover h3 { color:#fff; }

/* Shared interaction polish */
:is(.page-careers,.page-esg,.page-sustainability,.page-media,.page-press,.page-contact,.page-company,.page-ai-quick-win,.page-eci) .button { transition:transform .35s cubic-bezier(.22,1,.36,1),background .3s ease,color .3s ease,box-shadow .35s ease; }
:is(.page-careers,.page-esg,.page-sustainability,.page-media,.page-press,.page-contact,.page-company,.page-ai-quick-win,.page-eci) .button:hover { transform:translateY(-3px); box-shadow:0 16px 34px rgba(0,0,0,.2); }
.site-footer .footer-socials a { position:relative; }
.site-footer .footer-socials a::after { content:""; position:absolute; left:20%; right:20%; bottom:-8px; height:2px; background:#e91a1a; transform:scaleX(0); transform-origin:left; transition:transform .32s cubic-bezier(.22,1,.36,1); }
.site-footer .footer-socials a:hover::after,.site-footer .footer-socials a:focus-visible::after { transform:scaleX(1); }

@media (max-width:980px) {
  :is(.page-careers,.page-esg,.page-sustainability,.page-company,.page-ai-quick-win,.page-eci) .page-hero { min-height:100svh; }
  .careers-belief__grid,.contact-page__canvas { grid-template-columns:1fr; }
  .careers-belief__body { grid-column:auto; }
  .careers-belief__lines { min-height:0; }
  .esg-commitments { min-height:560px; }
  .quickwin-outcomes,.process--four,.eci-benefit-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process--four article:nth-child(2)::after { display:none; }
  .press-contact__profile { grid-template-columns:minmax(160px,220px) 1fr; }
  .press-contact__address { grid-column:2; }
}

@media (max-width:680px) {
  :is(.page-careers,.page-esg,.page-sustainability,.page-company,.page-ai-quick-win,.page-eci) .page-hero { min-height:100svh; }
  .careers-belief__lines p { font-size:clamp(2.05rem,10vw,3.4rem); }
  .esg-commitments { display:grid; min-height:0; overflow:visible; }
  .esg-card,.esg-card.is-active { min-height:300px; }
  .esg-card__overlay p { max-height:0; margin-top:0; opacity:0; transform:translateY(10px); }
  .esg-card.is-active .esg-card__overlay p { max-height:8rem; margin-top:.75rem; opacity:1; transform:none; }
  :is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band { grid-template-columns:1fr; min-height:0; }
  :is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band__copy { min-height:430px; }
  :is(.page-careers,.page-esg,.page-sustainability,.page-company) .quote-band__portrait { min-height:380px; }
  .press-contact__profile { grid-template-columns:1fr; justify-items:start; min-height:0; }
  .press-contact__portrait { width:180px; }
  .press-contact__person { border-right:0; border-bottom:1px solid #dce1e6; }
  .press-contact__address { grid-column:auto; }
  body.page-contact .contact-form.contact-form--glass { grid-template-columns:1fr; }
  body.page-contact .contact-form--glass .field-full,body.page-contact .contact-form--glass .consent { grid-column:1; }
  .page-hero--eci .page-hero__actions { grid-template-columns:repeat(2,minmax(0,1fr)); width:100%; }
  .quickwin-outcomes,.process--four,.eci-benefit-grid { grid-template-columns:1fr; }
  .process--four article::after { display:none!important; }
}

@media (prefers-reduced-motion:reduce) {
  .careers-belief__lines p.is-typing::after { display:none; }
  .esg-card,.esg-card img,.eci-benefit-grid article { transition:none; }
}
