/* ==========================================================================
   page-services.css — Services Main Page
   NextWave BPO · Estilos específicos de la página de servicios.
   Depende de: style.css → lp-base.css
   Prefijo: srv-
   ========================================================================== */


/* html/body overflow-x:hidden (global, style.css) breaks position:sticky — scoped fix for this page only */
body.page-template-page-services-php {
	overflow-x: visible;
}

html:has(body.page-template-page-services-php) {
	overflow-x: visible;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
	.lp-fade-up {
		opacity: 0;
		transform: translateY(24px);
		transition: opacity .55s ease-out, transform .55s ease-out;
	}
	.lp-fade-up.is-visible { opacity: 1; transform: none; }

	.lp-fade-right {
		opacity: 0;
		transform: translateX(-32px);
		transition: opacity .6s ease-out, transform .6s ease-out;
	}
	.lp-fade-right.is-visible { opacity: 1; transform: none; }

	.lp-fade-left {
		opacity: 0;
		transform: translateX(32px);
		transition: opacity .6s ease-out, transform .6s ease-out;
	}
	.lp-fade-left.is-visible { opacity: 1; transform: none; }

	/* Stagger */
	.srv-cards__grid .srv-card-stack:nth-child(2) .srv-card { transition-delay: 100ms; }
	.srv-cards__grid .srv-card-stack:nth-child(3) .srv-card { transition-delay: 200ms; }
	.srv-cards__grid .srv-card-stack:nth-child(4) .srv-card { transition-delay: 100ms; }
	.srv-cards__grid .srv-card-stack:nth-child(5) .srv-card { transition-delay: 200ms; }

	.srv-why__features .srv-why__feat:nth-child(2) { transition-delay: 120ms; }
	.srv-why__features .srv-why__feat:nth-child(3) { transition-delay: 240ms; }

	.srv-cmp__row:nth-child(even) { transition-delay: 60ms; }
}
@media (prefers-reduced-motion: reduce) {
	.lp-fade-up,
	.lp-fade-right,
	.lp-fade-left { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.srv-hero {
	position: relative;
	height: calc(100vh - var(--nw-header-h, 124px));
	height: calc(100svh - var(--nw-header-h, 124px));
	min-height: 480px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #02060C;
}

/* Cyan line top */
.srv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--nw-cyan) 30%, rgba(0,180,216,.35) 65%, transparent 100%);
}

/* Radial cyan glows */
.srv-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		radial-gradient(ellipse 60% 50% at 12% 20%, rgba(0,180,216,.09) 0%, transparent 60%),
		radial-gradient(ellipse 40% 40% at 85% 80%, rgba(0,180,216,.05) 0%, transparent 55%);
}

.srv-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%;
	z-index: 0;
}

.srv-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 12, 0.75);
	z-index: 1;
}

.srv-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: var(--nw-gutter, 32px);
}

.srv-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: .75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .22em;
	color: var(--nw-cyan);
	margin-bottom: 22px;
}

.srv-hero__eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: var(--nw-cyan);
	border-radius: 2px;
}

.srv-hero__title {
	font-size: 58px;
	font-weight: 900;
	color: #fff !important;
	line-height: 1;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	margin: 0 0 22px;
}

/* Title sized to match the universal Hero standard (Remote Talent's
   .rt2-hero__title) — 58px desktop, tablet/mobile scale down from there. */
@media (max-width: 900px) and (min-width: 641px) {
	.srv-hero__title {
		font-size: clamp(2.25rem, 5vw, 3.25rem);
	}
}

.srv-hero__title em {
	display: block;
	color: var(--nw-cyan);
	font-style: normal;
	font-size: 1.25em;
	line-height: 0.95;
}

.srv-hero__sub {
	font-size: 1.05rem;
	color: rgba(255,255,255,.78);
	line-height: 1.75;
	max-width: 600px;
	margin: 0 0 36px;
}

.srv-hero__btns {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* Decorative bottom gradient fade */
.srv-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to bottom, transparent, rgba(7,17,31,.15));
	z-index: 1;
	pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 2 — SERVICES INTRO + CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.srv-cards {
	background: #f0f4f8;
	padding-block: 88px;
}

