/**
 * Techcore services — technical editorial system.
 */

.svc {
	--svc-navy: #071a33;
	--svc-deep: #041326;
	--svc-blue: #063f8f;
	--svc-green: #2db34a;
	--svc-paper: #f4f6f8;
	--svc-muted: #66717f;
	--svc-line: #dce2e8;
	overflow: hidden;
	background: #fff;
	color: #111b27;
}

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

.svc-frame {
	position: relative;
	width: min(var(--ed-max), 100%);
	margin-inline: auto;
}

.svc-tag,
.svc-hero__top,
.svc-hero__index span,
.svc-chapter__label,
.svc-chapter__media figcaption,
.svc-process__step-top span,
.svc-context__stamp,
.svc-cta__status {
	font-family: var(--ed-mono);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.svc-tag {
	color: var(--svc-blue);
}

.svc-tag--light {
	color: #67d27c;
}

.svc h1,
.svc h2,
.svc h3,
.svc p,
.svc strong {
	overflow-wrap: break-word;
}

/* Hero */
.svc-hero {
	position: relative;
	min-height: min(56rem, 100svh);
	color: #fff;
	background: var(--svc-deep);
}

.svc-hero__media,
.svc-hero__shade {
	position: absolute;
	inset: 0;
}

.svc-hero__media {
	overflow: hidden;
}

.svc-hero__media img {
	width: 100%;
	height: calc(100% + 3rem);
	object-fit: cover;
	object-position: center 52%;
	filter: saturate(0.72) contrast(1.07);
	transform: translate3d(0, var(--svc-y, 0), 0) scale(1.035);
	will-change: transform;
}

.svc-hero__shade {
	background:
		linear-gradient(90deg, rgba(3, 14, 29, 0.96) 0%, rgba(3, 17, 34, 0.79) 45%, rgba(3, 18, 36, 0.28) 100%),
		linear-gradient(0deg, rgba(3, 14, 29, 0.94) 0%, transparent 47%);
}

.svc-hero__shade::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.12;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
	background-size: 5rem 5rem;
	mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.svc-hero__content {
	z-index: 1;
	width: 100%;
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: min(56rem, 100svh);
	padding: calc(var(--ed-chrome) + 1.1rem) var(--ed-pad) 1.4rem;
}

.svc-hero__top {
	display: flex;
	justify-content: space-between;
	padding-bottom: 0.9rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.62);
}

.svc-hero__main {
	align-self: center;
	max-width: 73rem;
	padding-block: clamp(3rem, 8vh, 6rem);
}

.svc-hero h1 {
	margin: 1rem 0 0;
	font-family: var(--ed-display);
	font-size: clamp(4.2rem, 7.4vw, 8rem);
	font-weight: 500;
	line-height: 0.84;
	letter-spacing: -0.055em;
}

.svc-hero h1 span {
	display: block;
}

.svc-hero h1 span:nth-child(2) {
	margin-left: clamp(0rem, 7vw, 7rem);
	font-style: italic;
	color: #c7d5e8;
}

.svc-hero__lead {
	max-width: 42rem;
	margin-top: clamp(1.75rem, 3vw, 2.6rem);
	padding-left: 1.2rem;
	border-left: 2px solid var(--svc-green);
	font-size: clamp(1rem, 1.35vw, 1.18rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.76);
}

.svc-hero__index {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.24);
	list-style: none;
}

.svc-hero__index li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: center;
	min-width: 0;
	padding: 1rem 1.25rem 0 0;
}

.svc-hero__index a {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: center;
	min-width: 0;
	color: inherit;
	transition: color 0.3s ease;
}

.svc-hero__index a:hover,
.svc-hero__index a:focus-visible {
	color: #fff;
}

.svc-hero__index a:hover strong,
.svc-hero__index a:focus-visible strong {
	color: #fff;
}

.svc-chapter h3 a {
	color: inherit;
}

.svc-chapter h3 a:hover,
.svc-chapter h3 a:focus-visible {
	color: var(--svc-blue);
}

