/* ============================================================
   TRINOVIK SERVICES — OVERVIEW + DETAIL INTERFACES
   ============================================================ */

.trinovik-services-page {
	--services-bg: #000435;
	--services-panel: #070a42;
	--services-white: #f5f3fa;
	--services-muted: rgba(231, 231, 242, .66);
	--services-line: rgba(126, 139, 203, .18);
	background: var(--services-bg);
	color: var(--services-white);
}

.trinovik-services-page .site {
	background:
		radial-gradient(circle at 78% 12%, rgba(150, 26, 205, .12), transparent 26%),
		linear-gradient(180deg, #000435, #03052d 62%, #090527);
}

.trinovik-services-page main {
	overflow: clip;
}

.services-shell {
	width: min(calc(100% - (2 * var(--page-padding))), var(--container));
	margin-inline: auto;
}

.services-hub__hero,
.service-detail-hero {
	position: relative;
	min-height: 100svh;
	padding-top: clamp(150px, 18vh, 210px);
	padding-bottom: clamp(80px, 10vh, 130px);
}

.services-hub__eyebrow,
.service-detail-hero__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--services-line);
	color: rgba(213, 213, 231, .48);
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.service-detail-hero__meta {
	justify-content: flex-start;
}

.service-detail-hero__meta a {
	color: rgba(255, 255, 255, .72);
	transition: color .25s ease;
}

.service-detail-hero__meta a:hover,
.service-detail-hero__meta a:focus-visible {
	color: var(--service-accent);
	outline: none;
}

.services-hub__hero-grid,
.service-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
	align-items: end;
	gap: clamp(42px, 8vw, 150px);
	padding-top: clamp(64px, 9vh, 110px);
}

.services-hub__hero h1,
.service-detail-hero h1 {
	margin: 0;
	max-width: 1050px;
	font-size: clamp(4.6rem, 9.4vw, 10.8rem);
	line-height: .78;
	letter-spacing: -.075em;
	font-weight: 400;
	text-transform: uppercase;
}

.services-hub__hero h1 em,
.services-cta h2 em {
	display: inline-block;
	color: #d84ee9;
	font-style: italic;
	font-weight: 350;
}

.services-hub__hero-copy,
.service-detail-hero__copy {
	padding-bottom: clamp(10px, 2vh, 30px);
}

.services-hub__hero-copy > p,
.service-detail-hero__copy > p {
	margin: 0;
	color: var(--services-muted);
	font-size: clamp(1rem, 1.3vw, 1.25rem);
	line-height: 1.6;
}

.service-text-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(216, 78, 233, .48);
	color: #fff;
	font-size: .72rem;
	letter-spacing: .13em;
	text-transform: uppercase;
	transition: border-color .25s ease, color .25s ease;
}

.service-text-link span {
	color: #d84ee9;
	transition: transform .3s ease;
}

.service-text-link:hover,
.service-text-link:focus-visible {
	border-color: #d84ee9;
	outline: none;
}

.service-text-link:hover span,
.service-text-link:focus-visible span {
	transform: translateY(4px);
}

.services-hub__signal {
	position: absolute;
	right: clamp(20px, 9vw, 170px);
	bottom: clamp(18px, 4vh, 50px);
	display: grid;
	grid-template-columns: repeat(4, 9px);
	align-items: center;
	gap: 12px;
}

.services-hub__signal span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d84ee9;
	box-shadow: 0 0 14px rgba(216, 78, 233, .6);
	animation: service-hub-signal 2.4s ease-in-out infinite;
}

.services-hub__signal span:nth-child(2) { animation-delay: .18s; background: #7a78ff; }
.services-hub__signal span:nth-child(3) { animation-delay: .36s; background: #32b9ff; }
.services-hub__signal span:nth-child(4) { animation-delay: .54s; background: #c9efa5; }

.services-hub__signal img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	margin-left: 5px;
}

@keyframes service-hub-signal {
	0%, 100% { transform: translateY(0); opacity: .38; }
	50% { transform: translateY(-8px); opacity: 1; }
}

.services-index,
.service-capabilities {
	padding-top: clamp(110px, 14vw, 220px);
	padding-bottom: clamp(110px, 14vw, 220px);
}

.services-index__header,
.service-capabilities__header {
	display: grid;
	grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
	gap: 50px;
	align-items: start;
	margin-bottom: clamp(58px, 8vw, 112px);
}

.services-index__header > p,
.service-capabilities__header > p,
.services-method__intro > p,
.service-detail-method__lead > p,
.service-related header > p,
.services-cta > p {
	margin: 8px 0 0;
	color: #9888ff;
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.services-index__header h2,
.service-capabilities__header h2,
.services-method__intro h2,
.service-detail-method__lead h2,
.service-related header h2,
.services-cta h2 {
	margin: 0;
	font-size: clamp(3rem, 6.4vw, 7rem);
	line-height: .88;
	letter-spacing: -.055em;
	font-weight: 400;
}

.services-index__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--services-line);
	border: 1px solid var(--services-line);
}

.service-index-card {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: 44px 1fr;
	grid-template-rows: 1fr auto;
	gap: 30px;
	min-height: clamp(380px, 41vw, 610px);
	padding: clamp(30px, 4vw, 68px);
	background: linear-gradient(145deg, rgba(8, 10, 67, .98), rgba(2, 5, 45, .98));
	color: var(--services-white);
	overflow: hidden;
	transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
	transform-style: preserve-3d;
	transition: transform .18s ease-out, background .35s ease;
}

.service-index-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 25%), rgba(var(--service-accent-rgb), .22), transparent 37%);
	opacity: .25;
	transition: opacity .35s ease;
}

.service-index-card:hover::before,
.service-index-card:focus-visible::before {
	opacity: 1;
}

.service-index-card:focus-visible {
	outline: 1px solid var(--service-accent);
	outline-offset: -5px;
}

.service-index-card__number {
	color: var(--service-accent);
	font-size: .72rem;
	letter-spacing: .14em;
}

.service-index-card__copy p {
	margin: 0 0 clamp(30px, 5vw, 76px);
	color: rgba(255, 255, 255, .45);
	font-size: .65rem;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.service-index-card__copy h3 {
	margin: 0;
	max-width: 610px;
	font-size: clamp(2.4rem, 4.9vw, 6.4rem);
	line-height: .83;
	letter-spacing: -.06em;
	font-weight: 400;
	text-transform: uppercase;
}

.service-index-card__copy > span {
	display: block;
	max-width: 540px;
	margin-top: 30px;
	color: var(--services-muted);
	font-size: clamp(.86rem, 1.1vw, 1.02rem);
	line-height: 1.55;
}

.service-index-card__action {
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(var(--service-accent-rgb), .32);
	font-size: .68rem;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.service-index-card__action b {
	color: var(--service-accent);
	font-size: 1rem;
	font-weight: 400;
	transition: transform .3s ease;
}

.service-index-card:hover .service-index-card__action b,
.service-index-card:focus-visible .service-index-card__action b {
	transform: translate(4px, -4px);
}

.service-index-card__glow {
	position: absolute;
	right: -12%;
	top: -10%;
	z-index: -1;
	width: 48%;
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .24);
	border-radius: 50%;
	box-shadow: 0 0 90px rgba(var(--service-accent-rgb), .1), inset 0 0 50px rgba(var(--service-accent-rgb), .08);
	transition: transform .55s cubic-bezier(.2, .8, .2, 1), opacity .35s ease;
}

.service-index-card:hover .service-index-card__glow,
.service-index-card:focus-visible .service-index-card__glow {
	transform: scale(1.25) translate(-8%, 8%);
}

.services-method,
.service-detail-method {
	display: grid;
	grid-template-columns: minmax(300px, .8fr) minmax(440px, 1.2fr);
	gap: clamp(60px, 10vw, 180px);
	padding-top: clamp(100px, 13vw, 210px);
	padding-bottom: clamp(100px, 13vw, 210px);
	border-top: 1px solid var(--services-line);
}

.services-method__steps,
.service-detail-method__steps {
	margin: 0;
	padding: 0;
	list-style: none;
}

.services-method__steps li {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 24px;
	padding: 30px 0;
	border-bottom: 1px solid var(--services-line);
}

.services-method__steps li > span,
.service-detail-method__steps li > span {
	color: #8177d7;
	font-size: .68rem;
	letter-spacing: .14em;
}

.services-method__steps h3,
.service-detail-method__steps h3 {
	margin: 0;
	font-size: clamp(1.45rem, 2.2vw, 2.2rem);
	font-weight: 400;
}

.services-method__steps p,
.service-detail-method__steps p {
	grid-column: 2;
	margin: 10px 0 0;
	color: var(--services-muted);
	line-height: 1.55;
}

.services-cta {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 60px;
	padding-top: clamp(100px, 13vw, 210px);
	padding-bottom: clamp(100px, 13vw, 210px);
	border-top: 1px solid var(--services-line);
}

.services-cta > p {
	position: absolute;
	top: clamp(56px, 8vw, 120px);
}

.services-cta__button {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 260px;
	padding: 13px 15px 13px 28px;
	border: 1px solid rgba(216, 78, 233, .35);
	border-radius: 999px;
	background: rgba(216, 78, 233, .07);
	color: #fff;
	font-size: .72rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.services-cta__button img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.services-cta__button:hover,
.services-cta__button:focus-visible {
	border-color: #d84ee9;
	background: rgba(216, 78, 233, .13);
	transform: translateY(-3px);
	outline: none;
}

.services-cta__button:hover img,
.services-cta__button:focus-visible img {
	transform: rotate(28deg) scale(1.07);
}

/* Detail hero. */

.service-detail-hero h1 {
	color: var(--services-white);
	font-size: clamp(4.8rem, 10vw, 11.2rem);
}

.service-detail-hero__title > p {
	margin: 0 0 26px;
	color: var(--service-accent);
	font-size: .68rem;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.service-detail-hero__copy h2 {
	margin: 0 0 20px;
	font-size: clamp(1.8rem, 3vw, 3.5rem);
	line-height: 1;
	letter-spacing: -.04em;
	font-weight: 400;
}

.service-detail-hero .service-text-link {
	border-color: rgba(var(--service-accent-rgb), .5);
}

.service-detail-hero .service-text-link span {
	color: var(--service-accent);
}

.service-detail-hero__visual {
	position: relative;
	display: grid;
	place-items: center;
	width: min(100%, 1100px);
	aspect-ratio: 16 / 5.4;
	margin: clamp(70px, 10vh, 120px) auto 0;
	border-top: 1px solid rgba(var(--service-accent-rgb), .25);
	border-bottom: 1px solid rgba(var(--service-accent-rgb), .18);
	background: radial-gradient(circle at center, rgba(var(--service-accent-rgb), .13), transparent 34%);
	overflow: hidden;
}

.service-detail-hero__orbits,
.service-detail-hero__orbits i {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
}

.service-detail-hero__orbits i {
	width: clamp(220px, 28vw, 420px);
	aspect-ratio: 2 / 1;
	border: 1px solid rgba(var(--service-accent-rgb), .2);
	border-radius: 50%;
	animation: service-detail-orbit 16s linear infinite;
}

.service-detail-hero__orbits i:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); animation-duration: 20s; animation-direction: reverse; }
.service-detail-hero__orbits i:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg); animation-duration: 24s; }

@keyframes service-detail-orbit {
	to { rotate: 360deg; }
}

.service-detail-hero__number {
	position: absolute;
	left: 4%;
	font-size: clamp(7rem, 20vw, 22rem);
	line-height: 1;
	letter-spacing: -.08em;
	color: rgba(var(--service-accent-rgb), .045);
}

.service-detail-hero__node {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: clamp(86px, 10vw, 142px);
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .24);
	border-radius: 50%;
	box-shadow: 0 0 70px rgba(var(--service-accent-rgb), .18);
}

.service-detail-hero__node img {
	width: 65%;
	height: 65%;
	object-fit: contain;
	animation: service-node-float 5s ease-in-out infinite;
}

@keyframes service-node-float {
	0%, 100% { transform: translateY(0) rotate(-4deg); }
	50% { transform: translateY(-8px) rotate(6deg); }
}

.service-detail-hero__visual > p {
	position: absolute;
	right: 4%;
	bottom: 22px;
	margin: 0;
	color: rgba(255, 255, 255, .45);
	font-size: .62rem;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.service-capabilities__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--services-line);
	border: 1px solid var(--services-line);
}

