/* -------------------------------------------------------------------------- */
/* Service pages — Tranzport-style hero                                       */
/* -------------------------------------------------------------------------- */

.service-page {
	--service-dark: #05051e;
	--service-ink: #f9f9ff;
	--service-muted: rgba(249, 249, 255, 0.55);
	--service-green: #2cac66;
	background: var(--service-dark);
	color: var(--service-ink);
	overflow-x: clip;
}

.service-page .site-footer {
	margin-top: 0;
}

.service-hero {
	--service-mx: 50%;
	--service-my: 50%;
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(100vh, 920px);
	padding: clamp(120px, 16vw, 180px) var(--ykg-gutter) clamp(88px, 10vw, 140px);
	background: var(--service-dark);
	overflow: visible;
	text-align: center;
}

/* Air freight hero — bottom notch cutout reveals the video */
.service-hero--air {
	z-index: 2;
	min-height: min(78vh, 760px);
	padding: clamp(96px, 10vw, 120px) var(--ykg-gutter) clamp(200px, 14vw, 240px);
	-webkit-mask-image:
		linear-gradient(#000 0 0),
		url("../images/air-hero-notch-mask.svg");
	mask-image:
		linear-gradient(#000 0 0),
		url("../images/air-hero-notch-mask.svg");
	-webkit-mask-size:
		100% calc(100% - 28px),
		100% 29px;
	mask-size:
		100% calc(100% - 28px),
		100% 29px;
	-webkit-mask-position: top, bottom;
	mask-position: top, bottom;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-composite: source-over;
	mask-composite: add;
}

.service-hero--air .service-hero__lead {
	margin-bottom: 0;
}

/* Light hero — Kara Taşımacılığı + SVG ledge notch (video peeks up) */
.service-hero--road {
	z-index: 2;
	min-height: min(78vh, 760px);
	padding: clamp(96px, 10vw, 120px) var(--ykg-gutter) clamp(200px, 14vw, 240px);
	background: transparent;
	color: #05051e;
	overflow: visible;
	-webkit-mask-image: none;
	mask-image: none;
}

.service-hero--road .service-hero__plate {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 29px;
	z-index: 0;
	background: #f0f0f0;
	pointer-events: none;
}

.service-hero--road .service-hero__grid {
	inset: 0 0 29px 0;
	z-index: 1;
}

.service-hero--road .service-hero__inner {
	position: relative;
	z-index: 1;
}

.service-hero--road .service-hero__title {
	color: #05051e;
}

.service-hero--road .service-hero__lead {
	margin-bottom: 0;
	color: rgba(5, 5, 30, 0.58);
}

.service-hero__road-ledge {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	height: 29px;
	line-height: 0;
	pointer-events: none;
}

.service-hero__road-ledge svg {
	display: block;
	width: 100%;
	height: 29px;
	overflow: visible;
}

.service-page:has(.service-hero--road) .service-showreel {
	margin-top: -29px;
	z-index: 1;
}

.service-hero--air .service-hero__bottom-join {
	display: none;
}

.service-hero__grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;
	background-image: var(--service-grid-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: opacity 0.35s ease;
	-webkit-mask-image: radial-gradient(
		circle 320px at var(--service-mx) var(--service-my),
		#000 0%,
		rgba(0, 0, 0, 0.55) 42%,
		transparent 72%
	);
	mask-image: radial-gradient(
		circle 320px at var(--service-mx) var(--service-my),
		#000 0%,
		rgba(0, 0, 0, 0.55) 42%,
		transparent 72%
	);
}

.service-hero.is-lit .service-hero__grid {
	opacity: 1;
}

.service-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(100%, 820px);
	margin: 0 auto;
}

.service-hero__title {
	margin: 0 0 22px;
	font-family: var(--ykg-font);
	font-size: clamp(2.4rem, 6vw, 4.25rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--service-ink);
}

.service-hero__lead {
	margin: 0 0 36px;
	max-width: 36rem;
	font-family: var(--ykg-font);
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	font-weight: 400;
	line-height: 1.55;
	color: var(--service-muted);
}

.service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.service-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	border-radius: 999px;
	font-family: var(--ykg-font);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-hero__btn:hover,
.service-hero__btn:focus-visible {
	transform: translateY(-1px);
}

.service-hero__btn--primary {
	background: var(--service-green);
	color: #fff;
	border: 1px solid transparent;
}

.service-hero__btn--primary:hover,
.service-hero__btn--primary:focus-visible {
	background: #24965a;
	color: #fff;
}

.service-hero__btn--light {
	background: #fff;
	color: var(--service-dark);
	border: 1px solid #fff;
}

.service-hero__btn--light:hover,
.service-hero__btn--light:focus-visible {
	background: #f0f0f0;
	color: var(--service-dark);
}

.service-hero__bottom-join {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 29px;
	color: #f4f4f4;
	pointer-events: none;
	line-height: 0;
}

.service-hero__bottom-join::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #f4f4f4;
	z-index: -1;
}