.svc-chapter--dark h3 a:hover,
.svc-chapter--dark h3 a:focus-visible {
	color: #67d27c;
}

.svc-chapter__media a {
	display: block;
	width: 100%;
	height: 100%;
}

.svc-hero__index li + li {
	padding-left: 1.25rem;
	border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.svc-hero__index span {
	color: var(--svc-green);
}

.svc-hero__index strong {
	font-size: 0.79rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.76);
}

/* Introduction */
.svc-intro {
	padding: clamp(4rem, 7vw, 6.5rem) var(--ed-pad);
	background: #fff;
}

.svc-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.68fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: start;
}

.svc-intro h2,
.svc-heading h2,
.svc-context h2,
.svc-cta h2 {
	margin: 0.8rem 0 0;
	font-family: var(--ed-display);
	font-size: clamp(2.8rem, 5.5vw, 5.5rem);
	font-weight: 500;
	line-height: 0.97;
	letter-spacing: -0.045em;
}

.svc-intro__copy {
	padding-top: 1.6rem;
	font-size: clamp(1.03rem, 1.4vw, 1.18rem);
	line-height: 1.75;
	color: var(--svc-muted);
}

.svc-intro__copy p + p {
	margin-top: 1.2rem;
}

.svc-intro__note {
	grid-column: 2;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.25rem;
	padding-top: 1.4rem;
	border-top: 1px solid var(--svc-line);
}

.svc-intro__note span {
	font-family: var(--ed-display);
	font-size: 2.2rem;
	line-height: 1;
	color: var(--svc-green);
}

.svc-intro__note p {
	max-width: 25rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--svc-muted);
}

/* Shared section heading */
.svc-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: end;
	padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.svc-heading > p {
	max-width: 31rem;
	padding-left: 1.25rem;
	border-left: 2px solid var(--svc-green);
	line-height: 1.7;
	color: var(--svc-muted);
}

/* Service chapters */
.svc-chapters {
	padding: clamp(4rem, 7vw, 6.5rem) var(--ed-pad);
	background:
		linear-gradient(rgba(7, 26, 51, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 26, 51, 0.035) 1px, transparent 1px),
		var(--svc-paper);
	background-size: 4rem 4rem;
}

.svc-chapters__list {
	border-top: 1px solid var(--svc-line);
}

.svc-chapter {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	min-height: 39rem;
	background: #fff;
	border: 1px solid var(--svc-line);
	border-top: 0;
	scroll-margin-top: calc(var(--ed-chrome) + 1rem);
}

.svc-chapter:nth-child(even) .svc-chapter__media {
	grid-column: 2;
	grid-row: 1;
}

.svc-chapter:nth-child(even) .svc-chapter__body {
	grid-column: 1;
	grid-row: 1;
}

.svc-chapter__media {
	position: relative;
	min-width: 0;
	min-height: 32rem;
	margin: 0;
	overflow: hidden;
	background: var(--svc-deep);
}

.svc-chapter__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(3, 15, 30, 0.76), transparent 50%);
}

.svc-chapter__media img {
	width: 100%;
	height: calc(100% + 2rem);
	object-fit: cover;
	filter: saturate(0.78);
	transform: translate3d(0, var(--svc-y, 0), 0) scale(1.02);
	transition: filter 0.45s ease, transform 0.8s var(--ed-ease);
	will-change: transform;
}

.svc-chapter:hover .svc-chapter__media img {
	filter: saturate(1);
}

.svc-chapter__media figcaption {
	position: absolute;
	z-index: 2;
	inset: auto 0 0;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 1.4rem;
	color: rgba(255, 255, 255, 0.72);
}

.svc-chapter__media figcaption span:first-child {
	color: var(--svc-green);
}

.svc-chapter__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: clamp(2rem, 5vw, 4.75rem);
}

.svc-chapter__label {
	color: var(--svc-blue);
}