.service-capability-card {
	position: relative;
	isolation: isolate;
	min-height: 340px;
	padding: clamp(28px, 3vw, 48px);
	background: linear-gradient(145deg, #080a43, #03062f);
	overflow: hidden;
	transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
	transition: transform .18s ease-out, background .3s ease;
}

.service-capability-card > span {
	color: var(--service-accent);
	font-size: .66rem;
	letter-spacing: .16em;
}

.service-capability-card h3 {
	margin: clamp(60px, 6vw, 92px) 0 16px;
	font-size: clamp(1.45rem, 2.25vw, 2.4rem);
	line-height: 1;
	letter-spacing: -.035em;
	font-weight: 400;
}

.service-capability-card p {
	margin: 0;
	color: var(--services-muted);
	font-size: .92rem;
	line-height: 1.58;
}

.service-capability-card i {
	position: absolute;
	right: -30px;
	top: -30px;
	z-index: -1;
	width: 130px;
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .2);
	border-radius: 50%;
	box-shadow: 0 0 50px rgba(var(--service-accent-rgb), .08);
	transition: transform .5s ease, background .5s ease;
}

.service-capability-card:hover i {
	transform: scale(1.45) translate(-8%, 8%);
	background: rgba(var(--service-accent-rgb), .06);
}

.service-detail-method__lead strong {
	display: block;
	max-width: 520px;
	margin-top: 38px;
	color: var(--service-accent);
	font-size: clamp(1rem, 1.5vw, 1.35rem);
	line-height: 1.5;
	font-weight: 400;
}

.service-detail-method__steps li {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 26px;
	padding: 30px 0;
	border-bottom: 1px solid var(--services-line);
}

.service-detail-method__steps p {
	grid-column: auto;
}

.service-related {
	padding-top: clamp(100px, 13vw, 190px);
	padding-bottom: clamp(100px, 13vw, 190px);
	border-top: 1px solid var(--services-line);
}

.service-related header {
	display: grid;
	grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
	gap: 50px;
	margin-bottom: 70px;
}

.service-related__grid {
	border-top: 1px solid var(--services-line);
}

.service-related__link {
	display: grid;
	grid-template-columns: 70px 1fr auto;
	align-items: center;
	gap: 28px;
	padding: 28px 0;
	border-bottom: 1px solid var(--services-line);
	color: var(--services-white);
	transition: padding .35s ease, color .25s ease, background .25s ease;
}

.service-related__link span {
	color: rgba(132, 142, 218, .7);
	font-size: .68rem;
	letter-spacing: .15em;
}

.service-related__link strong {
	font-size: clamp(1.4rem, 2.8vw, 3rem);
	font-weight: 400;
}

.service-related__link i {
	color: var(--service-accent);
	font-style: normal;
	transition: transform .3s ease;
}

.service-related__link:hover,
.service-related__link:focus-visible {
	padding-inline: 18px;
	background: rgba(var(--service-accent-rgb), .035);
	outline: none;
}

.service-related__link:hover i,
.service-related__link:focus-visible i {
	transform: translate(4px, -4px);
}