/* ── Header row ─────────────────────────────────────────────────────────── */
.srv-cards__header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 52px;
}

.srv-cards__subtext {
	font-size: .9375rem;
	color: #6b7280;
	line-height: 1.75;
	margin-bottom: 24px;
}

/* Dark pill "View All" button */
.srv-cards__viewall {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 6px 6px 22px;
	background: #0f172a;
	border-radius: 999px;
	color: #fff;
	font-size: .875rem;
	font-weight: 700;
	text-decoration: none;
	transition: opacity .2s;
}

.srv-cards__viewall:hover { opacity: .80; }

.srv-cards__viewall-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--nw-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.srv-cards__viewall-icon svg {
	width: 14px;
	height: 14px;
	stroke: #fff;
	fill: none;
}

/* ── Cards grid (3+2 centered) ──────────────────────────────────────────── */
.srv-cards__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.srv-cards__grid .srv-card-stack:nth-child(-n+3) { grid-column: span 2; }
.srv-cards__grid .srv-card-stack:nth-child(4)    { grid-column: 2 / span 2; }
.srv-cards__grid .srv-card-stack:nth-child(5)    { grid-column: 4 / span 2; }

/* Wrapper only becomes a "stack" container on mobile (see mobile breakpoint below) */
.srv-card-stack {
	position: relative;
}

/* ── Service Card ───────────────────────────────────────────────────────── */
.srv-card {
	background: #0b1624;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255,255,255,.06);
	transition: transform .25s ease, box-shadow .25s ease;
}

.srv-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 48px rgba(0,0,0,.45);
	border-color: rgba(0,180,216,.18);
}

/* Image */
.srv-card__img-wrap {
	padding: 0 14px;
	padding-top: 14px;
}

.srv-card__img {
	width: 100%;
	height: 168px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	display: block;
}

/* Body */
.srv-card__body {
	padding: 18px 22px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.srv-card__cat {
	font-size: .625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--nw-cyan);
	margin-bottom: 8px;
}

.srv-card__name {
	font-size: 1.05rem !important;
	font-weight: 700;
	color: #fff !important;
	line-height: 1.3;
	letter-spacing: -.2px;
	margin-bottom: 10px;
}

.srv-card__desc {
	font-size: .875rem;
	color: rgba(255,255,255,.58);
	line-height: 1.65;
	flex: 1;
	margin-bottom: 18px;
}

/* CTA — full width, space-between */
.srv-card__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 11px 11px 11px 20px;
	background: var(--nw-cyan);
	color: #02060C !important;
	font-size: .8125rem;
	font-weight: 700;
	border-radius: 999px;
	text-decoration: none;
	box-sizing: border-box;
	transition: background .2s ease;
}

.srv-card__cta:hover {
	background: #00c4e8;
}

.srv-card__cta-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--nw-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .2s ease;
}

.srv-card__cta:hover .srv-card__cta-icon {
	transform: translateX(3px);
}

.srv-card__cta-icon svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
}

/* ── Section 2 responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
	.srv-cards__header {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 680px) {
	.srv-cards__grid {
		grid-template-columns: 1fr;
	}
	.srv-cards__grid .srv-card-stack:nth-child(-n+3),
	.srv-cards__grid .srv-card-stack:nth-child(4),
	.srv-cards__grid .srv-card-stack:nth-child(5) {
		grid-column: span 1;
	}

	/* Mobile-only: sticky stack + scroll-scale (same mechanic as .srv-case-stack) */
	.srv-card-stack:not(:last-child) {
		min-height: 60vh;
		margin-bottom: 16px;
	}

	.srv-card {
		position: sticky;
		will-change: transform;
	}

	.srv-card-stack:nth-child(1) .srv-card { top: calc(var(--nw-header-h, 72px) + 16px); }
	.srv-card-stack:nth-child(2) .srv-card { top: calc(var(--nw-header-h, 72px) + 32px); }
	.srv-card-stack:nth-child(3) .srv-card { top: calc(var(--nw-header-h, 72px) + 48px); }
	.srv-card-stack:nth-child(4) .srv-card { top: calc(var(--nw-header-h, 72px) + 64px); }
	.srv-card-stack:nth-child(5) .srv-card { top: calc(var(--nw-header-h, 72px) + 80px); }

	/* Avoid the fade-up entrance fighting the JS scale transform on mobile */
	.srv-card.lp-fade-up {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 3 — WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════════════════ */
.srv-why {
	position: relative;
	background: #fff;
	padding-block: 80px;
}

.srv-why__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: stretch;
}