.svc-chapter h3 {
	max-width: 12ch;
	margin: 1rem 0 0;
	font-family: var(--ed-display);
	font-size: clamp(2.4rem, 4.4vw, 4.4rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.svc-chapter__text {
	max-width: 39rem;
	margin-top: clamp(1.35rem, 2.5vw, 2.25rem);
	line-height: 1.72;
	color: var(--svc-muted);
}

.svc-chapter__outcomes {
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	padding: 0;
	border-top: 1px solid var(--svc-line);
	list-style: none;
}

.svc-chapter__outcomes li {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	gap: 0.8rem;
	align-items: center;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--svc-line);
}

.svc-chapter__outcomes span {
	font-family: var(--ed-mono);
	font-size: 0.63rem;
	color: var(--svc-green);
}

.svc-chapter__outcomes strong {
	font-size: 0.86rem;
	font-weight: 600;
}

.svc-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: fit-content;
	min-width: 14rem;
	margin-top: 1.8rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid currentColor;
	font-family: var(--ed-mono);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--svc-blue);
}

.svc-text-link i {
	font-style: normal;
	transition: transform 0.3s ease;
}

.svc-text-link:hover i,
.svc-text-link:focus-visible i {
	transform: rotate(45deg);
}

.svc-chapter--dark {
	background: var(--svc-navy);
	border-color: var(--svc-navy);
	color: #fff;
}

.svc-chapter--dark .svc-chapter__label,
.svc-chapter--dark .svc-text-link {
	color: #67d27c;
}

.svc-chapter--dark .svc-chapter__text {
	color: rgba(255, 255, 255, 0.67);
}

.svc-chapter--dark .svc-chapter__outcomes {
	border-color: rgba(255, 255, 255, 0.16);
}

.svc-chapter--dark .svc-chapter__outcomes li {
	border-color: rgba(255, 255, 255, 0.16);
}

/* Process */
.svc-process {
	position: relative;
	padding: clamp(4.5rem, 8vw, 7rem) var(--ed-pad);
	overflow: hidden;
	background: var(--svc-deep);
	color: #fff;
}

.svc-process__grid {
	position: absolute;
	inset: 0;
	opacity: 0.12;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
	background-size: 4rem 4rem;
}

.svc-heading--dark > p {
	color: rgba(255, 255, 255, 0.62);
}

.svc-process__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	list-style: none;
}

.svc-process__steps li {
	min-width: 0;
	min-height: 19rem;
	padding: clamp(1.35rem, 2.5vw, 2.2rem);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: background 0.35s ease, transform 0.35s ease;
}

.svc-process__steps li:hover {
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-0.35rem);
}

.svc-process__step-top {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.svc-process__step-top span {
	color: var(--svc-green);
}

.svc-process__step-top i {
	width: 2.7rem;
	height: 1px;
	background: rgba(255, 255, 255, 0.25);
}

.svc-process__steps h3 {
	margin-top: clamp(2.5rem, 5vw, 4.7rem);
	font-family: var(--ed-display);
	font-size: clamp(1.65rem, 2.4vw, 2.35rem);
	font-weight: 500;
	line-height: 1.04;
}

.svc-process__steps p {
	margin-top: 1rem;
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.59);
}

.svc-process__brief {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: var(--svc-blue);
}

.svc-process__brief p {
	max-width: 53rem;
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.76);
}

.svc-process__brief a {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.38);
	font-family: var(--ed-mono);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.3s ease, color 0.3s ease;
}

.svc-process__brief a:hover,
.svc-process__brief a:focus-visible {
	background: #fff;
	color: var(--svc-blue);
}

/* Operating context */
.svc-context {
	padding: clamp(4.5rem, 8vw, 7rem) var(--ed-pad);
	background: #fff;
}

.svc-context__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(3rem, 7vw, 8rem);
	align-items: center;
}

.svc-context__copy > p:not(.svc-tag) {
	max-width: 35rem;
	margin-top: 1.7rem;
	line-height: 1.75;
	color: var(--svc-muted);
}

.svc-context__copy ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 2rem 0 0;
	padding: 0;
	border-top: 1px solid var(--svc-line);
	list-style: none;
}

.svc-context__copy li {
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--svc-line);
	font-size: 0.78rem;
	font-weight: 600;
}

.svc-context__copy li:nth-child(odd) {
	padding-right: 1rem;
}