/* Scroll reveal is progressively enhanced by services-2026.js. */
.js .trinovik-services-page .service-reveal {
	opacity: 0;
	transform: translateY(28px);
	filter: blur(3px);
	transition: opacity .7s ease, transform .85s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.js .trinovik-services-page .service-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.js .trinovik-services-page [data-service-tilt].service-reveal {
	transform: perspective(900px) translateY(28px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.js .trinovik-services-page [data-service-tilt].service-reveal.is-visible {
	transform: perspective(900px) translateY(0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

@media (max-width: 1000px) {
	.services-hub__hero-grid,
	.service-detail-hero__grid {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 42px;
	}

	.services-hub__hero-copy,
	.service-detail-hero__copy {
		max-width: 680px;
	}

	.services-index__grid {
		grid-template-columns: 1fr;
	}

	.service-index-card {
		min-height: 470px;
	}

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

	.services-method,
	.service-detail-method {
		grid-template-columns: 1fr;
	}

	.services-method__intro,
	.service-detail-method__lead {
		max-width: 700px;
	}
}

@media (max-width: 680px) {
	.services-hub__hero,
	.service-detail-hero {
		min-height: auto;
		padding-top: 126px;
		padding-bottom: 82px;
	}

	.services-hub__hero h1,
	.service-detail-hero h1 {
		font-size: clamp(3.25rem, 15vw, 5.2rem);
		line-height: .82;
	}

	.services-hub__signal {
		display: none;
	}

	.services-index__header,
	.service-capabilities__header,
	.service-related header {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.services-index__header h2,
	.service-capabilities__header h2,
	.services-method__intro h2,
	.service-detail-method__lead h2,
	.service-related header h2,
	.services-cta h2 {
		font-size: clamp(2.65rem, 12vw, 4rem);
	}

	.service-index-card {
		grid-template-columns: 30px 1fr;
		gap: 18px;
		min-height: 420px;
		padding: 26px 22px;
	}

	.service-index-card__copy h3 {
		font-size: clamp(2.45rem, 12vw, 4rem);
	}

	.service-index-card__copy p {
		margin-bottom: 42px;
	}

	.service-detail-hero__visual {
		aspect-ratio: 1.5 / 1;
	}

	.service-detail-hero__visual > p {
		left: 18px;
		right: auto;
		bottom: 16px;
		max-width: 80%;
	}

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

	.service-capability-card {
		min-height: 300px;
	}

	.services-cta {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 44px;
	}

	.services-cta > p {
		position: static;
		grid-row: 1;
	}

	.services-cta h2 {
		grid-row: 2;
	}

	.services-cta__button {
		grid-row: 3;
		width: min(100%, 310px);
		justify-content: space-between;
	}

	.service-related__link {
		grid-template-columns: 38px 1fr auto;
		gap: 14px;
	}

	.service-related__link strong {
		font-size: 1.25rem;
	}
}

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

	.js .trinovik-services-page .service-reveal {
		opacity: 1;
		transform: none;
		filter: none;
	}
}

/* ============================================================
   CINEMATIC SERVICES STORY — 2026 DIRECTION
   Extends the homepage language without changing the homepage.
   ============================================================ */

.services-hub--cinematic .services-hub__hero {
	isolation: isolate;
	min-height: max(760px, 100svh);
}

.services-hub--cinematic .services-hub__hero-grid {
	position: relative;
	z-index: 3;
	grid-template-columns: minmax(0, 1.22fr) minmax(280px, .5fr);
	align-items: end;
	padding-top: clamp(48px, 7vh, 90px);
}

.services-hub--cinematic .services-hub__hero h1 {
	max-width: 1020px;
	font-size: clamp(4.1rem, 7.85vw, 9.2rem);
	line-height: .8;
}

.services-hub__hero-title {
	position: relative;
	z-index: 2;
}

.services-hub__hero-visual {
	position: absolute;
	z-index: 1;
	right: clamp(-250px, -8vw, -80px);
	bottom: 0;
	width: min(72vw, 1180px);
	aspect-ratio: 16 / 9;
	pointer-events: none;
	mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 88%, transparent 100%);
}

.services-hub__hero-visual::before {
	content: "";
	position: absolute;
	inset: 8% 4% 0 12%;
	background: radial-gradient(circle at 62% 45%, rgba(119, 90, 255, .28), transparent 36%);
	filter: blur(20px);
}

.services-hub__hero-human {
	position: absolute;
	inset: auto 0 0 auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
	opacity: .42;
	filter: saturate(.78) contrast(1.04);
}

.services-hub__hero-node {
	position: absolute;
	right: 22%;
	top: 42%;
	width: clamp(54px, 5.8vw, 92px);
	height: auto;
	filter: drop-shadow(0 0 30px rgba(216, 78, 233, .45));
	animation: services-overview-node 5.8s ease-in-out infinite;
}

.services-hub__hero-orbit {
	position: absolute;
	right: 17%;
	top: 28%;
	width: 34%;
	aspect-ratio: 1;
	border: 1px solid rgba(122, 120, 255, .18);
	border-radius: 50%;
	box-shadow: 0 0 80px rgba(122, 120, 255, .09), inset 0 0 70px rgba(216, 78, 233, .06);
	animation: services-overview-orbit 16s linear infinite;
}

.services-hub__hero-orbit::after {
	content: "";
	position: absolute;
	left: 9%;
	top: 16%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f3efff;
	box-shadow: 0 0 18px #9a66ff;
}

@keyframes services-overview-node {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
	50% { transform: translate3d(0, -12px, 0) rotate(5deg); }
}

@keyframes services-overview-orbit {
	to { transform: rotate(360deg); }
}

.services-chapters {
	position: relative;
	border-top: 1px solid var(--services-line);
}

.service-chapter {
	position: relative;
	isolation: isolate;
	min-height: max(760px, 100svh);
	display: grid;
	align-items: center;
	overflow: clip;
	border-bottom: 1px solid var(--services-line);
	background:
		radial-gradient(circle at var(--chapter-glow-x, 76%) 50%, rgba(var(--service-accent-rgb), .12), transparent 32%),
		linear-gradient(135deg, rgba(5, 8, 58, .96), rgba(1, 4, 43, .98));
}

.service-chapter--reverse {
	--chapter-glow-x: 24%;
}

.service-chapter::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(117, 127, 189, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(117, 127, 189, .05) 1px, transparent 1px);
	background-size: clamp(78px, 8vw, 150px) clamp(78px, 8vw, 150px);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, .8), transparent 88%);
}

.service-chapter--reverse::before {
	transform: scaleX(-1);
}

.service-chapter__inner {
	display: grid;
	grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
	align-items: center;
	gap: clamp(40px, 7vw, 120px);
	padding-top: clamp(110px, 12vh, 150px);
	padding-bottom: clamp(90px, 11vh, 140px);
}

.service-chapter--reverse .service-chapter__copy {
	grid-column: 2;
}

.service-chapter--reverse .service-chapter__visual {
	grid-column: 1;
	grid-row: 1;
}

.service-chapter__copy {
	position: relative;
	z-index: 4;
}

.service-chapter__meta {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(var(--service-accent-rgb), .26);
	color: rgba(255, 255, 255, .48);
	font-size: .64rem;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.service-chapter__meta span:first-child {
	color: var(--service-accent);
}

.service-chapter__copy h2 {
	margin: clamp(46px, 7vh, 82px) 0 0;
	max-width: 780px;
	font-size: clamp(4.3rem, 7.5vw, 9rem);
	line-height: .77;
	letter-spacing: -.072em;
	font-weight: 400;
	text-transform: uppercase;
}

.service-chapter__copy h3 {
	margin: clamp(34px, 5vh, 58px) 0 0;
	font-size: clamp(1.45rem, 2.2vw, 2.5rem);
	line-height: 1.05;
	letter-spacing: -.035em;
	font-weight: 400;
}

.service-chapter__copy > p {
	max-width: 660px;
	margin: 18px 0 0;
	color: var(--services-muted);
	font-size: clamp(.95rem, 1.12vw, 1.08rem);
	line-height: 1.62;
}

.service-chapter__capabilities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.service-chapter__capabilities li {
	padding: 8px 13px 7px;
	border: 1px solid rgba(var(--service-accent-rgb), .28);
	border-radius: 999px;
	color: rgba(240, 239, 249, .66);
	font-size: .62rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.service-chapter__cta {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	min-width: min(100%, 330px);
	margin-top: 36px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(var(--service-accent-rgb), .42);
	color: #fff;
	font-size: .68rem;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.service-chapter__cta img {
	width: 32px;
	height: 32px;
	margin-left: auto;
	object-fit: contain;
	filter: drop-shadow(0 0 12px rgba(var(--service-accent-rgb), .34));
	transition: transform .45s cubic-bezier(.2, .8, .2, 1), filter .3s ease;
}

.service-chapter__cta:hover,
.service-chapter__cta:focus-visible {
	border-color: var(--service-accent);
	outline: none;
}

.service-chapter__cta:hover img,
.service-chapter__cta:focus-visible img {
	transform: rotate(24deg) scale(1.08);
	filter: drop-shadow(0 0 18px rgba(var(--service-accent-rgb), .65));
}

.service-chapter__visual {
	position: relative;
	min-height: clamp(520px, 66vh, 760px);
	transform: translate3d(0, calc(var(--chapter-progress, 0) * -22px), 0);
	will-change: transform;
}

.service-chapter__image-frame {
	position: absolute;
	inset: 0 -14% 0 -8%;
	mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.service-chapter--reverse .service-chapter__image-frame {
	transform: scaleX(-1);
}

.service-chapter--reverse .service-chapter__image-frame img {
	transform: scaleX(-1);
}

.service-chapter__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	filter: saturate(.92) contrast(1.05);
}

.service-chapter__halo {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 62%;
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .18);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 90px rgba(var(--service-accent-rgb), .1), inset 0 0 70px rgba(var(--service-accent-rgb), .08);
	animation: service-chapter-halo 8s ease-in-out infinite;
}

.service-chapter__index {
	position: absolute;
	right: -2%;
	top: 2%;
	z-index: -1;
	color: rgba(var(--service-accent-rgb), .06);
	font-size: clamp(12rem, 24vw, 30rem);
	line-height: 1;
	letter-spacing: -.1em;
}

.service-chapter--reverse .service-chapter__index {
	right: auto;
	left: -2%;
}

@keyframes service-chapter-halo {
	0%, 100% { transform: translate(-50%, -50%) scale(.94); opacity: .55; }
	50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

.services-connected {
	position: relative;
	display: grid;
	grid-template-columns: minmax(340px, .7fr) minmax(540px, 1.3fr);
	align-items: center;
	gap: clamp(70px, 10vw, 180px);
	min-height: max(700px, 90svh);
	padding-top: clamp(110px, 14vw, 210px);
	padding-bottom: clamp(110px, 14vw, 210px);
}

.services-connected__copy > p,
.service-section-heading > p,
.services-cta__copy > p {
	margin: 0 0 30px;
	color: #9888ff;
	font-size: .64rem;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.services-connected__copy h2,
.service-section-heading h2,
.services-cta__copy h2 {
	margin: 0;
	font-size: clamp(3.5rem, 7.1vw, 8rem);
	line-height: .84;
	letter-spacing: -.06em;
	font-weight: 400;
}

.services-connected__copy h2 em,
.service-section-heading h2 em {
	color: #d84ee9;
	font-style: italic;
	font-weight: 350;
}

.services-connected__copy > span,
.services-cta__copy > span {
	display: block;
	max-width: 590px;
	margin-top: 32px;
	color: var(--services-muted);
	font-size: clamp(.95rem, 1.2vw, 1.15rem);
	line-height: 1.6;
}

.services-connected__system {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
	align-items: center;
	gap: 15px;
	min-height: 360px;
	padding: 60px 36px;
	border-top: 1px solid var(--services-line);
	border-bottom: 1px solid var(--services-line);
}

.services-connected__system span {
	color: rgba(255, 255, 255, .7);
	font-size: .62rem;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.services-connected__system i {
	height: 1px;
	background: linear-gradient(90deg, rgba(122, 120, 255, .24), rgba(216, 78, 233, .54));
}

.services-connected__system img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 104px;
	height: 104px;
	object-fit: contain;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 38px rgba(216, 78, 233, .38));
}

/* Deeper service-detail storytelling. */

.service-detail-hero__meta {
	justify-content: space-between;
}

.service-detail-hero__visual--human {
	aspect-ratio: 16 / 7.2;
	min-height: 480px;
	background:
		radial-gradient(circle at 70% 48%, rgba(var(--service-accent-rgb), .2), transparent 31%),
		linear-gradient(90deg, rgba(0, 4, 53, .96), rgba(3, 6, 48, .32));
}

.service-detail-hero__human {
	position: absolute;
	inset: 0 0 0 auto;
	width: min(100%, 1120px);
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
	mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.service-detail-hero__floating-node {
	position: relative;
	z-index: 3;
	width: clamp(70px, 8vw, 120px);
	height: auto;
	filter: drop-shadow(0 0 30px rgba(var(--service-accent-rgb), .5));
	animation: service-node-float 5s ease-in-out infinite;
}

.service-section-heading {
	display: grid;
	grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
	gap: 50px;
	align-items: start;
	margin-bottom: clamp(58px, 8vw, 112px);
}

.service-section-heading > p {
	margin-top: 9px;
}

.service-problems,
.service-use-cases,
.service-proof {
	padding-top: clamp(110px, 14vw, 220px);
	padding-bottom: clamp(110px, 14vw, 220px);
	border-top: 1px solid var(--services-line);
}

.service-problems__list {
	border-top: 1px solid var(--services-line);
}

.service-problem {
	display: grid;
	grid-template-columns: 68px minmax(260px, .72fr) minmax(300px, 1fr);
	align-items: start;
	gap: clamp(28px, 5vw, 80px);
	padding: clamp(28px, 4vw, 56px) 0;
	border-bottom: 1px solid var(--services-line);
}

.service-problem > span,
.service-use-case > span,
.service-proof__item > span {
	color: var(--service-accent);
	font-size: .64rem;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.service-problem h3,
.service-use-case h3,
.service-proof__item h3 {
	margin: 0;
	font-size: clamp(1.55rem, 2.75vw, 3.2rem);
	line-height: 1;
	letter-spacing: -.04em;
	font-weight: 400;
}

.service-problem p,
.service-use-case p {
	margin: 0;
	max-width: 660px;
	color: var(--services-muted);
	line-height: 1.62;
}

.service-capabilities__header h2 em,
.service-detail-method__lead h2 em {
	color: var(--service-accent);
	font-style: italic;
	font-weight: 350;
}

.service-use-cases__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--services-line);
	background: var(--services-line);
}

.service-use-case {
	min-height: 340px;
	padding: clamp(30px, 4vw, 60px);
	background:
		radial-gradient(circle at var(--pointer-x, 84%) var(--pointer-y, 12%), rgba(var(--service-accent-rgb), .13), transparent 32%),
		linear-gradient(145deg, #080a43, #03062f);
	transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.service-use-case h3 {
	margin-top: clamp(76px, 8vw, 120px);
}

.service-use-case p {
	margin-top: 18px;
}

.service-proof__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(26px, 4vw, 58px);
}

.service-proof__grid:has(.service-proof__item:only-child) {
	grid-template-columns: minmax(0, .72fr);
}

.service-proof__item {
	color: #fff;
}

.service-proof__media {
	position: relative;
	aspect-ratio: 16 / 10;
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid var(--services-line);
}

.service-proof__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(2, 4, 42, .5));
}

.service-proof__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.service-proof__item h3 {
	margin-top: 16px;
}

.service-proof__item:hover .service-proof__media img,
.service-proof__item:focus-visible .service-proof__media img {
	transform: scale(1.035);
	filter: saturate(1.08);
}

.service-proof__item:focus-visible {
	outline: 1px solid var(--service-accent);
	outline-offset: 8px;
}

.service-related__link img {
	width: 34px;
	height: 34px;
	object-fit: contain;
	filter: drop-shadow(0 0 12px rgba(var(--service-accent-rgb), .28));
	transition: transform .4s cubic-bezier(.2, .8, .2, 1), filter .3s ease;
}

.service-related__link:hover img,
.service-related__link:focus-visible img {
	transform: rotate(22deg) scale(1.06);
	filter: drop-shadow(0 0 17px rgba(var(--service-accent-rgb), .55));
}

.services-cta {
	grid-template-columns: minmax(0, 1fr) auto;
}

.services-cta__copy > p {
	margin-bottom: 28px;
}

.services-cta__copy h2 em {
	color: #c9efa5;
	font-style: italic;
	font-weight: 350;
}

@media (max-width: 1120px) {
	.services-hub__hero-visual {
		right: -26%;
		width: 92vw;
		opacity: .76;
	}

	.service-chapter__inner {
		grid-template-columns: minmax(360px, .86fr) minmax(430px, 1.14fr);
		gap: 30px;
	}

	.service-chapter__copy h2 {
		font-size: clamp(4rem, 7.3vw, 6.8rem);
	}

	.services-connected {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.services-hub--cinematic .services-hub__hero {
		min-height: 900px;
	}

	.services-hub--cinematic .services-hub__hero-grid,
	.service-chapter__inner {
		grid-template-columns: 1fr;
	}

	.services-hub__hero-visual {
		right: -18%;
		bottom: 0;
		width: 118vw;
		opacity: .58;
	}

	.services-hub--cinematic .services-hub__hero-copy {
		max-width: 580px;
	}

	.service-chapter {
		min-height: auto;
	}

	.service-chapter__inner {
		padding-top: 110px;
		padding-bottom: 100px;
	}

	.service-chapter--reverse .service-chapter__copy,
	.service-chapter--reverse .service-chapter__visual {
		grid-column: 1;
		grid-row: auto;
	}

	.service-chapter__visual {
		min-height: min(78vw, 620px);
		order: -1;
	}

	.service-chapter--reverse .service-chapter__visual {
		order: -1;
	}

	.service-chapter--reverse .service-chapter__image-frame,
	.service-chapter--reverse .service-chapter__image-frame img {
		transform: none;
	}

	.services-connected__system {
		min-height: 300px;
	}

	.service-detail-hero__visual--human {
		min-height: 420px;
	}

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

	.service-problem p {
		grid-column: 2;
	}
}

@media (max-width: 680px) {
	.services-hub--cinematic .services-hub__hero {
		min-height: 820px;
		padding-top: 124px;
	}

	.services-hub--cinematic .services-hub__hero h1 {
		font-size: clamp(3.1rem, 14.6vw, 5rem);
	}

	.services-hub__hero-visual {
		right: -42%;
		width: 154vw;
		opacity: .47;
	}

	.service-chapter__inner {
		width: min(calc(100% - 36px), var(--container));
		padding-top: 80px;
		padding-bottom: 78px;
	}

	.service-chapter__visual {
		min-height: 92vw;
	}

	.service-chapter__image-frame {
		inset-inline: -22%;
	}

	.service-chapter__copy h2 {
		margin-top: 34px;
		font-size: clamp(3.4rem, 17vw, 5.4rem);
	}

	.service-chapter__meta {
		font-size: .58rem;
	}

	.service-chapter__capabilities {
		gap: 6px;
	}

	.service-chapter__capabilities li {
		font-size: .56rem;
		padding: 7px 10px 6px;
	}

	.services-connected {
		width: min(calc(100% - 36px), var(--container));
		min-height: auto;
	}

	.services-connected__copy h2,
	.service-section-heading h2,
	.services-cta__copy h2 {
		font-size: clamp(2.8rem, 13vw, 4.4rem);
	}

	.services-connected__system {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		min-height: 390px;
		padding: 32px 20px;
	}

	.services-connected__system i {
		width: 1px;
		height: 20px;
		margin-left: 8px;
	}

	.services-connected__system img {
		left: auto;
		right: 10px;
		top: 50%;
		width: 86px;
		height: 86px;
		transform: translateY(-50%);
	}

	.service-detail-hero__visual--human {
		min-height: 360px;
		aspect-ratio: auto;
	}

	.service-detail-hero__human {
		width: 145%;
		right: -34%;
		mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
	}

	.service-detail-hero__floating-node {
		width: 70px;
	}

	.service-section-heading {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.service-problem {
		grid-template-columns: 34px 1fr;
		gap: 18px;
	}

	.service-use-cases__grid,
	.service-proof__grid,
	.service-proof__grid:has(.service-proof__item:only-child) {
		grid-template-columns: 1fr;
	}

	.service-use-case {
		min-height: 300px;
		padding: 28px 22px;
	}

	.service-proof__media {
		aspect-ratio: 4 / 3;
	}

	.services-cta {
		grid-template-columns: 1fr;
		gap: 42px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-chapter__visual {
		transform: none !important;
	}
}

/* ============================================================
   SERVICES OVERVIEW — CONNECTED CAPABILITY SYSTEM
   The overview intentionally uses no service photography. It is a
   distinct systems-led experience; human imagery remains on detail pages.
   ============================================================ */

.services-hub__core {
	position: absolute;
	right: clamp(-190px, -7vw, -70px);
	bottom: clamp(-230px, -12vw, -110px);
	z-index: 1;
	width: min(65vw, 980px);
	aspect-ratio: 1;
	pointer-events: none;
	filter: drop-shadow(0 0 80px rgba(122, 120, 255, .12));
}

.services-hub__core::before,
.services-hub__core::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 38%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.services-hub__core::before {
	width: 58%;
	aspect-ratio: 1;
	border: 1px solid rgba(122, 120, 255, .2);
	background:
		linear-gradient(rgba(122, 120, 255, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(122, 120, 255, .045) 1px, transparent 1px),
		radial-gradient(circle at 50% 50%, rgba(216, 78, 233, .16), transparent 62%);
	background-size: 42px 42px, 42px 42px, auto;
	box-shadow: 0 0 120px rgba(91, 74, 255, .1), inset 0 0 80px rgba(216, 78, 233, .06);
}

.services-hub__core::after {
	width: 30%;
	aspect-ratio: 1;
	border: 1px solid rgba(216, 78, 233, .28);
	box-shadow: 0 0 70px rgba(216, 78, 233, .12), inset 0 0 44px rgba(122, 120, 255, .1);
}

.services-hub__core-orbits,
.services-hub__core-orbits i {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(126, 139, 203, .16);
	border-radius: 50%;
}

.services-hub__core-orbits {
	inset: 12%;
	animation: services-core-rotate 28s linear infinite;
}

.services-hub__core-orbits i:nth-child(1) {
	inset: 12%;
	transform: rotateX(66deg) rotateZ(24deg);
}

.services-hub__core-orbits i:nth-child(2) {
	inset: 22%;
	transform: rotateY(66deg) rotateZ(-18deg);
}

.services-hub__core-orbits i:nth-child(3) {
	inset: 35%;
	border-color: rgba(216, 78, 233, .26);
}

.services-hub__core-node {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: clamp(92px, 10vw, 148px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 50%;
	background: radial-gradient(circle at 34% 28%, #20256f, #07083f 64%, #03062d);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 24px rgba(122, 120, 255, .03), 0 0 72px rgba(216, 78, 233, .22);
}

.services-hub__core-node img {
	width: 64%;
	height: 64%;
	object-fit: contain;
	animation: services-core-node 6s ease-in-out infinite;
}

.services-hub__core-label {
	position: absolute;
	z-index: 4;
	padding: 9px 14px 8px;
	border: 1px solid rgba(126, 139, 203, .24);
	border-radius: 999px;
	background: rgba(4, 6, 51, .76);
	color: rgba(255, 255, 255, .62);
	font-size: .6rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.services-hub__core-label::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-right: 9px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 12px currentColor;
}

.services-hub__core-label--ai { left: 17%; top: 29%; color: #32b9ff; }
.services-hub__core-label--brand { right: 12%; top: 32%; color: #d84ee9; }
.services-hub__core-label--technology { left: 11%; bottom: 25%; color: #7a78ff; }
.services-hub__core-label--growth { right: 15%; bottom: 20%; color: #c9efa5; }

@keyframes services-core-rotate {
	to { transform: rotate(360deg); }
}

@keyframes services-core-node {
	0%, 100% { transform: rotate(-3deg) scale(.98); }
	50% { transform: rotate(6deg) scale(1.04); }
}

.service-chapter__signals {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 34px 0 0;
	padding: 0;
	border-top: 1px solid rgba(var(--service-accent-rgb), .23);
	border-bottom: 1px solid rgba(var(--service-accent-rgb), .23);
	list-style: none;
}

.service-chapter__signals li {
	min-height: 88px;
	padding: 18px 15px 17px 0;
	color: rgba(240, 239, 249, .7);
	font-size: .66rem;
	line-height: 1.45;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.service-chapter__signals li + li {
	padding-left: 15px;
	border-left: 1px solid rgba(var(--service-accent-rgb), .18);
}

.service-chapter__signals span {
	display: block;
	margin-bottom: 11px;
	color: var(--service-accent);
	font-size: .56rem;
	letter-spacing: .15em;
}

.service-system {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(92%, 700px);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 70px rgba(var(--service-accent-rgb), .1));
}

.service-system::before,
.service-system::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	pointer-events: none;
}

.service-system::before {
	width: 78%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(var(--service-accent-rgb), .38), transparent);
	transform: translate(-50%, -50%) rotate(45deg);
	box-shadow: 0 0 16px rgba(var(--service-accent-rgb), .18);
}

.service-system::after {
	width: 78%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(var(--service-accent-rgb), .38), transparent);
	transform: translate(-50%, -50%) rotate(-45deg);
	box-shadow: 0 0 16px rgba(var(--service-accent-rgb), .18);
}

.service-system__plane {
	position: absolute;
	inset: 10%;
	border: 1px solid rgba(var(--service-accent-rgb), .18);
	border-radius: 31%;
	background:
		linear-gradient(rgba(var(--service-accent-rgb), .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--service-accent-rgb), .04) 1px, transparent 1px),
		radial-gradient(circle at 50% 50%, rgba(var(--service-accent-rgb), .11), transparent 61%);
	background-size: 42px 42px, 42px 42px, auto;
	transform: rotate(45deg);
	box-shadow: inset 0 0 80px rgba(var(--service-accent-rgb), .06), 0 0 60px rgba(var(--service-accent-rgb), .05);
}

.service-system__orbit {
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid rgba(var(--service-accent-rgb), .2);
	border-radius: 50%;
}

.service-system__orbit--one {
	width: 88%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%) rotateX(68deg) rotateZ(12deg);
	animation: service-system-orbit-one 18s linear infinite;
}

.service-system__orbit--two {
	width: 68%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%) rotateY(68deg) rotateZ(-24deg);
	animation: service-system-orbit-two 14s linear infinite reverse;
}

.service-system__core {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 5;
	display: grid;
	place-items: center;
	width: 22%;
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .35);
	border-radius: 50%;
	background: radial-gradient(circle at 34% 28%, rgba(var(--service-accent-rgb), .24), #090a47 62%, #03062d);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 20px rgba(var(--service-accent-rgb), .025), 0 0 70px rgba(var(--service-accent-rgb), .22);
}

.service-system__core img {
	width: 62%;
	height: 62%;
	object-fit: contain;
	animation: service-system-core 6s ease-in-out infinite;
}

.service-system__modules {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.service-system__modules i {
	position: absolute;
	display: block;
	width: 26%;
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .32);
	background: rgba(8, 10, 66, .7);
	box-shadow: inset 0 0 36px rgba(var(--service-accent-rgb), .08), 0 0 35px rgba(var(--service-accent-rgb), .08);
	backdrop-filter: blur(8px);
}

.service-system__modules i:nth-child(1) { left: 7%; top: 12%; }
.service-system__modules i:nth-child(2) { right: 7%; top: 12%; }
.service-system__modules i:nth-child(3) { left: 7%; bottom: 12%; }
.service-system__modules i:nth-child(4) { right: 7%; bottom: 12%; }

.service-system__modules i::before,
.service-system__modules i::after {
	content: "";
	position: absolute;
}

.service-system__pulse {
	position: absolute;
	left: 10%;
	top: 49%;
	z-index: 6;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--service-accent);
	box-shadow: 0 0 18px var(--service-accent), 0 0 0 9px rgba(var(--service-accent-rgb), .08);
	animation: service-system-pulse 5s ease-in-out infinite;
}

/* AI: connected decision nodes. */
.service-system--ai-automation .service-system__modules i {
	border-radius: 50%;
	background:
		radial-gradient(circle at 32% 34%, var(--service-accent) 0 3px, transparent 4px),
		radial-gradient(circle at 68% 34%, rgba(255, 255, 255, .65) 0 2px, transparent 3px),
		radial-gradient(circle at 50% 68%, var(--service-accent) 0 3px, transparent 4px),
		rgba(8, 10, 66, .74);
}

.service-system--ai-automation .service-system__modules i::before,
.service-system--ai-automation .service-system__modules i::after {
	left: 30%;
	top: 50%;
	width: 42%;
	height: 1px;
	background: rgba(var(--service-accent-rgb), .46);
	transform: rotate(28deg);
}

.service-system--ai-automation .service-system__modules i::after {
	transform: rotate(-28deg);
}

/* Brand: flexible identity tiles. */
.service-system--brand-content .service-system__plane {
	border-radius: 22%;
	background: radial-gradient(circle at 50% 50%, rgba(var(--service-accent-rgb), .16), transparent 64%);
}

.service-system--brand-content .service-system__modules i {
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(var(--service-accent-rgb), .23), rgba(8, 10, 66, .82) 62%);
}

.service-system--brand-content .service-system__modules i::before {
	inset: 18%;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 18px;
}

.service-system--brand-content .service-system__modules i::after {
	left: 20%;
	right: 20%;
	bottom: 22%;
	height: 2px;
	background: linear-gradient(90deg, var(--service-accent) 0 38%, rgba(255, 255, 255, .28) 38% 100%);
}

/* Creative Technology: interface frames and product surfaces. */
.service-system--creative-technology .service-system__modules i {
	aspect-ratio: 1.35;
	border-radius: 10px;
	background:
		linear-gradient(rgba(var(--service-accent-rgb), .12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--service-accent-rgb), .12) 1px, transparent 1px),
		rgba(8, 10, 66, .78);
	background-size: 18px 18px;
}

.service-system--creative-technology .service-system__modules i::before {
	left: 0;
	right: 0;
	top: 0;
	height: 14%;
	border-bottom: 1px solid rgba(var(--service-accent-rgb), .32);
	background: radial-gradient(circle at 9% 50%, var(--service-accent) 0 2px, transparent 3px);
}

.service-system--creative-technology .service-system__modules i::after {
	left: 18%;
	top: 35%;
	width: 54%;
	height: 34%;
	border: 1px solid rgba(255, 255, 255, .2);
	background: linear-gradient(135deg, rgba(var(--service-accent-rgb), .18), transparent);
}

/* Growth: four rising signals around a shared measurement core. */
.service-system--growth-performance .service-system__modules i {
	top: auto;
	bottom: 16%;
	width: 13%;
	border-radius: 10px 10px 2px 2px;
	background: linear-gradient(180deg, rgba(var(--service-accent-rgb), .74), rgba(var(--service-accent-rgb), .08));
	transform-origin: bottom;
	animation: service-system-bar 4.8s ease-in-out infinite;
}

.service-system--growth-performance .service-system__modules i:nth-child(1) { left: 12%; height: 25%; }
.service-system--growth-performance .service-system__modules i:nth-child(2) { left: 31%; height: 42%; animation-delay: -.7s; }
.service-system--growth-performance .service-system__modules i:nth-child(3) { left: 56%; height: 58%; animation-delay: -1.4s; }
.service-system--growth-performance .service-system__modules i:nth-child(4) { right: 10%; height: 74%; animation-delay: -2.1s; }

.service-system--growth-performance .service-system__modules i::before {
	left: 50%;
	top: -7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--service-accent);
	transform: translateX(-50%);
	box-shadow: 0 0 14px var(--service-accent);
}

@keyframes service-system-orbit-one {
	to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(372deg); }
}

@keyframes service-system-orbit-two {
	to { transform: translate(-50%, -50%) rotateY(68deg) rotateZ(336deg); }
}

@keyframes service-system-core {
	0%, 100% { transform: rotate(-4deg) scale(.98); }
	50% { transform: rotate(6deg) scale(1.04); }
}

@keyframes service-system-pulse {
	0%, 100% { transform: translate(0, -34px); opacity: .4; }
	50% { transform: translate(0, 34px); opacity: 1; }
}

@keyframes service-system-bar {
	0%, 100% { transform: scaleY(.92); opacity: .72; }
	50% { transform: scaleY(1.04); opacity: 1; }
}

@media (max-width: 1120px) {
	.services-hub__core {
		right: -20%;
		width: 78vw;
		opacity: .72;
	}

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

	.service-chapter__signals li {
		min-height: auto;
		padding: 13px 0;
	}

	.service-chapter__signals li + li {
		padding-left: 0;
		border-top: 1px solid rgba(var(--service-accent-rgb), .14);
		border-left: 0;
	}

	.service-chapter__signals span {
		display: inline;
		margin-right: 13px;
	}
}

@media (max-width: 860px) {
	.services-hub__core {
		right: -32%;
		bottom: -13%;
		width: 112vw;
		opacity: .56;
	}

	.service-system {
		width: min(88vw, 620px);
	}

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

	.service-chapter__signals li {
		padding: 16px 12px 15px 0;
	}

	.service-chapter__signals li + li {
		padding-left: 12px;
		border-top: 0;
		border-left: 1px solid rgba(var(--service-accent-rgb), .18);
	}

	.service-chapter__signals span {
		display: block;
		margin-right: 0;
	}
}

@media (max-width: 680px) {
	.services-hub__core {
		right: -65%;
		bottom: -4%;
		width: 160vw;
		opacity: .43;
	}

	.services-hub__core-label {
		font-size: .5rem;
		padding: 7px 10px 6px;
	}

	.service-system {
		width: 108vw;
	}

	.service-system__modules i {
		width: 24%;
	}

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

	.service-chapter__signals li,
	.service-chapter__signals li + li {
		padding: 12px 0;
		border-top: 1px solid rgba(var(--service-accent-rgb), .14);
		border-left: 0;
	}

	.service-chapter__signals li:first-child {
		border-top: 0;
	}

	.service-chapter__signals span {
		display: inline;
		margin-right: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.services-hub__core-orbits,
	.services-hub__core-node img,
	.service-system__orbit,
	.service-system__core img,
	.service-system__pulse,
	.service-system--growth-performance .service-system__modules i {
		animation: none !important;
	}
}

/* ============================================================
   SERVICES STORYTELLING — PROBLEM → TRANSFORMATION → RESULT
   ============================================================ */

/* The approved hero wording remains, but the composition now resolves lower
   in the viewport so it does not repeat the homepage hero position. */
.services-hub--cinematic .services-hub__hero {
	min-height: max(820px, 108svh);
}

.services-hub--cinematic .services-hub__hero-grid {
	min-height: calc(100svh - clamp(190px, 21vh, 250px));
	align-items: end;
	padding-top: 0;
}

.services-hub--cinematic .services-hub__hero-title,
.services-hub--cinematic .services-hub__hero-copy {
	align-self: end;
	padding-bottom: clamp(76px, 10vh, 130px);
}

.services-hub--cinematic .services-hub__hero h1 {
	font-size: clamp(4rem, 7.4vw, 8.5rem);
}

.services-hub__core {
	right: clamp(-150px, -4vw, -50px);
	top: clamp(90px, 10vh, 140px);
	bottom: auto;
	width: min(54vw, 820px);
	opacity: .68;
}

.services-chapters {
	background: #020432;
}

.service-story {
	--story-progress: 0;
	--story-phase-progress: 0;
	position: relative;
	isolation: isolate;
	border-bottom: 1px solid var(--services-line);
	background:
		radial-gradient(circle at 78% 50%, rgba(var(--service-accent-rgb), .12), transparent 31%),
		linear-gradient(135deg, #05083c, #01032c 72%);
}

.service-story--reverse {
	background:
		radial-gradient(circle at 22% 50%, rgba(var(--service-accent-rgb), .12), transparent 31%),
		linear-gradient(225deg, #05083c, #01032c 72%);
}

.service-story::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(117, 127, 189, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(117, 127, 189, .045) 1px, transparent 1px);
	background-size: clamp(78px, 8vw, 150px) clamp(78px, 8vw, 150px);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, .78), transparent 92%);
}

.service-story--reverse::before {
	transform: scaleX(-1);
}

.service-story__sticky {
	position: relative;
	padding-top: clamp(110px, 12vh, 150px);
	padding-bottom: clamp(90px, 11vh, 140px);
}

.service-story__inner {
	display: grid;
	grid-template-columns: minmax(420px, .88fr) minmax(520px, 1.12fr);
	align-items: center;
	gap: clamp(40px, 7vw, 120px);
}

.service-story--reverse .service-story__copy {
	grid-column: 2;
}

.service-story--reverse .service-story__visual {
	grid-column: 1;
	grid-row: 1;
}

.service-story__copy {
	position: relative;
	z-index: 5;
	min-width: 0;
}

.service-story__header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding-bottom: 17px;
	border-bottom: 1px solid rgba(var(--service-accent-rgb), .28);
}

.service-story__header > span:first-child {
	color: var(--service-accent);
	font-size: .62rem;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.service-story__header h2 {
	margin: 0;
	color: rgba(255, 255, 255, .68);
	font-size: .72rem;
	line-height: 1.2;
	letter-spacing: .16em;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
}

.service-story__stage-count {
	display: flex;
	align-items: center;
	gap: 6px;
}

.service-story__stage-count i {
	display: block;
	width: 17px;
	height: 2px;
	background: rgba(255, 255, 255, .16);
	transition: width .5s cubic-bezier(.2, .8, .2, 1), background-color .35s ease, box-shadow .35s ease;
}

.service-story[data-story-stage="1"] .service-story__stage-count i:nth-child(1),
.service-story[data-story-stage="2"] .service-story__stage-count i:nth-child(2),
.service-story[data-story-stage="3"] .service-story__stage-count i:nth-child(3) {
	width: 34px;
	background: var(--service-accent);
	box-shadow: 0 0 12px rgba(var(--service-accent-rgb), .5);
}

.service-story__stages {
	display: grid;
	gap: clamp(52px, 7vw, 90px);
	padding-top: clamp(48px, 7vh, 82px);
}

.service-story__stage {
	min-width: 0;
}

.service-story__stage > p {
	margin: 0 0 22px;
	color: var(--service-accent);
	font-size: .62rem;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.service-story__stage h3 {
	margin: 0;
	max-width: 820px;
	font-size: clamp(3.6rem, 6.5vw, 7.5rem);
	line-height: .82;
	letter-spacing: -.065em;
	font-weight: 400;
	text-transform: uppercase;
}

.service-story__stage--transformation h3 {
	color: var(--service-accent);
	font-style: italic;
}

.service-story__stage--transformation > span {
	display: block;
	max-width: 610px;
	margin-top: 30px;
	color: var(--services-muted);
	font-size: clamp(.96rem, 1.15vw, 1.12rem);
	line-height: 1.65;
}

.service-story__stage--problem ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.service-story__stage--problem li {
	padding: 8px 13px 7px;
	border: 1px solid rgba(var(--service-accent-rgb), .3);
	border-radius: 999px;
	color: rgba(242, 240, 250, .68);
	font-size: .6rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.service-story__stage--result h3 span {
	display: block;
}

.service-story__cta {
	display: grid;
	grid-template-columns: auto minmax(48px, 1fr) auto;
	align-items: center;
	gap: 14px;
	width: min(100%, 540px);
	margin-top: clamp(42px, 6vh, 72px);
	color: rgba(255, 255, 255, .82);
	font-size: .67rem;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.service-story__cta i {
	display: block;
	height: 1px;
	background: linear-gradient(90deg, rgba(var(--service-accent-rgb), .42), var(--service-accent));
	transform-origin: left;
	transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
}

.service-story__cta b {
	color: var(--service-accent);
	font-size: 1.05rem;
	font-weight: 400;
	transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.service-story__cta:hover,
.service-story__cta:focus-visible {
	color: #fff;
	outline: none;
}

.service-story__cta:hover i,
.service-story__cta:focus-visible i {
	transform: scaleX(1.045);
	box-shadow: 0 0 8px rgba(var(--service-accent-rgb), .22);
}

.service-story__cta:hover b,
.service-story__cta:focus-visible b {
	transform: translateX(7px);
}

.service-story__visual {
	position: relative;
	min-height: clamp(520px, 68vh, 760px);
	pointer-events: none;
	transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
}

.service-story.is-cta-active .service-story__visual {
	transform: scale(1.012);
	filter: brightness(1.035);
}

.service-story__visual::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 72%;
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .15);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 100px rgba(var(--service-accent-rgb), .08), inset 0 0 76px rgba(var(--service-accent-rgb), .05);
}

.service-story__visual-index {
	position: absolute;
	right: -4%;
	top: 0;
	z-index: -1;
	color: rgba(var(--service-accent-rgb), .055);
	font-size: clamp(15rem, 25vw, 30rem);
	line-height: .8;
	letter-spacing: -.1em;
}

.service-story--reverse .service-story__visual-index {
	right: auto;
	left: -4%;
}

/* Progressive enhancement: without JavaScript all three stages remain in
   normal document flow. With JavaScript, the chapter becomes a sticky scene. */
.services-story-ready .service-story {
	height: max(2200px, 330svh);
}

.services-story-ready .service-story__sticky {
	position: sticky;
	top: 0;
	display: grid;
	align-items: center;
	height: 100svh;
	min-height: 680px;
	padding: 0;
	overflow: hidden;
}

.services-story-ready .service-story__inner {
	height: 100%;
}

.services-story-ready .service-story__stages {
	position: relative;
	min-height: clamp(400px, 53vh, 560px);
	padding-top: clamp(48px, 7vh, 82px);
}

.services-story-ready .service-story__stage {
	position: absolute;
	inset: clamp(48px, 7vh, 82px) 0 auto;
	opacity: 0;
	transform: translate3d(0, 34px, 0);
	pointer-events: none;
	transition:
		opacity .62s ease,
		transform .78s cubic-bezier(.2, .8, .2, 1);
}

.services-story-ready .service-story[data-story-stage="1"] .service-story__stage--problem,
.services-story-ready .service-story[data-story-stage="2"] .service-story__stage--transformation,
.services-story-ready .service-story[data-story-stage="3"] .service-story__stage--result {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
	transition-delay: .09s, .09s;
}

/* AI & Automation: fragmented workflow nodes become a connected system. */
.story-ai-network {
	position: absolute;
	inset: 8%;
	transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.story-ai-network::before,
.story-ai-network::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid rgba(var(--service-accent-rgb), .15);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(.78);
	opacity: .2;
	transition: transform 1.1s cubic-bezier(.2, .8, .2, 1), opacity .7s ease, box-shadow .7s ease;
}

.story-ai-network::before { width: 76%; aspect-ratio: 1; }
.story-ai-network::after { width: 46%; aspect-ratio: 1; }

.story-ai-network > i {
	position: absolute;
	z-index: 3;
	width: clamp(30px, 4.5vw, 62px);
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .5);
	border-radius: 50%;
	background: radial-gradient(circle, var(--service-accent) 0 5%, rgba(var(--service-accent-rgb), .2) 7% 23%, #070943 25%);
	box-shadow: 0 0 22px rgba(var(--service-accent-rgb), .14);
	transition: left 1s cubic-bezier(.2, .8, .2, 1), right 1s cubic-bezier(.2, .8, .2, 1), top 1s cubic-bezier(.2, .8, .2, 1), bottom 1s cubic-bezier(.2, .8, .2, 1), transform .8s ease, box-shadow .6s ease;
}

.story-ai-network > i:nth-of-type(1) { left: 3%; top: 12%; }
.story-ai-network > i:nth-of-type(2) { right: 4%; top: 7%; }
.story-ai-network > i:nth-of-type(3) { left: 17%; bottom: 4%; }
.story-ai-network > i:nth-of-type(4) { right: 7%; bottom: 17%; }
.story-ai-network > i:nth-of-type(5) { left: 42%; top: 2%; }
.story-ai-network > i:nth-of-type(6) { left: 6%; top: 49%; }
.story-ai-network > i:nth-of-type(7) { right: 32%; bottom: 2%; }

.story-ai-network__route {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 74%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(var(--service-accent-rgb), .7), transparent);
	transform-origin: center;
	opacity: .08;
	transition: opacity .7s ease, transform 1s cubic-bezier(.2, .8, .2, 1), box-shadow .7s ease;
}

.story-ai-network__route--one { transform: translate(-50%, -50%) rotate(16deg) scaleX(.24); }
.story-ai-network__route--two { transform: translate(-50%, -50%) rotate(-42deg) scaleX(.18); }
.story-ai-network__route--three { transform: translate(-50%, -50%) rotate(78deg) scaleX(.28); }

.story-ai-network strong {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	display: grid;
	place-items: center;
	width: clamp(96px, 11vw, 150px);
	aspect-ratio: 1;
	border: 1px solid rgba(var(--service-accent-rgb), .45);
	border-radius: 50%;
	background: radial-gradient(circle at 35% 28%, rgba(var(--service-accent-rgb), .25), #070943 64%);
	color: #fff;
	font-size: clamp(1rem, 1.5vw, 1.4rem);
	letter-spacing: .14em;
	font-weight: 400;
	transform: translate(-50%, -50%) scale(.74);
	opacity: .22;
	box-shadow: 0 0 0 18px rgba(var(--service-accent-rgb), .025);
	transition: opacity .7s ease, transform 1s cubic-bezier(.2, .8, .2, 1), box-shadow .7s ease;
}

.services-story-ready .service-story--ai-automation[data-story-stage="2"] .story-ai-network__route,
.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network__route {
	opacity: .76;
	box-shadow: 0 0 12px rgba(var(--service-accent-rgb), .28);
}

.services-story-ready .service-story--ai-automation[data-story-stage="2"] .story-ai-network__route--one,
.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network__route--one { transform: translate(-50%, -50%) rotate(16deg) scaleX(1); }
.services-story-ready .service-story--ai-automation[data-story-stage="2"] .story-ai-network__route--two,
.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network__route--two { transform: translate(-50%, -50%) rotate(-42deg) scaleX(1); }
.services-story-ready .service-story--ai-automation[data-story-stage="2"] .story-ai-network__route--three,
.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network__route--three { transform: translate(-50%, -50%) rotate(78deg) scaleX(1); }

.services-story-ready .service-story--ai-automation[data-story-stage="2"] .story-ai-network::before,
.services-story-ready .service-story--ai-automation[data-story-stage="2"] .story-ai-network::after,
.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network::before,
.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network::after {
	transform: translate(-50%, -50%) scale(1);
	opacity: .78;
}

.services-story-ready .service-story--ai-automation[data-story-stage="2"] .story-ai-network strong,
.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network strong {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	box-shadow: 0 0 0 22px rgba(var(--service-accent-rgb), .04), 0 0 74px rgba(var(--service-accent-rgb), .3);
}

.services-story-ready .service-story--ai-automation[data-story-stage="3"] .story-ai-network > i {
	box-shadow: 0 0 26px rgba(var(--service-accent-rgb), .42);
}

/* Brand & Content: controlled noise resolves into one aligned identity. */
.story-brand-system {
	position: absolute;
	inset: 8%;
}

.story-brand-system > span {
	position: absolute;
	z-index: 2;
	color: rgba(255, 255, 255, .72);
	font-size: clamp(1rem, 2vw, 2rem);
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: left 1s cubic-bezier(.2, .8, .2, 1), right 1s cubic-bezier(.2, .8, .2, 1), top 1s cubic-bezier(.2, .8, .2, 1), bottom 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1), color .6s ease, opacity .6s ease;
}

.story-brand-system > span:nth-child(1) { left: 2%; top: 14%; transform: rotate(-10deg) scale(1.3); }
.story-brand-system > span:nth-child(2) { right: 2%; top: 8%; transform: rotate(8deg) scale(.82); }
.story-brand-system > span:nth-child(3) { left: 18%; bottom: 8%; transform: rotate(13deg) scale(.9); }
.story-brand-system > span:nth-child(4) { right: 1%; bottom: 17%; transform: rotate(-8deg) scale(1.08); }
.story-brand-system > span:nth-child(5) { left: 35%; top: 47%; transform: rotate(4deg) scale(.78); }

.story-brand-system > i {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 62%;
	height: 62%;
	border: 1px solid rgba(var(--service-accent-rgb), .35);
	border-radius: 34px;
	background:
		linear-gradient(rgba(var(--service-accent-rgb), .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--service-accent-rgb), .055) 1px, transparent 1px),
		radial-gradient(circle at 50% 50%, rgba(var(--service-accent-rgb), .16), transparent 68%);
	background-size: 36px 36px, 36px 36px, auto;
	transform: translate(-50%, -50%) scale(.72) rotate(7deg);
	opacity: .08;
	box-shadow: inset 0 0 70px rgba(var(--service-accent-rgb), .07);
	transition: transform 1s cubic-bezier(.2, .8, .2, 1), opacity .7s ease, box-shadow .7s ease;
}

.services-story-ready .service-story--brand-content[data-story-stage="2"] .story-brand-system > span,
.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > span {
	left: 24%;
	right: auto;
	transform: rotate(0) scale(1);
	color: #fff;
}

.services-story-ready .service-story--brand-content[data-story-stage="2"] .story-brand-system > span:nth-child(1),
.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > span:nth-child(1) { top: 18%; }
.services-story-ready .service-story--brand-content[data-story-stage="2"] .story-brand-system > span:nth-child(2),
.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > span:nth-child(2) { top: 32%; }
.services-story-ready .service-story--brand-content[data-story-stage="2"] .story-brand-system > span:nth-child(3),
.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > span:nth-child(3) { top: 46%; bottom: auto; }
.services-story-ready .service-story--brand-content[data-story-stage="2"] .story-brand-system > span:nth-child(4),
.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > span:nth-child(4) { top: 60%; bottom: auto; }
.services-story-ready .service-story--brand-content[data-story-stage="2"] .story-brand-system > span:nth-child(5),
.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > span:nth-child(5) { top: 74%; }

.services-story-ready .service-story--brand-content[data-story-stage="2"] .story-brand-system > i,
.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > i {
	transform: translate(-50%, -50%) scale(1) rotate(0);
	opacity: 1;
	box-shadow: inset 0 0 70px rgba(var(--service-accent-rgb), .11), 0 0 70px rgba(var(--service-accent-rgb), .12);
}

.services-story-ready .service-story--brand-content[data-story-stage="3"] .story-brand-system > span {
	color: var(--service-accent);
	letter-spacing: .18em;
}

/* Creative Technology: point → line → wireframe → polished interface. */
.story-creative-system {
	position: absolute;
	inset: 7%;
}

.story-creative-system__point {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 5;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--service-accent);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 18px var(--service-accent), 0 0 0 16px rgba(var(--service-accent-rgb), .07);
	transition: left 1s cubic-bezier(.2, .8, .2, 1), top 1s cubic-bezier(.2, .8, .2, 1), opacity .6s ease, transform .8s ease;
}

.story-creative-system__line {
	position: absolute;
	left: 18%;
	top: 50%;
	z-index: 2;
	width: 64%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--service-accent), transparent);
	transform: scaleX(.02);
	box-shadow: 0 0 14px rgba(var(--service-accent-rgb), .34);
	transition: transform 1s cubic-bezier(.2, .8, .2, 1), opacity .6s ease;
}