.srv-why__photo-wrap {
	border-radius: 16px;
	overflow: hidden;
	align-self: start;
	aspect-ratio: 6 / 5;
}

.srv-why__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.srv-why__content {}

/* Description + button on same row */
.srv-why__desc-row {
	display: flex;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 0;
}

.srv-why__desc {
	font-size: .9375rem;
	color: #6b7280;
	line-height: 1.78;
	flex: 1;
	margin-bottom: 0;
}

.srv-why__cta { flex-shrink: 0; }

/* Ghost button override — section has white background */
.srv-why .lp-btn--ghost {
	background: #0f172a !important;
	color: #fff !important;
	border-color: #0f172a !important;
}
.srv-why .lp-btn--ghost .lp-btn__icon {
	background: var(--nw-cyan) !important;
	border: none !important;
	color: var(--nw-navy) !important;
}
.srv-why .lp-btn--ghost:hover {
	background: #1e293b !important;
	border-color: #1e293b !important;
}

.srv-why__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
	margin-left: -380px;
	width: calc(100% + 380px);
	position: relative;
	z-index: 2;
}

.srv-why__feat {
	background: #fff;
	border: 1px solid rgba(0,0,0,.07);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.srv-why__feat-body { flex: 1; }

.srv-why__feat-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #0b1624;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.srv-why__feat-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--nw-cyan);
	fill: none;
}

.srv-why__feat-name {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 6px;
}