.svc-context__visual {
	position: relative;
	min-height: clamp(34rem, 51vw, 47rem);
}

.svc-context__visual figure {
	position: absolute;
	margin: 0;
	overflow: hidden;
	background: var(--svc-paper);
}

.svc-context__visual img {
	width: 100%;
	height: calc(100% + 2rem);
	object-fit: cover;
	transform: translate3d(0, var(--svc-y, 0), 0) scale(1.02);
	will-change: transform;
}

.svc-context__large {
	inset: 0 14% 9% 0;
}

.svc-context__small {
	z-index: 2;
	right: 0;
	bottom: 0;
	width: 42%;
	height: 41%;
	border: 0.65rem solid #fff;
	box-shadow: 0 1.2rem 3.5rem rgba(5, 25, 49, 0.17);
}

.svc-context__stamp {
	position: absolute;
	z-index: 3;
	top: 7%;
	right: 0;
	padding: 0.75rem 1rem;
	background: var(--svc-green);
	color: var(--svc-deep);
	writing-mode: vertical-rl;
}

/* CTA */
.svc-cta {
	position: relative;
	padding: clamp(4rem, 8vw, 7rem) var(--ed-pad);
	overflow: hidden;
	background: var(--svc-blue);
	color: #fff;
}

.svc-cta__blueprint {
	position: absolute;
	inset: 0;
	opacity: 0.14;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
	background-size: 3rem 3rem;
}

.svc-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: end;
}

.svc-cta h2 {
	max-width: 14ch;
}

.svc-cta__action {
	padding: clamp(1.4rem, 3vw, 2.2rem);
	background: rgba(4, 19, 38, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-cta__action > p {
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.68);
}

.svc-cta__action > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 1.5rem;
	padding: 1rem 1.1rem;
	background: var(--svc-green);
	font-family: var(--ed-mono);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--svc-deep);
}

.svc-cta__action > a i {
	font-size: 1rem;
	font-style: normal;
	transition: transform 0.3s ease;
}

.svc-cta__action > a:hover i,
.svc-cta__action > a:focus-visible i {
	transform: rotate(45deg);
}

.svc-cta__status {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.52);
}

.svc-cta__status i {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--svc-green);
	box-shadow: 0 0 0 0 rgba(45, 179, 74, 0.55);
	animation: svc-pulse 2s infinite;
}