.story-creative-system__wireframe,
.story-creative-system__interface {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 72%;
	aspect-ratio: 16 / 10;
	border: 1px solid rgba(var(--service-accent-rgb), .48);
	border-radius: 16px;
	transform: translate(-50%, -50%) scale(.78) perspective(800px) rotateY(-7deg);
	opacity: 0;
	transition: transform 1s cubic-bezier(.2, .8, .2, 1), opacity .75s ease, filter .7s ease;
}

.story-creative-system__wireframe {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	grid-template-rows: .24fr 1fr;
	gap: 12px;
	padding: 18px;
}

.story-creative-system__wireframe i {
	border: 1px solid rgba(var(--service-accent-rgb), .32);
	background: rgba(var(--service-accent-rgb), .035);
}

.story-creative-system__wireframe i:first-child {
	grid-column: 1 / -1;
}

.story-creative-system__interface {
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 42%, rgba(var(--service-accent-rgb), .3), transparent 26%),
		linear-gradient(135deg, rgba(var(--service-accent-rgb), .18), #080a4c 48%, #02042f);
	box-shadow: inset 0 0 60px rgba(var(--service-accent-rgb), .11), 0 0 70px rgba(var(--service-accent-rgb), .16);
}

.story-creative-system__interface span {
	display: block;
	height: 12%;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	background: radial-gradient(circle at 5% 50%, var(--service-accent) 0 2px, transparent 3px);
}