.srv-why__feat-desc {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #1e1e1e;
	line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 4 — COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════════════════ */
.srv-cmp {
	background: #f8fafc;
	padding-block: 80px;
}

.srv-cmp__header {
	text-align: center;
	margin-bottom: 52px;
}

.srv-cmp__subtitle {
	font-size: 1rem;
	color: #6b7280;
	line-height: 1.7;
	max-width: 520px;
	margin-inline: auto;
}

/* Table wrapper */
.srv-cmp__table-wrap {}

.srv-cmp__table-inner {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* Header row */
.srv-cmp__thead {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1.1fr;
}

.srv-cmp__thead-cell {
	padding: 20px 24px;
	font-size: .9375rem;
	font-weight: 700;
	color: #fff;
}

.srv-cmp__thead-cell--feature {
	background: #fff;
	color: transparent;
}

.srv-cmp__thead-cell--nw {
	background: var(--nw-cyan);
	color: var(--nw-navy);
	text-align: center;
}

.srv-cmp__thead-cell--typical {
	background: var(--nw-navy);
	text-align: center;
}

/* Data rows */
.srv-cmp__tbody {}

.srv-cmp__row {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1.1fr;
	border-top: 1px solid #e5e7eb;
	transition: background .18s ease;
}

.srv-cmp__row:hover { background: #f8fafc; }

.srv-cmp__cell {
	padding: 18px 24px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

/* Feature cell */
.srv-cmp__cell--feature {
	align-items: center;
}

.srv-cmp__feat-icon {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.srv-cmp__feat-icon svg {
	width: 34px;
	height: 34px;
	stroke: var(--nw-cyan-text);
	fill: none;
}

.srv-cmp__feat-label {
	font-size: .875rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.35;
}

/* NW BPO cell */
.srv-cmp__cell--nw {
	border-left: 1px solid #e5e7eb;
}

.srv-cmp__check {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.srv-cmp__check svg {
	width: 22px;
	height: 22px;
	stroke: #16a34a;
	fill: none;
}

.srv-cmp__cross {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.srv-cmp__cross svg {
	width: 22px;
	height: 22px;
	stroke: #dc2626;
	fill: none;
}

/* Typical cell */
.srv-cmp__cell--typical {
	border-left: 1px solid #e5e7eb;
}

.srv-cmp__cell-text {
	font-size: .875rem;
	color: #374151;
	line-height: 1.55;
}

/* Bottom CTA bar */
.srv-cmp__cta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 28px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.srv-cmp__cta-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.srv-cmp__cta-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.srv-cmp__cta-icon svg {
	width: 52px;
	height: 52px;
	color: var(--nw-cyan-text);
	fill: currentColor;
	stroke: none;
}

.srv-cmp__cta-text strong {
	display: block;
	font-size: .9375rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 2px;
}

.srv-cmp__cta-text span {
	font-size: .8125rem;
	color: #6b7280;
}

.srv-cmp__cta-btn {
	background: #0f172a;
	border-color: #0f172a;
	color: #fff !important;
}

.srv-cmp__cta-btn .lp-btn__icon {
	background: var(--nw-cyan);
	border: none;
	color: var(--nw-navy);
}

.srv-cmp__cta-btn:hover {
	background: #1e293b;
	border-color: #1e293b;
	transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 5 — CASE STUDIES
   ═══════════════════════════════════════════════════════════════════════════ */
.srv-cases {
	background: #fff;
	padding-block: 80px;
}

.srv-cases__inner {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 60px;
	align-items: start;
}

.srv-cases__left {
	position: sticky;
	top: calc(var(--nw-header-h, 124px) + 24px);
	align-self: start;
}

.srv-cases__desc {
	font-size: .9375rem;
	color: #6b7280;
	line-height: 1.75;
	margin-bottom: 28px;
}

/* Case study cards — right column (sticky stack + scroll-scale effect) */
.srv-cases__right {
	display: flex;
	flex-direction: column;
}

.srv-case-stack {
	position: relative;
}

.srv-case-stack:not(:last-child) {
	min-height: 50vh;
	margin-bottom: 16px;
}

.srv-case-card {
	position: sticky;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 16/7;
	display: flex;
	align-items: flex-end;
	will-change: transform;
}

.srv-case-stack:nth-child(1) .srv-case-card { top: calc(var(--nw-header-h, 124px) + 24px); }
.srv-case-stack:nth-child(2) .srv-case-card { top: calc(var(--nw-header-h, 124px) + 40px); }
.srv-case-stack:nth-child(3) .srv-case-card { top: calc(var(--nw-header-h, 124px) + 56px); }
.srv-case-stack:nth-child(4) .srv-case-card { top: calc(var(--nw-header-h, 124px) + 72px); }

.srv-case-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .4s ease;
}

.srv-case-card:hover .srv-case-card__img {
	transform: scale(1.04);
}

.srv-case-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7,17,31,.85) 0%, rgba(7,17,31,.1) 60%);
	z-index: 1;
}

.srv-case-card__body {
	position: relative;
	z-index: 2;
	padding: 20px 24px;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.srv-case-card__text {}

.srv-case-card__tag {
	font-size: .6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--nw-cyan);
	margin-bottom: 6px;
}

.srv-case-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}



/* SECTION 6 — TESTIMONIALS moved to shared component:
   assets/css/components/testimonials-slider.css */


/* SECTION 7 — FAQ moved to shared component:
   assets/css/components/faq-grid.css */


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 8 — FINAL CTA + FORM
   Moved to the shared component: assets/css/components/final-cta-form.css
   (template-parts/final-cta-form.php)
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
	.srv-cards__inner {
		grid-template-columns: 320px 1fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.srv-cards__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.srv-cards__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.srv-cards__grid .srv-card-stack:nth-child(5) {
		grid-column: 1 / -1;
		max-width: 50%;
		margin-inline: auto;
	}

	.srv-why__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.srv-why__photo-wrap {
		aspect-ratio: 3/2;
	}

	.srv-why__features {
		grid-template-columns: repeat(3, 1fr);
		margin-left: 0;
		width: 100%;
	}

	.srv-why__desc-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.srv-cases__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.srv-cases__left {
		position: static;
		top: auto;
	}

	.srv-cmp__thead,
	.srv-cmp__row {
		grid-template-columns: 1.2fr 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.srv-hero {
		height: auto;
		min-height: 0;
		align-items: flex-start;
		padding-top: calc((var(--nw-header-h, 124px) + 32px) / 2);
		padding-bottom: 56px;
	}

	.srv-hero__eyebrow {
		margin-bottom: 11px;
	}

	.srv-hero__title {
		font-size: 1.75rem;
	}

	.srv-cards,
	.srv-why,
	.srv-cmp,
	.srv-cases { padding-block: 32px; }

	.srv-cards__grid {
		grid-template-columns: 1fr;
	}

	.srv-cards__grid .srv-card-stack:nth-child(5) {
		max-width: 100%;
	}

	.srv-why__features {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.srv-why__feat {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 36px 28px;
	}

	.srv-why__feat-icon {
		order: -1;
		width: 48px;
		height: 48px;
		margin-bottom: 24px;
	}

	.srv-why__feat-icon svg {
		width: 24px;
		height: 24px;
	}

	.srv-why__feat-name {
		font-size: 1.05rem;
		margin-bottom: 12px;
	}

	.srv-why__feat-desc {
		font-size: .92rem;
		line-height: 1.7;
	}

	.srv-cmp__thead { display: none; }

	.srv-cmp__table-inner {
		background: transparent;
		border: none;
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
	}

	/* Timeline layout — feature icon becomes the dot marker on a connecting line */
	.srv-cmp__tbody {
		margin-left: 20px;
	}

	.srv-cmp__row.lp-fade-up {
		display: block;
		grid-template-columns: none;
		position: relative;
		padding: 0 0 32px 40px;
		border-top: none;
		opacity: 1;
		transform: none;
		transition: none;
	}

	.srv-cmp__row:last-child { padding-bottom: 0; }

	.srv-cmp__row:after {
		content: "";
		position: absolute;
		top: 26px;
		left: 0;
		width: 2px;
		height: 100%;
		background: var(--nw-cyan);
		transform: translateX(-50%);
	}

	.srv-cmp__row:last-child:after { display: none; }

	.srv-cmp__cell {
		border-left: none !important;
		border-top: none;
		padding: 0;
		display: block;
	}

	.srv-cmp__cell:first-child { border-top: none; }

	.srv-cmp__cell--feature {
		margin-bottom: 10px;
	}

	.srv-cmp__feat-icon {
		position: absolute;
		top: 0;
		left: 0;
		width: 34px;
		height: 34px;
		background: #fff;
		border: 2px solid var(--nw-cyan);
		border-radius: 50%;
		z-index: 1;
		transform: translateX(-50%) scale(0);
		transition: transform .35s cubic-bezier(.65,0,.35,1);
	}

	.srv-cmp__feat-icon svg {
		width: 18px;
		height: 18px;
	}

	.srv-cmp__feat-label,
	.srv-cmp__cell--nw,
	.srv-cmp__cell--typical {
		opacity: 0;
		transform: translateX(-12px);
		transition: opacity .35s cubic-bezier(.65,0,.35,1), transform .35s cubic-bezier(.65,0,.35,1);
	}

	.srv-cmp__cell--nw,
	.srv-cmp__cell--typical {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 8px;
	}

	.srv-cmp__cell--typical { margin-bottom: 0; }

	.srv-cmp__row--in .srv-cmp__feat-icon {
		transform: translateX(-50%) scale(1);
	}

	.srv-cmp__row--in .srv-cmp__feat-label,
	.srv-cmp__row--in .srv-cmp__cell--nw,
	.srv-cmp__row--in .srv-cmp__cell--typical {
		opacity: 1;
		transform: translateX(0);
	}

	.srv-cmp__cta-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.srv-case-stack:not(:last-child) {
		margin-bottom: 12px;
	}

	.srv-case-card {
		aspect-ratio: 16/14;
	}
}