@keyframes svc-pulse {
	70% {
		box-shadow: 0 0 0 0.5rem rgba(45, 179, 74, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(45, 179, 74, 0);
	}
}

/* Motion */
html.svc-motion {
	scroll-behavior: smooth;
}

.svc-motion [data-svc-reveal],
.svc-motion [data-svc-title] {
	opacity: 0;
	transform: translateY(1.6rem);
	transition: opacity 0.72s ease, transform 0.78s var(--ed-ease);
	transition-delay: var(--delay, 0s);
}

.svc-motion [data-svc-image] {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transition: opacity 0.75s ease, clip-path 0.95s var(--ed-ease);
}

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

.svc-motion [data-svc-image].is-visible {
	opacity: 1;
	clip-path: inset(0);
}

/* Tablet */
@media (max-width: 1024px) {
	.svc-hero h1 {
		font-size: clamp(4rem, 9vw, 6.4rem);
	}

	.svc-chapter {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}

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

	.svc-process__steps li {
		min-height: 16rem;
	}

	.svc-context__grid {
		gap: 3.5rem;
	}
}

@media (max-width: 820px) {
	.svc-intro__grid,
	.svc-heading,
	.svc-context__grid,
	.svc-cta__inner {
		grid-template-columns: 1fr;
	}

	.svc-intro__note {
		grid-column: auto;
	}

	.svc-heading > p {
		max-width: 38rem;
	}

	.svc-chapter,
	.svc-chapter:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.svc-chapter:nth-child(even) .svc-chapter__media,
	.svc-chapter:nth-child(even) .svc-chapter__body {
		grid-column: auto;
		grid-row: auto;
	}

	.svc-chapter__media {
		min-height: 29rem;
	}

	.svc-context__visual {
		min-height: 43rem;
	}

	.svc-cta__action {
		max-width: 35rem;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.svc-hero {
		min-height: 49rem;
	}

	.svc-hero__content {
		min-height: 49rem;
		padding: calc(var(--ed-chrome) + 0.8rem) clamp(1rem, 4.5vw, 1.35rem) 1rem;
	}

	.svc-hero__top span:nth-child(2) {
		display: none;
	}

	.svc-hero__main {
		padding-block: 2.5rem;
	}

	.svc-hero h1 {
		font-size: clamp(3.25rem, 15.5vw, 4.8rem);
		line-height: 0.9;
	}

	.svc-hero h1 span:nth-child(2) {
		margin-left: 0;
	}

	.svc-hero__lead {
		font-size: 0.96rem;
	}

	.svc-hero__index {
		grid-template-columns: 1fr;
	}

	.svc-hero__index li {
		grid-template-columns: 2rem 1fr;
		padding: 0.48rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.svc-hero__index li + li {
		padding-left: 0;
		border-left: 0;
	}

	.svc-intro,
	.svc-chapters,
	.svc-process,
	.svc-context,
	.svc-cta {
		padding-inline: clamp(1rem, 4.5vw, 1.35rem);
	}

	.svc-intro h2,
	.svc-heading h2,
	.svc-context h2,
	.svc-cta h2 {
		font-size: clamp(2.4rem, 12vw, 3.5rem);
	}

	.svc-intro__grid,
	.svc-heading,
	.svc-context__grid,
	.svc-cta__inner {
		gap: 2rem;
	}

	.svc-chapter__media {
		min-height: 20rem;
	}

	.svc-chapter__media figcaption span:last-child {
		max-width: 15rem;
		text-align: right;
	}

	.svc-chapter__body {
		padding: 1.5rem 1.2rem 1.8rem;
	}

	.svc-chapter h3 {
		font-size: clamp(2.25rem, 11vw, 3.25rem);
	}

	.svc-text-link {
		min-width: 0;
		width: 100%;
	}

	.svc-process__steps {
		grid-template-columns: 1fr;
	}

	.svc-process__steps li {
		min-height: 0;
	}

	.svc-process__steps h3 {
		margin-top: 2.25rem;
	}

	.svc-process__brief {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.svc-process__brief a {
		justify-content: space-between;
	}

	.svc-context__copy ul {
		grid-template-columns: 1fr;
	}

	.svc-context__copy li:nth-child(odd) {
		padding-right: 0;
	}

	.svc-context__visual {
		min-height: 29rem;
	}

	.svc-context__large {
		inset: 0 8% 7% 0;
	}

	.svc-context__small {
		width: 48%;
		height: 38%;
		border-width: 0.4rem;
	}

	.svc-context__stamp {
		display: none;
	}

	.svc-cta__action {
		padding: 1.15rem;
	}
}

@media (max-width: 380px) {
	.svc-hero h1 {
		font-size: 3.05rem;
	}

	.svc-hero__top {
		font-size: 0.56rem;
		letter-spacing: 0.07em;
	}

	.svc-chapter__media figcaption {
		font-size: 0.56rem;
	}
}

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

	.svc-motion [data-svc-reveal],
	.svc-motion [data-svc-title],
	.svc-motion [data-svc-image] {
		opacity: 1;
		clip-path: none;
		transform: none;
		transition: none;
	}

	.svc-hero__media img,
	.svc-chapter__media img,
	.svc-context__visual img {
		transform: scale(1.02);
	}

	.svc-cta__status i {
		animation: none;
	}
}

/* Service detail */
.svc-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: center;
	font-family: var(--ed-mono);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.svc-breadcrumb a {
	color: rgba(255, 255, 255, 0.78);
	transition: color 0.3s ease;
}

.svc-breadcrumb a:hover,
.svc-breadcrumb a:focus-visible {
	color: #fff;
}

.svc-detail-hero {
	position: relative;
	min-height: min(48rem, 88svh);
	color: #fff;
	background: var(--svc-deep);
}

.svc-detail-hero__media,
.svc-detail-hero__shade {
	position: absolute;
	inset: 0;
}

.svc-detail-hero__media {
	overflow: hidden;
}

.svc-detail-hero__media img {
	width: 100%;
	height: calc(100% + 3rem);
	object-fit: cover;
	filter: saturate(0.72) contrast(1.06);
	transform: translate3d(0, var(--svc-y, 0), 0) scale(1.03);
	will-change: transform;
}

.svc-detail-hero__shade {
	background:
		linear-gradient(90deg, rgba(3, 14, 29, 0.94) 0%, rgba(3, 17, 34, 0.74) 48%, rgba(3, 18, 36, 0.34) 100%),
		linear-gradient(0deg, rgba(3, 14, 29, 0.9) 0%, transparent 48%);
}

.svc-detail-hero__content {
	z-index: 1;
	width: 100%;
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: min(48rem, 88svh);
	padding: calc(var(--ed-chrome) + 1.1rem) var(--ed-pad) 1.6rem;
}

.svc-detail-hero__main {
	align-self: center;
	max-width: 48rem;
	padding-block: clamp(2.5rem, 7vh, 5rem);
}

.svc-detail-hero h1 {
	margin: 0.9rem 0 0;
	font-family: var(--ed-display);
	font-size: clamp(3.4rem, 6.4vw, 6.4rem);
	font-weight: 500;
	line-height: 0.92;
	letter-spacing: -0.045em;
}

.svc-detail-hero__main > p:last-child {
	max-width: 36rem;
	margin-top: 1.4rem;
	padding-left: 1.1rem;
	border-left: 2px solid var(--svc-green);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.74);
}

.svc-detail-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.svc-detail-hero__cta,
.svc-detail-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 1.25rem;
	padding: 0.9rem 1.1rem;
	font-family: var(--ed-mono);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.svc-detail-hero__cta {
	background: var(--svc-green);
	color: var(--svc-deep);
}

.svc-detail-hero__cta:hover,
.svc-detail-hero__cta:focus-visible {
	background: #fff;
}

.svc-detail-hero__back {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

.svc-detail-hero__back:hover,
.svc-detail-hero__back:focus-visible {
	border-color: #fff;
}

.svc-detail-body {
	padding: clamp(4rem, 7vw, 6.5rem) var(--ed-pad);
	background: #fff;
}

.svc-detail-body__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}

.svc-heading--compact {
	grid-template-columns: 1fr;
	padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.svc-detail-body__copy > p {
	max-width: 42rem;
	margin-top: 1.35rem;
	line-height: 1.75;
	color: var(--svc-muted);
}

.svc-detail-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--svc-line);
}

.svc-detail-meta > div {
	min-width: 0;
}

.svc-detail-meta span {
	display: block;
	margin-bottom: 0.45rem;
	font-family: var(--ed-mono);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--svc-green);
}