.story-creative-system__interface i {
	position: absolute;
	left: 8%;
	height: 3px;
	background: rgba(255, 255, 255, .32);
}

.story-creative-system__interface i:nth-of-type(1) { top: 28%; width: 42%; }
.story-creative-system__interface i:nth-of-type(2) { top: 38%; width: 28%; }
.story-creative-system__interface i:nth-of-type(3) { left: 54%; top: 25%; width: 34%; height: 50%; background: rgba(var(--service-accent-rgb), .19); }

.services-story-ready .service-story--creative-technology[data-story-stage="2"] .story-creative-system__point {
	left: 18%;
}

.services-story-ready .service-story--creative-technology[data-story-stage="2"] .story-creative-system__line,
.services-story-ready .service-story--creative-technology[data-story-stage="3"] .story-creative-system__line {
	transform: scaleX(1);
}

.services-story-ready .service-story--creative-technology[data-story-stage="2"] .story-creative-system__wireframe {
	transform: translate(-50%, -50%) scale(1) perspective(800px) rotateY(0);
	opacity: 1;
}

.services-story-ready .service-story--creative-technology[data-story-stage="3"] .story-creative-system__point,
.services-story-ready .service-story--creative-technology[data-story-stage="3"] .story-creative-system__wireframe {
	opacity: 0;
}