.service-hero__bottom-join svg {
	display: block;
	position: relative;
	z-index: 1;
	width: min(527px, 92vw);
	height: auto;
	aspect-ratio: 527 / 29;
	overflow: visible;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.service-hero {
		min-height: min(92vh, 760px);
		padding-top: 110px;
	}

	.service-hero--air,
	.service-hero--road {
		min-height: min(66vh, 620px);
		padding: 100px var(--ykg-gutter) 190px;
	}

	.service-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: min(100%, 320px);
	}

	.service-hero__btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-hero__grid,
	.service-hero__btn {
		transition: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Air showreel — full-viewport sticky video + glass panels                   */
/* -------------------------------------------------------------------------- */

.service-showreel {
	--service-showreel-steps: 3;
	position: relative;
	z-index: 2;
	width: 100%;
	/* Extra scroll room so 1 → Kapı Teslim → Charter feels clear */
	height: calc(100vh * (1.15 * var(--service-showreel-steps)));
	height: calc(100dvh * (1.15 * var(--service-showreel-steps)));
	margin-top: -29px;
	margin-bottom: 0;
	background: #0a0a14;
	overflow: visible;
}

.service-showreel__pin {
	position: sticky;
	top: 0;
	z-index: 2;
	height: 100vh;
	height: 100dvh;
	overflow: visible;
}

.service-showreel__video {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.service-showreel__bottom-join {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	z-index: 6;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 29px;
	color: #f4f4f4;
	pointer-events: none;
	line-height: 0;
}

.service-showreel__bottom-join::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #f4f4f4;
	z-index: -1;
}

.service-showreel__bottom-join svg {
	display: block;
	position: relative;
	z-index: 1;
	width: min(527px, 92vw);
	height: auto;
	aspect-ratio: 527 / 29;
	overflow: visible;
	flex-shrink: 0;
}

.service-showreel__ui {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 320px;
	padding: clamp(88px, 12vh, 120px) clamp(24px, 5vw, 72px) clamp(100px, 14vh, 160px);
	pointer-events: none;
}

.service-showreel__nav,
.service-showreel__panel {
	pointer-events: auto;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 22px;
	background: rgba(18, 20, 28, 0.38);
	-webkit-backdrop-filter: blur(22px);
	backdrop-filter: blur(22px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
	color: #fff;
}

.service-showreel__nav {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0;
	width: 464px;
	height: 475px;
	max-width: 100%;
	margin-left: 240px;
	padding: 24px;
	flex-shrink: 0;
	box-sizing: border-box;
	overflow: hidden;
}

.service-showreel__nav-btn {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: var(--ykg-font);
	font-size: clamp(1.35rem, 2vw, 1.65rem);
	font-weight: 500;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
	transition: opacity 0.2s ease;
	flex-shrink: 0;
}

.service-showreel__nav-btn + .service-showreel__nav-btn,
.service-showreel__thumb-stage + .service-showreel__nav-btn {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.service-showreel__nav-btn:hover,
.service-showreel__nav-btn:focus-visible {
	color: #fff;
	opacity: 0.85;
}

.service-showreel__nav-btn.is-active {
	color: #fff;
	opacity: 1;
	font-weight: 600;
}

.service-showreel__thumb-stage {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	margin-top: 16px;
	overflow: hidden;
	border-radius: 12px;
}

.service-showreel__thumb-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate3d(0, 105%, 0);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.service-showreel__thumb-img.is-active {
	transform: translate3d(0, 0, 0);
	z-index: 2;
}

.service-showreel__thumb-img.is-exit-up {
	transform: translate3d(0, -105%, 0);
	z-index: 1;
}

.service-showreel__thumb-img.is-exit-down {
	transform: translate3d(0, 105%, 0);
	z-index: 1;
}

.service-showreel__thumb-img.is-enter-up {
	transform: translate3d(0, 105%, 0);
	z-index: 3;
}

.service-showreel__thumb-img.is-enter-down {
	transform: translate3d(0, -105%, 0);
	z-index: 3;
}

.service-showreel__panel {
	width: min(100%, 420px);
	min-height: 320px;
	margin: 0;
	padding: 32px 32px 36px;
	box-sizing: border-box;
	overflow: hidden;
}

.service-showreel__panel-track {
	position: relative;
	min-height: 100%;
}

.service-showreel__panel-slide {
	width: 100%;
}

.service-showreel__panel-slide.is-active {
	position: relative;
	transform: translate3d(0, 0, 0);
	opacity: 1;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.service-showreel__panel-slide.is-exit-up,
.service-showreel__panel-slide.is-exit-down {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	pointer-events: none;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.service-showreel__panel-slide.is-exit-up {
	transform: translate3d(0, -28px, 0);
	opacity: 0;
}

.service-showreel__panel-slide.is-exit-down {
	transform: translate3d(0, 28px, 0);
	opacity: 0;
}

.service-showreel__panel-slide.is-enter-up {
	transform: translate3d(0, 36px, 0);
	opacity: 0;
}

.service-showreel__panel-slide.is-enter-down {
	transform: translate3d(0, -36px, 0);
	opacity: 0;
}

.service-showreel__panel-title {
	margin: 0 0 18px;
	font-family: var(--ykg-font);
	font-size: clamp(1.85rem, 3vw, 2.45rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #fff;
}

.service-showreel__panel-text {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: clamp(0.95rem, 1.2vw, 1.05rem);
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 960px) {
	.service-showreel {
		height: calc(100vh * (1.1 * var(--service-showreel-steps)));
		height: calc(100dvh * (1.1 * var(--service-showreel-steps)));
		min-height: 0;
	}

	.service-showreel__pin {
		position: sticky;
		top: 0;
		height: 100vh;
		height: 100dvh;
		overflow: hidden;
	}

	.service-showreel__ui {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-end;
		gap: 12px;
		padding: 88px 16px 24px;
	}

	.service-showreel__nav {
		width: 100%;
		height: auto;
		max-height: min(52vh, 420px);
		min-height: 0;
		margin-left: 0;
		overflow: hidden;
	}

	.service-showreel__thumb-stage {
		aspect-ratio: 16 / 10;
		min-height: 110px;
		max-height: 160px;
		flex: 0 0 auto;
	}

	.service-showreel__panel {
		align-self: stretch;
		width: 100%;
		max-height: min(34vh, 280px);
		margin-bottom: 0;
		overflow: auto;
	}

	.service-showreel__panel-title {
		font-size: clamp(1.15rem, 4.5vw, 1.45rem);
	}

	.service-showreel__panel-text {
		font-size: 0.9rem;
		line-height: 1.45;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-showreel__nav-btn,
	.service-showreel__thumb-img,
	.service-showreel__panel-slide {
		transition: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Offerings — Tranzport ocean-freight split panel                            */
/* -------------------------------------------------------------------------- */

.service-offerings {
	--service-offerings-steps: 6;
	position: relative;
	height: calc(100vh * (0.72 * var(--service-offerings-steps)));
	height: calc(100dvh * (0.72 * var(--service-offerings-steps)));
	padding: 0;
	background: var(--service-dark);
	color: var(--service-dark);
	box-sizing: border-box;
}

.service-offerings__pin {
	position: sticky;
	top: 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 100vh;
	height: 100dvh;
	padding: clamp(36px, 5vh, 56px) var(--ykg-gutter);
	box-sizing: border-box;
}

.service-offerings__frame {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(14px, 1.6vw, 22px);
	align-items: stretch;
	flex: 1 1 auto;
	width: min(100%, calc(var(--ykg-container-max) + 80px));
	min-height: 0;
	height: 100%;
	margin: 0 auto;
	overflow: visible;
	border-radius: 0;
	background: transparent;
}

.service-offerings__left {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 12px;
	min-width: 0;
	padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 48px) clamp(22px, 2.5vw, 36px);
	overflow: visible;
	border-radius: 28px;
	background: #f0f0f0;
}

.service-offerings__eyebrow {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: clamp(0.78rem, 1.1vw, 0.92rem);
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.35;
	text-align: center;
	color: rgba(5, 5, 30, 0.42);
}

.service-offerings__stage {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 1.4vw, 18px);
	min-height: 0;
	padding: 8px 0;
}

.service-offerings__item {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--ykg-font);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.15;
	text-align: center;
	white-space: nowrap;
	color: rgba(5, 5, 30, 0.22);
	cursor: pointer;
	transition: color 0.28s ease, font-size 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.service-offerings__item[data-distance="0"] {
	font-size: clamp(1.8rem, 3.5vw, 2.75rem);
	font-weight: 400;
	color: #05051e;
}

.service-offerings__item[data-distance="1"] {
	font-size: clamp(1.35rem, 2.4vw, 1.9rem);
	color: rgba(5, 5, 30, 0.38);
}

.service-offerings__item[data-distance="2"] {
	font-size: clamp(1.15rem, 1.85vw, 1.45rem);
	color: rgba(5, 5, 30, 0.22);
}

.service-offerings__item[data-distance="3"],
.service-offerings__item[data-distance="4"],
.service-offerings__item[data-distance="5"] {
	font-size: clamp(0.95rem, 1.4vw, 1.15rem);
	color: rgba(5, 5, 30, 0.14);
}

.service-offerings__item[hidden] {
	display: none;
}

.service-offerings__item:hover,
.service-offerings__item:focus-visible {
	color: rgba(5, 5, 30, 0.7);
}

.service-offerings__item[data-distance="0"]:hover,
.service-offerings__item[data-distance="0"]:focus-visible {
	color: #05051e;
}

.service-offerings__shorts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(12px, 2vw, 28px);
	padding-top: 8px;
}

.service-offerings__short {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--ykg-font);
	font-size: clamp(0.72rem, 1vw, 0.82rem);
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(5, 5, 30, 0.28);
	cursor: pointer;
	transition: color 0.2s ease;
}

.service-offerings__short:hover,
.service-offerings__short:focus-visible {
	color: rgba(5, 5, 30, 0.65);
}

.service-offerings__short.is-active {
	color: rgba(5, 5, 30, 0.78);
}

.service-offerings__right {
	position: relative;
	z-index: 1;
	min-height: 100%;
	overflow: hidden;
	border-radius: 28px;
	background: #0a3a3a;
}

.service-offerings__notch {
	position: absolute;
	top: 48px;
	right: 0;
	z-index: 4;
	width: 40px;
	height: 270px;
	pointer-events: none;
	background: #f0f0f0;
	transform: translateX(calc(100% - 8px));
	-webkit-mask-image: url("../images/ocean-offerings-notch.svg");
	mask-image: url("../images/ocean-offerings-notch.svg");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.service-offerings__notch--media {
	left: 0;
	right: auto;
	z-index: 3;
	background: var(--service-dark);
	transform: translateX(-8px);
}

.service-offerings__figure {
	position: absolute;
	inset: 0;
	margin: 0;
	overflow: hidden;
}

.service-offerings__image,
.service-offerings__image-fallback {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.service-offerings__image {
	z-index: 0;
	transform: translate3d(0, -101%, 0);
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.service-offerings__image.is-stacked {
	z-index: 1;
	transform: translate3d(0, 0, 0);
	transition: none;
}

.service-offerings__image.is-active {
	z-index: 2;
	transform: translate3d(0, 0, 0);
}

.service-offerings__image-fallback {
	background: linear-gradient(145deg, #0a3a3a, #05051e);
}

.service-offerings__card {
	position: absolute;
	right: clamp(18px, 2.4vw, 32px);
	bottom: clamp(18px, 2.4vw, 32px);
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: min(100% - 36px, 360px);
	padding: 24px 24px 26px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	background: rgba(20, 22, 28, 0.42);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	color: #fff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.service-offerings__card-icon {
	display: inline-flex;
	color: #fff;
	opacity: 0.95;
}

.service-offerings__card-icon svg {
	width: 34px;
	height: 34px;
}

.service-offerings__card-text {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: clamp(0.95rem, 1.15vw, 1.05rem);
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 960px) {
	.service-offerings {
		height: calc(100vh * (0.78 * var(--service-offerings-steps)));
		height: calc(100dvh * (0.78 * var(--service-offerings-steps)));
	}

	.service-offerings__pin {
		position: sticky;
		top: 0;
		height: 100vh;
		height: 100dvh;
		padding: 16px var(--ykg-gutter);
		overflow: hidden;
	}

	.service-offerings__frame {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(0, 0.42fr) minmax(0, 0.58fr);
		gap: 10px;
		min-height: 0;
		height: 100%;
	}

	.service-offerings__right {
		order: -1;
		min-height: 0;
		height: 100%;
	}

	.service-offerings__notch {
		display: none;
	}

	.service-offerings__left {
		min-height: 0;
		height: 100%;
		padding: 18px 16px 14px;
	}

	.service-offerings__item {
		white-space: normal;
	}

	.service-offerings__item[data-distance="0"] {
		font-size: clamp(1.35rem, 5.8vw, 1.85rem);
	}

	.service-offerings__item[data-distance="1"] {
		font-size: clamp(1.05rem, 4.2vw, 1.35rem);
	}

	.service-offerings__item[data-distance="2"] {
		font-size: clamp(0.92rem, 3.6vw, 1.1rem);
	}

	.service-offerings__stage {
		gap: 8px;
		padding: 4px 0;
	}

	.service-offerings__shorts {
		gap: 10px 14px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.service-offerings__card {
		width: min(100% - 20px, 100%);
		right: 10px;
		bottom: 10px;
		left: 10px;
		padding: 14px 16px;
	}

	.service-offerings__card-text {
		font-size: 0.88rem;
		line-height: 1.45;
	}
}

@media (max-width: 767px) {
	.service-offerings__pin {
		padding: 12px;
	}

	.service-offerings__frame {
		gap: 8px;
		grid-template-rows: minmax(0, 0.4fr) minmax(0, 0.6fr);
	}

	.service-offerings__left,
	.service-offerings__right {
		border-radius: 20px;
	}

	.service-offerings__card {
		width: min(100% - 16px, 100%);
		right: 8px;
		bottom: 8px;
		left: 8px;
		padding: 12px 14px;
	}

	.service-offerings__shorts {
		gap: 8px 12px;
	}

	.service-offerings__short {
		font-size: 0.72rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-hero__grid,
	.service-hero__btn,
	.service-offerings__item,
	.service-offerings__short,
	.service-offerings__image {
		transition: none;
		transform: none;
	}

	.service-offerings__image:not(.is-active) {
		opacity: 0;
	}

	.service-offerings__image.is-active {
		opacity: 1;
	}
}

/* -------------------------------------------------------------------------- */
/* Why choose — 3 feature cards                                               */
/* -------------------------------------------------------------------------- */

.service-why {
	--service-why-mx: 50%;
	--service-why-my: 50%;
	position: relative;
	isolation: isolate;
	padding: clamp(72px, 10vw, 120px) var(--ykg-gutter) clamp(88px, 11vw, 128px);
	background: #070730;
	color: var(--service-ink);
	overflow: visible;
}

.service-why__top-join {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 29px;
	color: #05051e;
	pointer-events: none;
	line-height: 0;
}

.service-why__top-join svg {
	display: block;
	width: min(527px, 92vw);
	height: 29px;
}

.service-why__grid-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0;
	overflow: hidden;
	background-image: var(--service-why-grid-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: opacity 0.35s ease;
	-webkit-mask-image: radial-gradient(
		circle 320px at var(--service-why-mx) var(--service-why-my),
		#000 0%,
		rgba(0, 0, 0, 0.55) 42%,
		transparent 72%
	);
	mask-image: radial-gradient(
		circle 320px at var(--service-why-mx) var(--service-why-my),
		#000 0%,
		rgba(0, 0, 0, 0.55) 42%,
		transparent 72%
	);
}

.service-why.is-lit .service-why__grid-bg {
	opacity: 1;
}

.service-why__inner {
	position: relative;
	z-index: 2;
	width: min(100%, calc(var(--ykg-container-max) + 40px));
	margin: 0 auto;
}

.service-why__header {
	max-width: 48rem;
	margin: 0 auto clamp(40px, 6vw, 64px);
	text-align: center;
}

.service-why__title {
	margin: 0 0 16px;
	font-family: var(--ykg-font);
	font-size: clamp(1.85rem, 3.6vw, 2.85rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #fff;
}

.service-why__title--snake {
	color: rgba(255, 255, 255, 0.38);
}

.service-why__title--snake .solutions-section__snake-char {
	color: rgba(255, 255, 255, 0.38);
	font-weight: 700;
}

.service-why__title--snake .solutions-section__snake-char.is-lit.is-lit--tip {
	color: #7dff9a;
}

.service-why__title--snake .solutions-section__snake-char.is-lit.is-lit--green {
	color: color-mix(
		in srgb,
		#ffffff calc((1 - var(--lit-level, 1)) * 100%),
		#28ee5f calc(var(--lit-level, 1) * 100%)
	);
}

.service-why__title--snake .solutions-section__snake-char.is-lit.is-lit--navy {
	color: #fff;
}

.service-why__lead {
	margin: 0 auto;
	max-width: 34rem;
	font-family: var(--ykg-font);
	font-size: clamp(0.98rem, 1.4vw, 1.12rem);
	font-weight: 400;
	line-height: 1.55;
	color: rgba(249, 249, 255, 0.55);
}

.service-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 417px));
	justify-content: center;
	gap: clamp(16px, 2vw, 22px);
}

.service-why__card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
	width: 100%;
	max-width: 417px;
	min-height: 288px;
	height: 288px;
	padding: 24px;
	border: 0;
	border-radius: 16px;
	/* Solid mix of #FFFFFF0F on #070730 so grid stays behind cards */
	background: color-mix(in srgb, #ffffff 6%, #070730);
	box-shadow: none;
	box-sizing: border-box;
}

.service-why__icon {
	display: inline-flex;
	color: var(--service-green);
}

.service-why__card-title {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #fff;
}

.service-why__card-text {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(249, 249, 255, 0.58);
}

.service-why__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: clamp(36px, 5vw, 52px);
}

.service-why__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	border-radius: 999px;
	font-family: var(--ykg-font);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.service-why__btn:hover,
.service-why__btn:focus-visible {
	transform: translateY(-1px);
}

.service-why__btn--primary {
	background: #fff;
	color: #070730;
	border: 1.5px solid #fff;
}

.service-why__btn--primary:hover,
.service-why__btn--primary:focus-visible {
	background: #f3f3f3;
	color: #070730;
}

.service-why__btn--ghost {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.service-why__btn--ghost:hover,
.service-why__btn--ghost:focus-visible {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.service-why__bottom-join {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 29px;
	color: #f4f4f4;
	pointer-events: none;
	line-height: 0;
}

.service-why__bottom-join::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #f4f4f4;
	z-index: -1;
}

.service-why__bottom-join svg {
	display: block;
	position: relative;
	z-index: 1;
	width: min(527px, 92vw);
	height: auto;
	aspect-ratio: 527 / 29;
	overflow: visible;
	flex-shrink: 0;
}

@media (max-width: 960px) {
	.service-why__grid {
		grid-template-columns: minmax(0, 417px);
		max-width: 417px;
		margin: 0 auto;
	}

	.service-why__card {
		height: auto;
		min-height: 288px;
	}
}

@media (max-width: 767px) {
	.service-why {
		padding-block: 64px;
	}

	.service-why__actions {
		flex-direction: column;
		align-items: stretch;
		width: min(100%, 320px);
		margin-inline: auto;
	}

	.service-why__btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-why__grid-bg {
		transition: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Air why — light footprint grid + snake title                               */
/* -------------------------------------------------------------------------- */

.service-air-why {
	position: relative;
	z-index: 1;
	padding: clamp(80px, 9vw, 130px) 0 clamp(100px, 10vw, 140px);
	background: #f4f4f4;
	color: #05051e;
}

/*
 * Kara bottom: mirror of hero ledge, flipped — video tab dips OUT into #F0F0F0
 * (not light tongue poking IN to the video).
 */
.service-air-why--road {
	z-index: 3;
	margin-top: -29px;
	padding-top: calc(29px + clamp(80px, 9vw, 130px));
	background: transparent;
}

.service-air-why--road .service-air-why__plate {
	position: absolute;
	left: 0;
	right: 0;
	top: 26px;
	bottom: 0;
	z-index: 0;
	background: #f0f0f0;
	pointer-events: none;
}

.service-air-why--road .service-air-why__inner {
	position: relative;
	z-index: 1;
}

.service-air-why__top-ledge {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 2;
	height: 29px;
	line-height: 0;
	pointer-events: none;
	overflow: visible;
}

.service-air-why__top-ledge svg {
	display: block;
	width: 100%;
	height: 29px;
	overflow: visible;
}

.service-page:has(.service-hero--road) .service-showreel__bottom-join {
	display: none;
}

.service-page:has(.service-hero--road) .service-showreel {
	z-index: 1;
}

.service-air-why__inner {
	width: min(calc(100% - var(--ykg-gutter) * 2), calc(var(--ykg-container-max) + 40px));
	margin: 0 auto;
	text-align: center;
}

.service-air-why__title {
	margin: 0 0 18px;
	font-family: var(--ykg-font);
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: #05051e;
}

.service-air-why__title--snake .solutions-section__snake-char {
	color: #05051e;
}

.service-air-why__title--snake .solutions-section__snake-char.is-lit.is-lit--tip {
	color: #7dff9a;
}

.service-air-why__title--snake .solutions-section__snake-char.is-lit.is-lit--green {
	color: color-mix(
		in srgb,
		#05051e calc((1 - var(--lit-level, 1)) * 100%),
		#28ee5f calc(var(--lit-level, 1) * 100%)
	);
}

.service-air-why__title--snake .solutions-section__snake-char.is-lit.is-lit--navy {
	color: #05051e;
}

.service-air-why__lead {
	margin: 0 auto clamp(40px, 5vw, 72px);
	max-width: 36rem;
	font-family: var(--ykg-font);
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 400;
	line-height: 1.55;
	color: #05051e;
	opacity: 0.5;
}

.service-air-why__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid #d9d9d9;
	background: #f7f7f7;
	text-align: left;
}

.service-air-why__card {
	padding: clamp(28px, 3vw, 40px) clamp(24px, 3.5vw, 56px);
	border-right: 1px solid #d9d9d9;
}

.service-air-why__card:last-child {
	border-right: 0;
}

.service-air-why__card-title {
	margin: 0 0 16px;
	font-family: var(--ykg-font);
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #05051e;
}

.service-air-why__card-text {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.55;
	color: #05051e;
	opacity: 0.58;
}

.service-air-why__plus {
	position: absolute;
	z-index: 2;
	font-family: var(--ykg-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #a2a2a2;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.service-air-why__plus--tl { top: 0; left: 0; }
.service-air-why__plus--tr { top: 0; left: 100%; }
.service-air-why__plus--bl { top: 100%; left: 0; }
.service-air-why__plus--br { top: 100%; left: 100%; }
.service-air-why__plus--t1 { top: 0; left: 33.333%; }
.service-air-why__plus--t2 { top: 0; left: 66.666%; }
.service-air-why__plus--b1 { top: 100%; left: 33.333%; }
.service-air-why__plus--b2 { top: 100%; left: 66.666%; }

@media (max-width: 900px) {
	.service-air-why__grid {
		grid-template-columns: 1fr;
	}

	.service-air-why__card {
		border-right: 0;
		border-bottom: 1px solid #d9d9d9;
	}

	.service-air-why__card:last-child {
		border-bottom: 0;
	}

	.service-air-why__plus--t1,
	.service-air-why__plus--t2,
	.service-air-why__plus--b1,
	.service-air-why__plus--b2 {
		display: none;
	}
}