.svc-detail-meta strong {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
}

.svc-detail-body__media {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: var(--svc-paper);
	aspect-ratio: 4 / 5;
}

.svc-detail-body__media img {
	width: 100%;
	height: calc(100% + 2rem);
	object-fit: cover;
	transform: translate3d(0, var(--svc-y, 0), 0) scale(1.02);
	will-change: transform;
}

.svc-detail-body__media figcaption {
	position: absolute;
	inset: auto 0 0;
	padding: 1rem 1.15rem;
	background: linear-gradient(0deg, rgba(4, 19, 38, 0.82), transparent);
	font-family: var(--ed-mono);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.svc-detail-points {
	padding: clamp(4rem, 7vw, 6.5rem) var(--ed-pad);
	background: var(--svc-paper);
}

.svc-detail-points__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.svc-detail-points__list li {
	display: grid;
	grid-template-columns: 2.5rem minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	min-height: 8.5rem;
	padding: 1.35rem 1.4rem;
	background: #fff;
	border: 1px solid var(--svc-line);
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-detail-points__list li:hover {
	border-color: rgba(6, 63, 143, 0.28);
	box-shadow: 0 16px 40px rgba(6, 27, 54, 0.08);
	transform: translateY(-3px);
}

.svc-detail-points__list span {
	font-family: var(--ed-mono);
	font-size: 0.66rem;
	font-weight: 700;
	color: var(--svc-green);
}

.svc-detail-points__list strong {
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.4;
}

.svc-detail-split {
	padding: clamp(4rem, 7vw, 6.5rem) var(--ed-pad);
	background: var(--svc-navy);
	color: #fff;
}

.svc-detail-split__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}

.svc-detail-split h2 {
	margin: 0.8rem 0 0;
	font-family: var(--ed-display);
	font-size: clamp(2.4rem, 4.5vw, 4.2rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.svc-detail-checklist {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.svc-detail-checklist li {
	display: grid;
	grid-template-columns: 1rem minmax(0, 1fr);
	gap: 0.9rem;
	align-items: start;
	padding: 0.95rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.svc-detail-checklist span {
	width: 0.55rem;
	height: 0.55rem;
	margin-top: 0.45rem;
	border-radius: 50%;
	background: var(--svc-green);
}

.svc-detail-prepare {
	padding: clamp(1.4rem, 3vw, 2.1rem);
	background: rgba(4, 19, 38, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.svc-detail-prepare h3 {
	margin: 0.85rem 0 0;
	font-family: var(--ed-display);
	font-size: clamp(1.7rem, 2.8vw, 2.4rem);
	font-weight: 500;
	line-height: 1.05;
}

.svc-detail-prepare ul {
	margin: 1.4rem 0 0;
	padding: 0;
	list-style: none;
}

.svc-detail-prepare li {
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.svc-detail-prepare a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
	padding: 0.95rem 1.1rem;
	background: var(--svc-green);
	font-family: var(--ed-mono);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--svc-deep);
}

.svc-detail-related {
	padding: clamp(4rem, 7vw, 6.5rem) var(--ed-pad);
	background: #fff;
}

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

.svc-detail-related__links a {
	display: grid;
	grid-template-columns: 2.5rem minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: center;
	min-height: 7.5rem;
	padding: 1.35rem 1.4rem;
	border: 1px solid var(--svc-line);
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-detail-related__links a:hover,
.svc-detail-related__links a:focus-visible {
	border-color: rgba(6, 63, 143, 0.3);
	box-shadow: 0 16px 40px rgba(6, 27, 54, 0.08);
	transform: translateY(-3px);
}

.svc-detail-related__links span {
	font-family: var(--ed-mono);
	font-size: 0.66rem;
	font-weight: 700;
	color: var(--svc-green);
}

.svc-detail-related__links strong {
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 600;
	line-height: 1.2;
}

.svc-detail-related__links i {
	font-style: normal;
	transition: transform 0.3s ease;
}

.svc-detail-related__links a:hover i,
.svc-detail-related__links a:focus-visible i {
	transform: rotate(45deg);
}

@media (max-width: 900px) {
	.svc-detail-body__grid,
	.svc-detail-split__grid {
		grid-template-columns: 1fr;
	}

	.svc-detail-meta,
	.svc-detail-points__list,
	.svc-detail-related__links {
		grid-template-columns: 1fr;
	}

	.svc-detail-body__media {
		max-width: 28rem;
		aspect-ratio: 5 / 4;
	}
}

@media (max-width: 640px) {
	.svc-detail-hero {
		min-height: 42rem;
	}

	.svc-detail-hero__content {
		min-height: 42rem;
		padding: calc(var(--ed-chrome) + 0.8rem) clamp(1rem, 4.5vw, 1.35rem) 1.2rem;
	}

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

	.svc-detail-body,
	.svc-detail-points,
	.svc-detail-split,
	.svc-detail-related {
		padding-inline: clamp(1rem, 4.5vw, 1.35rem);
	}

	.svc-detail-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.svc-detail-hero__cta,
	.svc-detail-hero__back {
		justify-content: space-between;
	}

	.svc-detail-points__list li,
	.svc-detail-related__links a {
		min-height: 0;
	}
}