.services-story-ready .service-story--creative-technology[data-story-stage="3"] .story-creative-system__interface {
	transform: translate(-50%, -50%) scale(1) perspective(800px) rotateY(0);
	opacity: 1;
}

/* Growth & Performance: isolated signals converge into measurable momentum. */
.story-growth-system {
	position: absolute;
	inset: 8%;
}

.story-growth-system > span {
	position: absolute;
	z-index: 4;
	padding: 8px 12px 7px;
	border: 1px solid rgba(var(--service-accent-rgb), .28);
	border-radius: 999px;
	background: rgba(4, 7, 55, .76);
	color: rgba(255, 255, 255, .68);
	font-size: .58rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: left .9s cubic-bezier(.2, .8, .2, 1), right .9s cubic-bezier(.2, .8, .2, 1), top .9s cubic-bezier(.2, .8, .2, 1), bottom .9s cubic-bezier(.2, .8, .2, 1), opacity .6s ease, border-color .6s ease;
}

.story-growth-system > span:nth-child(1) { left: 2%; top: 12%; }
.story-growth-system > span:nth-child(2) { right: 3%; top: 25%; }
.story-growth-system > span:nth-child(3) { left: 9%; bottom: 20%; }
.story-growth-system > span:nth-child(4) { right: 4%; bottom: 8%; }

.story-growth-system__bars {
	position: absolute;
	left: 15%;
	right: 7%;
	bottom: 8%;
	display: flex;
	align-items: flex-end;
	gap: 7%;
	height: 66%;
	border-bottom: 1px solid rgba(var(--service-accent-rgb), .28);
}

.story-growth-system__bars i {
	flex: 1;
	height: 20%;
	border: 1px solid rgba(var(--service-accent-rgb), .34);
	border-bottom: 0;
	background: linear-gradient(180deg, rgba(var(--service-accent-rgb), .66), rgba(var(--service-accent-rgb), .05));
	transform: scaleY(.18);
	transform-origin: bottom;
	opacity: .34;
	transition: transform 1s cubic-bezier(.2, .8, .2, 1), opacity .6s ease, height .9s cubic-bezier(.2, .8, .2, 1);
}

.story-growth-system__bars i:nth-child(1) { height: 28%; }
.story-growth-system__bars i:nth-child(2) { height: 42%; }
.story-growth-system__bars i:nth-child(3) { height: 39%; }
.story-growth-system__bars i:nth-child(4) { height: 62%; }
.story-growth-system__bars i:nth-child(5) { height: 82%; }

.story-growth-system svg {
	position: absolute;
	inset: 8% 2% 5% 8%;
	width: 90%;
	height: 84%;
	overflow: visible;
}

.story-growth-system path {
	fill: none;
	stroke: var(--service-accent);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	filter: drop-shadow(0 0 7px rgba(var(--service-accent-rgb), .5));
	transition: stroke-dashoffset 1.2s cubic-bezier(.2, .8, .2, 1), opacity .6s ease;
}

.services-story-ready .service-story--growth-performance[data-story-stage="2"] .story-growth-system > span,
.services-story-ready .service-story--growth-performance[data-story-stage="3"] .story-growth-system > span {
	border-color: rgba(var(--service-accent-rgb), .56);
}

.services-story-ready .service-story--growth-performance[data-story-stage="2"] .story-growth-system > span:nth-child(1),
.services-story-ready .service-story--growth-performance[data-story-stage="3"] .story-growth-system > span:nth-child(1) { left: 5%; top: 4%; }
.services-story-ready .service-story--growth-performance[data-story-stage="2"] .story-growth-system > span:nth-child(2),
.services-story-ready .service-story--growth-performance[data-story-stage="3"] .story-growth-system > span:nth-child(2) { left: 30%; right: auto; top: 4%; }
.services-story-ready .service-story--growth-performance[data-story-stage="2"] .story-growth-system > span:nth-child(3),
.services-story-ready .service-story--growth-performance[data-story-stage="3"] .story-growth-system > span:nth-child(3) { left: 56%; top: 4%; bottom: auto; }
.services-story-ready .service-story--growth-performance[data-story-stage="2"] .story-growth-system > span:nth-child(4),
.services-story-ready .service-story--growth-performance[data-story-stage="3"] .story-growth-system > span:nth-child(4) { right: 3%; top: 4%; bottom: auto; }

.services-story-ready .service-story--growth-performance[data-story-stage="2"] .story-growth-system__bars i {
	transform: scaleY(.62);
	opacity: .68;
}

.services-story-ready .service-story--growth-performance[data-story-stage="2"] .story-growth-system path {
	stroke-dashoffset: .44;
}

.services-story-ready .service-story--growth-performance[data-story-stage="3"] .story-growth-system__bars i {
	transform: scaleY(1);
	opacity: 1;
}

.services-story-ready .service-story--growth-performance[data-story-stage="3"] .story-growth-system path {
	stroke-dashoffset: 0;
}

@media (max-width: 1120px) {
	.service-story__inner {
		grid-template-columns: minmax(360px, .9fr) minmax(430px, 1.1fr);
		gap: 32px;
	}

	.service-story__stage h3 {
		font-size: clamp(3.4rem, 6.4vw, 6rem);
	}
}

@media (max-width: 860px) {
	.services-hub--cinematic .services-hub__hero-grid {
		min-height: calc(100svh - 175px);
	}

	.services-hub--cinematic .services-hub__hero-title,
	.services-hub--cinematic .services-hub__hero-copy {
		padding-bottom: 72px;
	}

	.services-hub__core {
		right: -32%;
		top: 10%;
		width: 105vw;
	}

	.service-story__inner,
	.service-story--reverse .service-story__copy,
	.service-story--reverse .service-story__visual {
		grid-template-columns: 1fr;
		grid-column: 1;
		grid-row: auto;
	}

	.service-story__inner {
		position: relative;
		align-content: center;
	}

	.services-story-ready .service-story__inner {
		display: block;
		height: 100%;
		padding-top: 105px;
		padding-bottom: 44px;
	}

	.service-story__copy {
		position: relative;
		z-index: 4;
		max-width: 680px;
	}

	.service-story__visual {
		min-height: min(68vw, 560px);
	}

	.services-story-ready .service-story__visual {
		position: absolute;
		right: -16%;
		bottom: -8%;
		z-index: 1;
		width: 78%;
		min-height: 54%;
		opacity: .48;
		mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 100%);
	}

	.services-story-ready .service-story__copy::after {
		content: "";
		position: absolute;
		inset: 0 -20% -30%;
		z-index: -1;
		background: radial-gradient(circle at 22% 28%, rgba(2, 4, 50, .96), rgba(2, 4, 50, .62) 46%, transparent 72%);
	}

	.service-story__stage h3 {
		max-width: 620px;
		font-size: clamp(3.2rem, 8.5vw, 5rem);
	}
}

@media (max-width: 680px) {
	.services-hub--cinematic .services-hub__hero {
		min-height: 920px;
	}

	.services-hub--cinematic .services-hub__hero-grid {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		min-height: 720px;
		gap: 24px;
	}

	.services-hub--cinematic .services-hub__hero-title,
	.services-hub--cinematic .services-hub__hero-copy {
		padding-bottom: 0;
	}

	.services-hub--cinematic .services-hub__hero-copy {
		padding-bottom: 58px;
	}

	.services-hub--cinematic .services-hub__hero h1 {
		font-size: clamp(3rem, 14.2vw, 4.7rem);
	}

	.services-hub__core {
		right: -68%;
		top: 3%;
		width: 160vw;
		opacity: .38;
	}

	.services-story-ready .service-story {
		height: max(1900px, 290svh);
	}

	.services-story-ready .service-story__sticky {
		min-height: 620px;
	}

	.services-story-ready .service-story__inner {
		width: min(calc(100% - 36px), var(--container));
		padding-top: 92px;
		padding-bottom: 30px;
	}

	.service-story__header {
		grid-template-columns: auto 1fr;
		gap: 12px;
	}

	.service-story__header h2 {
		font-size: .6rem;
		text-align: right;
	}

	.service-story__stage-count {
		grid-column: 1 / -1;
	}

	.service-story__stage-count i {
		flex: 1;
	}

	.service-story__stage-count i,
	.service-story[data-story-stage="1"] .service-story__stage-count i:nth-child(1),
	.service-story[data-story-stage="2"] .service-story__stage-count i:nth-child(2),
	.service-story[data-story-stage="3"] .service-story__stage-count i:nth-child(3) {
		width: auto;
	}

	.services-story-ready .service-story__stages {
		min-height: 430px;
	}

	.service-story__stage h3 {
		font-size: clamp(2.85rem, 13.4vw, 4.2rem);
	}

	.service-story__stage--transformation > span {
		max-width: 92%;
		margin-top: 22px;
		font-size: .92rem;
	}

	.service-story__stage--problem ul {
		max-width: 92%;
		margin-top: 24px;
	}

	.service-story__stage--problem li {
		font-size: .54rem;
	}

	.service-story__cta {
		margin-top: 38px;
		font-size: .58rem;
	}

	.services-story-ready .service-story__visual {
		right: -42%;
		bottom: -4%;
		width: 118%;
		min-height: 48%;
		opacity: .38;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-story,
	.services-story-ready .service-story {
		height: auto !important;
	}

	.service-story__sticky,
	.services-story-ready .service-story__sticky {
		position: relative;
		height: auto;
		min-height: 0;
		padding-top: clamp(90px, 12vw, 150px);
		padding-bottom: clamp(90px, 12vw, 150px);
		overflow: visible;
	}

	.service-story__stage,
	.services-story-ready .service-story__stage {
		position: relative;
		inset: auto;
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.story-ai-network *,
	.story-brand-system *,
	.story-creative-system *,
	.story-growth-system * {
		transition: none !important;
		animation: none !important;
	}
}

/* ============================================================
   SERVICES OVERVIEW — EDITORIAL ACCORDION
   A restrained, typography-led overview inspired by the approved
   reference. Detail-page presentation remains unchanged.
   ============================================================ */

.trinovik-services-page--overview .site {
	background:
		radial-gradient(circle at 82% 4%, rgba(216, 78, 233, .11), transparent 24%),
		linear-gradient(180deg, #020322, #010218 62%, #070321);
}

.services-overview {
	position: relative;
	background: #010218;
	color: #f7f5ff;
	overflow: clip;
}

.services-overview__hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: clamp(590px, 72svh, 760px);
	padding: clamp(170px, 19vh, 230px) 0 clamp(78px, 10vh, 120px);
	background:
		linear-gradient(180deg, rgba(1, 2, 24, .05), #010218 72%),
		radial-gradient(ellipse at 77% -12%, rgba(50, 185, 255, .22), transparent 42%),
		radial-gradient(ellipse at 95% 4%, rgba(216, 78, 233, .2), transparent 38%);
}

.services-overview__hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 1px;
	background: rgba(255, 255, 255, .14);
}

.services-overview__hero-glow {
	position: absolute;
	right: -9vw;
	top: -42vw;
	z-index: -2;
	width: min(88vw, 1260px);
	aspect-ratio: 1;
	border: 1px solid rgba(122, 120, 255, .13);
	border-radius: 50%;
	box-shadow:
		0 0 150px rgba(50, 185, 255, .09),
		inset 0 0 180px rgba(216, 78, 233, .07);
	pointer-events: none;
}

.services-overview__hero-inner {
	position: relative;
	z-index: 2;
}

.services-overview__eyebrow {
	margin: 0 0 clamp(26px, 3vw, 42px);
	color: rgba(247, 245, 255, .78);
	font-size: clamp(1.15rem, 1.65vw, 1.65rem);
	line-height: 1.2;
	font-weight: 400;
}

.services-overview__headline {
	margin: 0;
	max-width: 1250px;
	font-size: clamp(3.8rem, 6.2vw, 7.4rem);
	line-height: .91;
	letter-spacing: -.065em;
	font-weight: 400;
}

.services-overview__headline em {
	display: inline-block;
	color: #d84ee9;
	font-style: italic;
	font-weight: 350;
}

.services-overview__introduction {
	max-width: 680px;
	margin: clamp(38px, 5vw, 66px) 0 0;
	color: rgba(235, 234, 246, .7);
	font-size: clamp(1rem, 1.25vw, 1.2rem);
	line-height: 1.68;
}

.services-accordion {
	position: relative;
	background: #010218;
}

.service-accordion {
	--service-ink: #02031e;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, .19);
	background: transparent;
	color: #f7f5ff;
	transition: background-color .4s ease, color .4s ease;
}

.service-accordion:first-of-type {
	border-top: 1px solid rgba(255, 255, 255, .19);
}

.service-accordion:hover:not(.is-open),
.service-accordion:focus-within:not(.is-open) {
	background: #03051b;
	color: #f7f5ff;
}

.service-accordion.is-open {
	background: #03051b;
	color: #f7f5ff;
}

.service-accordion__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
	transform: scale(1.025);
	transition:
		opacity .56s ease,
		transform 1.15s cubic-bezier(.2, .8, .2, 1);
}

.service-accordion__background::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(1, 2, 24, .06) 0%,
			rgba(1, 2, 24, .16) 100%
		),
		linear-gradient(
			105deg,
			rgba(var(--service-accent-rgb), .09),
			transparent 58%
		);
}

.service-accordion__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--service-image-position, center);
	transform: scale(1.07);
	filter: saturate(1.02) contrast(1.04);
	transition: transform 1.25s cubic-bezier(.2, .8, .2, 1);
}

.service-accordion:hover:not(.is-open) .service-accordion__background,
.service-accordion:focus-within:not(.is-open) .service-accordion__background {
	opacity: .5;
	transform: scale(1.012);
}

.service-accordion:hover:not(.is-open) .service-accordion__background img,
.service-accordion:focus-within:not(.is-open) .service-accordion__background img {
	transform: scale(1.04);
}

.service-accordion.is-open .service-accordion__background {
	opacity: .92;
	transform: scale(1);
}

.service-accordion.is-open .service-accordion__background img {
	transform: scale(1);
}

.service-accordion__shell {
	position: relative;
	z-index: 1;
	transition: padding .4s ease;
}

.service-accordion__heading {
	margin: 0;
	font: inherit;
}

.service-accordion__trigger {
	display: grid;
	grid-template-columns: clamp(40px, 5vw, 76px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(14px, 2vw, 30px);
	width: 100%;
	min-height: 150px;
	padding: clamp(38px, 4vw, 52px) 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
	transition: text-shadow .35s ease;
}

.service-accordion:hover .service-accordion__trigger,
.service-accordion:focus-within .service-accordion__trigger,
.service-accordion.is-open .service-accordion__trigger {
	text-shadow: 0 2px 22px rgba(0, 0, 0, .72);
}

.service-accordion__trigger:focus-visible {
	outline: none;
}

.service-accordion__trigger:focus-visible .service-accordion__name {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 9px;
}

.service-accordion__number {
	align-self: start;
	padding-top: .58em;
	color: var(--service-accent);
	font-size: clamp(.62rem, .72vw, .75rem);
	line-height: 1;
	letter-spacing: .16em;
	transition: color .4s ease;
}

.service-accordion:hover:not(.is-open) .service-accordion__number,
.service-accordion:focus-within:not(.is-open) .service-accordion__number {
	color: var(--service-accent);
}

.service-accordion.is-open .service-accordion__number {
	color: var(--service-accent);
}

.service-accordion__name {
	font-size: clamp(2.25rem, 3.45vw, 4.15rem);
	line-height: 1.05;
	letter-spacing: -.045em;
	font-weight: 400;
}

.service-accordion__panel {
	display: grid;
	grid-template-rows: 0fr;
	visibility: hidden;
	opacity: 0;
	transition:
		grid-template-rows .25s cubic-bezier(.4, 0, .2, 1),
		opacity .22s ease,
		visibility 0s linear .25s;
}

.service-accordion.is-open .service-accordion__panel {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	transition:
		grid-template-rows .25s cubic-bezier(.4, 0, .2, 1),
		opacity .3s ease .08s,
		visibility 0s;
}

.service-accordion__panel-clip {
	min-height: 0;
	overflow: hidden;
}

.service-accordion__content {
	display: grid;
	grid-template-columns: minmax(0, 600px) minmax(240px, 1fr);
	align-items: end;
	gap: clamp(36px, 5vw, 80px);
	min-height: clamp(340px, 30vw, 460px);
	padding: 0 0 clamp(42px, 5vw, 70px) calc(clamp(40px, 5vw, 76px) + clamp(14px, 2vw, 30px));
}

.service-accordion.is-open .service-accordion__content {
	text-shadow: 0 2px 18px rgba(0, 0, 0, .3);
}

.service-accordion__copy-card {
	box-sizing: border-box;
	grid-column: 1;
	grid-row: 1;
	align-self: start;
	width: 100%;
	max-width: 600px;
}

.service-accordion.is-open .service-accordion__copy-card {
	padding: clamp(22px, 2vw, 30px);
	border: 1px solid rgba(255, 255, 255, .17);
	border-radius: clamp(18px, 1.8vw, 28px);
	background: rgba(2, 3, 30, .64);
	box-shadow: 0 20px 56px rgba(0, 0, 0, .24);
	backdrop-filter: blur(15px) saturate(1.08);
	-webkit-backdrop-filter: blur(15px) saturate(1.08);
}

.service-accordion__description {
	max-width: 550px;
}

.service-accordion__description p {
	margin: 0;
	font-size: clamp(.9rem, 1.05vw, 1.05rem);
	line-height: 1.55;
}

.service-accordion__description p + p {
	margin-top: 18px;
}

.service-accordion__statement {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 0;
	margin-top: clamp(26px, 3vw, 38px);
}

.service-accordion__statement > p {
	margin: 0;
	max-width: 540px;
	font-size: clamp(1.75rem, 2.55vw, 3.05rem);
	line-height: 1.02;
	letter-spacing: -.05em;
}

.service-accordion__statement > span {
	display: block;
	width: 100%;
	margin-top: 22px;
	padding-top: 14px;
	border-top: 1px solid rgba(2, 3, 30, .32);
	font-size: .58rem;
	line-height: 1.5;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.service-accordion.is-open .service-accordion__statement > span {
	border-top-color: rgba(255, 255, 255, .28);
}

.service-accordion__link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	grid-column: 2;
	grid-row: 1;
	align-self: end;
	justify-self: end;
	margin: 0;
	padding: 10px 11px 10px 24px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	background: rgba(2, 3, 30, .42);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
	backdrop-filter: blur(18px) saturate(1.1);
	-webkit-backdrop-filter: blur(18px) saturate(1.1);
	color: #fff;
	font-size: .65rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: transform .3s ease, box-shadow .3s ease;
}

.service-accordion.is-open .service-accordion__link {
	border-color: rgba(255, 255, 255, .36);
	background: rgba(2, 3, 30, .46);
}

.service-accordion__link img {
	width: 38px;
	height: 38px;
	object-fit: contain;
	transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.service-accordion__link:hover,
.service-accordion__link:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(2, 3, 30, .2);
	outline: 2px solid var(--service-ink);
	outline-offset: 3px;
}

.service-accordion__link:hover img,
.service-accordion__link:focus-visible img {
	transform: rotate(24deg) scale(1.06);
}

.services-partners {
	padding-top: clamp(110px, 13vw, 205px);
	padding-bottom: clamp(110px, 13vw, 205px);
}

.services-partners__heading {
	display: block;
	width: min(100%, 1260px);
	margin-inline: auto;
	margin-bottom: clamp(58px, 8vw, 110px);
	text-align: center;
}

.services-partners__heading > p,
.services-overview-cta__copy > p {
	margin: 9px 0 0;
	color: #9888ff;
	font-size: .64rem;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.services-partners__heading h2,
.services-overview-cta h2 {
	margin: 0;
	font-size: clamp(3.1rem, 5.8vw, 7rem);
	line-height: .9;
	letter-spacing: -.055em;
	font-weight: 400;
}

.services-partners__heading h2 {
	max-width: 1260px;
	margin-inline: auto;
	text-wrap: balance;
}

.services-partners__heading h2 em,
.services-overview-cta h2 em {
	color: #d84ee9;
	font-style: italic;
	font-weight: 350;
}

.services-partners__marquee {
	--client-gap: clamp(10px, 1vw, 16px);
	--client-card-radius: clamp(18px, 1.6vw, 26px);
	display: grid;
	gap: var(--client-gap);
	width: 100vw;
	margin-top: clamp(68px, 8vw, 110px);
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

.services-partners__row {
	width: 100%;
	padding: 3px 0 12px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
}

.services-partners__track {
	display: flex;
	width: max-content;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.services-partners__group {
	display: flex;
	gap: var(--client-gap);
}

.services-partners__card {
	position: relative;
	display: grid;
	place-items: center;
	flex: 0 0 clamp(245px, 18vw, 340px);
	height: clamp(145px, 11vw, 190px);
	padding: clamp(18px, 1.7vw, 26px);
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: var(--client-card-radius);
	background: rgba(255, 255, 255, .045);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
	overflow: hidden;
	transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.services-partners__card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, .085);
	border-color: rgba(216, 78, 233, .32);
	box-shadow: 0 20px 48px rgba(0, 0, 0, .16);
}

.services-partners__logo {
	position: relative;
	display: grid;
	place-items: center;
	width: 78%;
	height: 72%;
	margin: auto;
}

.services-partners__logo img {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	filter: none;
	opacity: 1;
	mix-blend-mode: normal;
	transform: translate(-50%, -50%) scale(1.12);
	transform-origin: center;
	transition: transform .35s ease;
}

.services-partners__card:hover .services-partners__logo img {
	transform: translate(-50%, -50%) scale(1.16);
}

.services-overview-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 60px;
	padding-top: clamp(100px, 12vw, 190px);
	padding-bottom: clamp(100px, 12vw, 190px);
	border-top: 1px solid rgba(255, 255, 255, .14);
}

.services-overview-cta__copy > p {
	margin-bottom: 28px;
}

.services-overview-cta__copy > span {
	display: block;
	max-width: 630px;
	margin-top: 38px;
	color: rgba(235, 234, 246, .66);
	font-size: 1rem;
	line-height: 1.65;
}

.services-overview-cta__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-width: 270px;
	padding: 13px 15px 13px 28px;
	border: 1px solid rgba(216, 78, 233, .38);
	border-radius: 999px;
	background: rgba(216, 78, 233, .08);
	color: #fff;
	font-size: .7rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.services-overview-cta__button img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.services-overview-cta__button:hover,
.services-overview-cta__button:focus-visible {
	border-color: #d84ee9;
	background: rgba(216, 78, 233, .15);
	transform: translateY(-3px);
	outline: none;
}

.services-overview-cta__button:hover img,
.services-overview-cta__button:focus-visible img {
	transform: rotate(28deg) scale(1.07);
}

@media (max-width: 900px) {
	.services-overview__hero {
		min-height: 680px;
		padding-top: 160px;
	}

	.service-accordion__content {
		grid-template-columns: 1fr;
		gap: 42px;
		min-height: 0;
	}

	.service-accordion__copy-card,
	.service-accordion__link {
		grid-column: 1;
		grid-row: auto;
	}

	.service-accordion__statement {
		min-height: 0;
	}

	.services-partners__card {
		flex-basis: clamp(225px, 29vw, 290px);
		height: clamp(138px, 18vw, 172px);
	}
}

@media (max-width: 680px) {
	.services-overview__hero {
		min-height: 660px;
		padding: 138px 0 72px;
	}

	.services-overview__hero-glow {
		right: -62vw;
		top: -44vw;
		width: 150vw;
	}

	.services-overview__eyebrow {
		margin-bottom: 25px;
		font-size: 1.05rem;
	}

	.services-overview__headline {
		font-size: clamp(3rem, 14.2vw, 4.45rem);
		line-height: .92;
	}

	.services-overview__introduction {
		margin-top: 32px;
		font-size: .96rem;
		line-height: 1.6;
	}

	.service-accordion__trigger {
		grid-template-columns: 29px minmax(0, 1fr);
		gap: 10px;
		min-height: 110px;
		padding: 31px 0;
	}

	.service-accordion__number {
		padding-top: .45em;
		font-size: .55rem;
	}

	.service-accordion__name {
		font-size: clamp(1.75rem, 8.5vw, 2.45rem);
		line-height: 1.03;
	}

	.service-accordion__content {
		gap: 36px;
		padding: 4px 0 54px 39px;
	}

	.service-accordion__background::after {
		background:
			linear-gradient(
				180deg,
				rgba(1, 2, 24, .12) 0%,
				rgba(1, 2, 24, .26) 100%
			),
			linear-gradient(
				105deg,
				rgba(var(--service-accent-rgb), .1),
				transparent 62%
			);
	}

	.service-accordion.is-open .service-accordion__copy-card {
		padding: 18px;
		border-radius: 18px;
		background: rgba(2, 3, 30, .72);
		backdrop-filter: blur(12px) saturate(1.06);
		-webkit-backdrop-filter: blur(12px) saturate(1.06);
	}

	.service-accordion__description p {
		font-size: .9rem;
	}

	.service-accordion__statement {
		min-height: 0;
		margin-top: 26px;
	}

	.service-accordion__statement > p {
		font-size: clamp(1.75rem, 8.2vw, 2.5rem);
	}

	.service-accordion__statement > span {
		font-size: .52rem;
	}

	.service-accordion__link {
		width: min(100%, 330px);
		justify-content: space-between;
		justify-self: end;
		margin-top: 4px;
		font-size: .56rem;
	}

	.services-partners,
	.services-overview-cta {
		width: min(calc(100% - 36px), var(--container));
	}

	.services-partners__heading {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.services-partners__heading h2,
	.services-overview-cta h2 {
		font-size: clamp(2.85rem, 13vw, 4.3rem);
	}

	.services-partners__marquee {
		margin-top: 56px;
	}

	.services-partners__card {
		flex-basis: 205px;
		height: 128px;
		padding: 14px;
	}

	.services-overview-cta {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 44px;
	}

	.services-overview-cta__button {
		width: min(100%, 310px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-accordion,
	.service-accordion__background,
	.service-accordion__background img,
	.service-accordion__panel,
	.service-accordion__number,
	.service-accordion__link,
	.service-accordion__link img,
	.services-overview-cta__button,
	.services-overview-cta__button img,
	.services-partners__card,
	.services-partners__logo img {
		transition-duration: .01ms !important;
	}

	.services-partners__row {
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.services-partners__row::-webkit-scrollbar {
		display: none;
	}

	.services-partners__track {
		transform: none !important;
		will-change: auto;
	}
}

/* ============================================================
   SERVICES FOOTER — MATCH THE HOMEPAGE COMPOSITION
   ============================================================ */

.trinovik-services-page .signal-footer--2026 .signal-footer__navigation {
	align-items: center;
}

.trinovik-services-page .signal-footer--2026 .signal-footer__navigation-meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2vw, 30px);
	margin-left: auto;
}

.trinovik-services-page .signal-footer--2026 .signal-footer__copyright {
	flex: 0 1 auto;
	margin: 0;
	font-size: 9px;
	line-height: 1.4;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
	color: rgba(255, 255, 255, .38);
}

.trinovik-services-page .signal-footer--2026 .signal-footer__back {
	flex: none;
	white-space: nowrap;
}

@media (min-width: 1001px) {
	.trinovik-services-page .signal-footer--2026 .signal-footer__grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
		gap: clamp(70px, 9vw, 150px);
	}

	.trinovik-services-page .signal-footer--2026 .signal-footer__column--office {
		width: min(100%, 430px);
		justify-self: end;
	}
}

@media (max-width: 1000px) {
	.trinovik-services-page .signal-footer--2026 .signal-footer__grid {
		grid-template-columns: 1fr;
	}

	.trinovik-services-page .signal-footer--2026 .signal-footer__column--services {
		grid-column: auto;
	}

	.trinovik-services-page .signal-footer--2026 .signal-footer__column--office {
		width: min(100%, 520px);
	}

	.trinovik-services-page .signal-footer--2026 .signal-footer__navigation {
		align-items: flex-start;
		flex-direction: column;
		gap: 30px;
	}

	.trinovik-services-page .signal-footer--2026 .signal-footer__navigation-meta {
		margin-left: 0;
	}
}

@media (max-width: 680px) {
	.trinovik-services-page .signal-footer--2026 .signal-footer__navigation-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.trinovik-services-page .signal-footer--2026 .signal-footer__copyright {
		max-width: 280px;
		white-space: normal;
	}
}
