﻿/**
 * FM Icon Service Cards â€” all presets
 */

.fm-service-cards,
.fm-service-cards *,
.fm-service-cards *::before,
.fm-service-cards *::after {
	box-sizing: border-box;
}

.fm-service-cards {
	--fm-svc-accent: #4f46e5;
	--fm-svc-gap: 20px;
	--fm-svc-ink: #0f172a;
	--fm-svc-muted: #64748b;
	--fm-svc-border: rgba(15, 23, 42, 0.08);
	--fm-svc-surface: #ffffff;
	width: 100%;
}

.fm-service-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--fm-svc-gap);
	width: 100%;
}

.fm-service-cards__item {
	min-width: 0;
}

/* Linear Surface */
.fm-service-cards--linear-surface .fm-service-cards__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	height: 100%;
	padding: 28px;
	border-radius: 12px;
	background-color: var(--fm-svc-surface);
	border: 1px solid var(--fm-svc-border);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition:
		border-color 0.32s ease,
		box-shadow 0.32s ease;
}

.fm-service-cards--linear-surface .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	color: var(--fm-svc-accent);
	background: color-mix(in srgb, var(--fm-svc-accent) 10%, transparent);
	transition: background-color 0.32s ease;
}

.fm-service-cards--linear-surface .fm-service-cards__icon svg,
.fm-service-cards--linear-surface .fm-service-cards__icon i {
	width: 1.15rem;
	height: 1.15rem;
	font-size: 1.15rem;
	line-height: 1;
}

.fm-service-cards--linear-surface .fm-service-cards__icon svg {
	fill: currentColor;
}

.fm-service-cards--linear-surface .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--linear-surface .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.fm-service-cards--linear-surface .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.fm-service-cards--linear-surface .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--linear-surface .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
	color: var(--fm-svc-accent);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--linear-surface .fm-service-cards__card:hover {
		border-color: color-mix(in srgb, var(--fm-svc-accent) 22%, var(--fm-svc-border));
		box-shadow:
			0 1px 2px rgba(15, 23, 42, 0.04),
			0 16px 40px rgba(15, 23, 42, 0.08);
	}

	.fm-service-cards--linear-surface .fm-service-cards__card:hover .fm-service-cards__icon {
		background: color-mix(in srgb, var(--fm-svc-accent) 14%, transparent);
	}
}

/* Linear Frame — refined product cards with inline header and calm hover */
.fm-service-cards--linear-frame {
	--fm-svc-frame-accent: #4f46e5;
	--fm-svc-frame-hover: rgba(79, 70, 229, 0.05);
	--fm-svc-frame-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.fm-service-cards--linear-frame .fm-service-cards__card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	height: 100%;
	overflow: hidden;
	isolation: isolate;
	padding: 24px;
	border: 1px solid var(--fm-svc-border);
	border-radius: 16px;
	background-color: var(--fm-svc-surface);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.72);
	transition:
		border-color 0.4s var(--fm-svc-frame-ease),
		background-color 0.4s var(--fm-svc-frame-ease),
		box-shadow 0.45s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__frame-sheen {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	pointer-events: none;
	background:
		radial-gradient(120% 90% at 0% 0%, color-mix(in srgb, var(--fm-svc-frame-accent) 14%, transparent), transparent 58%),
		radial-gradient(90% 70% at 100% 100%, color-mix(in srgb, var(--fm-svc-frame-accent) 6%, transparent), transparent 52%);
	opacity: 0;
	transition: opacity 0.45s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__frame-top,
.fm-service-cards--linear-frame .fm-service-cards__frame-rule,
.fm-service-cards--linear-frame .fm-service-cards__frame-body,
.fm-service-cards--linear-frame .fm-service-cards__frame-foot {
	position: relative;
	z-index: 1;
}

.fm-service-cards--linear-frame .fm-service-cards__frame-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.fm-service-cards--linear-frame .fm-service-cards__frame-head {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	flex: 1 1 auto;
}

.fm-service-cards--linear-frame .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 11px;
	color: var(--fm-svc-accent);
	background: rgba(15, 23, 42, 0.02);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
	transition:
		border-color 0.4s var(--fm-svc-frame-ease),
		background-color 0.4s var(--fm-svc-frame-ease),
		color 0.4s var(--fm-svc-frame-ease),
		box-shadow 0.4s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__icon svg,
.fm-service-cards--linear-frame .fm-service-cards__icon i {
	width: 1.05rem;
	height: 1.05rem;
	font-size: 1.05rem;
	line-height: 1;
}

.fm-service-cards--linear-frame .fm-service-cards__icon svg {
	fill: currentColor;
}

.fm-service-cards--linear-frame .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--linear-frame .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.025em;
	transition: color 0.35s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__frame-glyph {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border: 1px solid var(--fm-svc-border);
	border-radius: 999px;
	color: rgba(15, 23, 42, 0.42);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	font-size: 0.8125rem;
	line-height: 1;
	text-decoration: none;
	opacity: 0.72;
	transform: translate3d(0, 0, 0);
	transition:
		opacity 0.35s var(--fm-svc-frame-ease),
		color 0.35s var(--fm-svc-frame-ease),
		border-color 0.35s var(--fm-svc-frame-ease),
		background-color 0.35s var(--fm-svc-frame-ease),
		box-shadow 0.35s var(--fm-svc-frame-ease),
		transform 0.4s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__frame-glyph>span {
	display: block;
	line-height: 1;
	transition: transform 0.4s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__frame-rule {
	display: block;
	height: 1px;
	margin: 18px 0 16px;
	background: linear-gradient(90deg,
			transparent 0%,
			var(--fm-svc-border) 12%,
			var(--fm-svc-border) 88%,
			transparent 100%);
	opacity: 0.9;
	transition: opacity 0.35s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__card.is-frame-compact .fm-service-cards__frame-top {
	margin-bottom: auto;
}

.fm-service-cards--linear-frame .fm-service-cards__frame-body {
	flex: 1 1 auto;
}

.fm-service-cards--linear-frame .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-muted);
	font-size: 0.875rem;
	line-height: 1.62;
}

.fm-service-cards--linear-frame .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--linear-frame .fm-service-cards__frame-foot {
	display: flex;
	align-items: center;
	margin-top: auto;
	padding-top: 18px;
}

.fm-service-cards--linear-frame .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--fm-svc-accent);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: color 0.35s var(--fm-svc-frame-ease);
}

.fm-service-cards--linear-frame .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform 0.4s var(--fm-svc-frame-ease);
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover {
		border-color: color-mix(in srgb, var(--fm-svc-frame-accent) 16%, var(--fm-svc-border));
		background-color: color-mix(in srgb, var(--fm-svc-frame-hover) 100%, var(--fm-svc-surface));
		box-shadow:
			0 1px 2px rgba(15, 23, 42, 0.04),
			0 14px 36px rgba(15, 23, 42, 0.07),
			inset 0 1px 0 rgba(255, 255, 255, 0.82);
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover .fm-service-cards__frame-sheen {
		opacity: 1;
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover .fm-service-cards__icon {
		border-color: color-mix(in srgb, var(--fm-svc-frame-accent) 24%, transparent);
		background: color-mix(in srgb, var(--fm-svc-frame-accent) 8%, #ffffff);
		color: var(--fm-svc-frame-accent);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.9),
			0 1px 2px color-mix(in srgb, var(--fm-svc-frame-accent) 10%, transparent);
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover .fm-service-cards__frame-glyph {
		opacity: 1;
		border-color: color-mix(in srgb, var(--fm-svc-frame-accent) 22%, var(--fm-svc-border));
		color: var(--fm-svc-frame-accent);
		background: color-mix(in srgb, var(--fm-svc-frame-accent) 6%, #ffffff);
		box-shadow: 0 4px 14px color-mix(in srgb, var(--fm-svc-frame-accent) 12%, transparent);
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover .fm-service-cards__frame-glyph>span {
		transform: translate3d(1px, -1px, 0);
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover .fm-service-cards__frame-rule {
		opacity: 1;
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover .fm-service-cards__link {
		color: var(--fm-svc-frame-accent);
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__card:hover .fm-service-cards__link-arrow {
		transform: translate3d(4px, 0, 0);
	}

	.fm-service-cards--linear-frame.fm-service-cards--frame-motion .fm-service-cards__frame-glyph:hover {
		border-color: color-mix(in srgb, var(--fm-svc-frame-accent) 34%, var(--fm-svc-border));
		background: color-mix(in srgb, var(--fm-svc-frame-accent) 10%, #ffffff);
	}
}

.fm-service-cards--linear-frame .fm-service-cards__card:focus-within {
	border-color: color-mix(in srgb, var(--fm-svc-frame-accent) 22%, var(--fm-svc-border));
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 0 0 3px color-mix(in srgb, var(--fm-svc-frame-accent) 14%, transparent);
}

/* Linear Split — two-tone card with accent visual panel */
.fm-service-cards--linear-split {
	--fm-svc-split-accent: #4f46e5;
	--fm-svc-split-visual: 36%;
	--fm-svc-split-visual-bg: rgba(79, 70, 229, 0.08);
	--fm-svc-split-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.fm-service-cards--linear-split .fm-service-cards__card {
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--fm-svc-border);
	border-radius: 16px;
	background-color: var(--fm-svc-surface);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition:
		border-color 0.4s var(--fm-svc-split-ease),
		box-shadow 0.45s var(--fm-svc-split-ease);
}

.fm-service-cards--linear-split .fm-service-cards__split {
	display: grid;
	grid-template-columns: var(--fm-svc-split-visual) minmax(0, 1fr);
	min-height: 100%;
}

.fm-service-cards--linear-split .fm-service-cards__split-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background:
		radial-gradient(120% 100% at 0% 0%, color-mix(in srgb, var(--fm-svc-split-accent) 18%, transparent), transparent 62%),
		linear-gradient(180deg, var(--fm-svc-split-visual-bg), color-mix(in srgb, var(--fm-svc-split-visual-bg) 72%, #ffffff));
	transition: background 0.45s var(--fm-svc-split-ease);
}

.fm-service-cards--linear-split .fm-service-cards__split-glow {
	position: absolute;
	inset: auto;
	top: 50%;
	left: 50%;
	width: 72%;
	aspect-ratio: 1;
	border-radius: 999px;
	background: radial-gradient(circle, color-mix(in srgb, var(--fm-svc-split-accent) 22%, transparent), transparent 68%);
	opacity: 0.55;
	transform: translate3d(-50%, -50%, 0);
	transition:
		opacity 0.45s var(--fm-svc-split-ease),
		transform 0.5s var(--fm-svc-split-ease);
}

.fm-service-cards--linear-split .fm-service-cards__split-visual .fm-service-cards__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	color: var(--fm-svc-split-accent);
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.06),
		0 10px 24px color-mix(in srgb, var(--fm-svc-split-accent) 14%, transparent);
	transition:
		transform 0.45s var(--fm-svc-split-ease),
		box-shadow 0.45s var(--fm-svc-split-ease);
}

.fm-service-cards--linear-split .fm-service-cards__split-visual .fm-service-cards__icon svg,
.fm-service-cards--linear-split .fm-service-cards__split-visual .fm-service-cards__icon i {
	width: 1.35rem;
	height: 1.35rem;
	font-size: 1.35rem;
	line-height: 1;
}

.fm-service-cards--linear-split .fm-service-cards__split-visual .fm-service-cards__icon svg {
	fill: currentColor;
}

.fm-service-cards--linear-split .fm-service-cards__split-visual .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--linear-split .fm-service-cards__split-copy {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	padding: 22px;
	background-color: var(--fm-svc-surface);
}

.fm-service-cards--linear-split .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.025em;
}

.fm-service-cards--linear-split .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-muted);
	font-size: 0.875rem;
	line-height: 1.62;
	flex: 1 1 auto;
}

.fm-service-cards--linear-split .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--linear-split .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
	color: var(--fm-svc-accent);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		color 0.35s var(--fm-svc-split-ease),
		transform 0.35s var(--fm-svc-split-ease);
}

.fm-service-cards--linear-split .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform 0.4s var(--fm-svc-split-ease);
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--linear-split.fm-service-cards--split-motion .fm-service-cards__card:hover {
		border-color: color-mix(in srgb, var(--fm-svc-split-accent) 18%, var(--fm-svc-border));
		box-shadow:
			0 1px 2px rgba(15, 23, 42, 0.04),
			0 16px 40px rgba(15, 23, 42, 0.08);
	}

	.fm-service-cards--linear-split.fm-service-cards--split-motion .fm-service-cards__card:hover .fm-service-cards__split-visual {
		background:
			radial-gradient(120% 100% at 0% 0%, color-mix(in srgb, var(--fm-svc-split-accent) 24%, transparent), transparent 62%),
			linear-gradient(180deg, color-mix(in srgb, var(--fm-svc-split-visual-bg) 140%, transparent), color-mix(in srgb, var(--fm-svc-split-visual-bg) 90%, #ffffff));
	}

	.fm-service-cards--linear-split.fm-service-cards--split-motion .fm-service-cards__card:hover .fm-service-cards__split-glow {
		opacity: 0.9;
		transform: translate3d(-50%, -52%, 0) scale(1.06);
	}

	.fm-service-cards--linear-split.fm-service-cards--split-motion .fm-service-cards__card:hover .fm-service-cards__split-visual .fm-service-cards__icon {
		transform: translate3d(0, -2px, 0);
		box-shadow:
			0 2px 4px rgba(15, 23, 42, 0.06),
			0 14px 30px color-mix(in srgb, var(--fm-svc-split-accent) 18%, transparent);
	}

	.fm-service-cards--linear-split.fm-service-cards--split-motion .fm-service-cards__card:hover .fm-service-cards__link {
		color: var(--fm-svc-split-accent);
	}

	.fm-service-cards--linear-split.fm-service-cards--split-motion .fm-service-cards__card:hover .fm-service-cards__link-arrow {
		transform: translate3d(4px, 0, 0);
	}
}

.fm-service-cards--linear-split .fm-service-cards__card:focus-within {
	border-color: color-mix(in srgb, var(--fm-svc-split-accent) 22%, var(--fm-svc-border));
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 0 0 3px color-mix(in srgb, var(--fm-svc-split-accent) 12%, transparent);
}

@media (max-width: 767px) {
	.fm-service-cards--linear-split .fm-service-cards__split {
		grid-template-columns: minmax(0, 1fr);
	}

	.fm-service-cards--linear-split .fm-service-cards__split-visual {
		min-height: 132px;
	}

	.fm-service-cards--linear-split .fm-service-cards__split-copy {
		padding: 20px;
	}
}

/* Linear Float — centered floating tiles with icon halo */
.fm-service-cards--linear-float {
	--fm-svc-float-accent: #4f46e5;
	--fm-svc-float-hover: #ffffff;
	--fm-svc-float-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.fm-service-cards--linear-float .fm-service-cards__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	overflow: hidden;
	isolation: isolate;
	padding: 32px 26px;
	border: 1px solid transparent;
	border-radius: 20px;
	background-color: #f8fafc;
	box-shadow: none;
	transition:
		background-color 0.45s var(--fm-svc-float-ease),
		border-color 0.45s var(--fm-svc-float-ease),
		box-shadow 0.5s var(--fm-svc-float-ease),
		transform 0.5s var(--fm-svc-float-ease);
}

.fm-service-cards--linear-float .fm-service-cards__float-ambient {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	pointer-events: none;
	background:
		radial-gradient(80% 70% at 50% 0%, color-mix(in srgb, var(--fm-svc-float-accent) 12%, transparent), transparent 68%),
		radial-gradient(60% 50% at 50% 100%, color-mix(in srgb, var(--fm-svc-float-accent) 5%, transparent), transparent 72%);
	opacity: 0.65;
	transition: opacity 0.45s var(--fm-svc-float-ease);
}

.fm-service-cards--linear-float .fm-service-cards__float-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	width: 100%;
	height: 100%;
}

.fm-service-cards--linear-float .fm-service-cards__float-icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px;
}

.fm-service-cards--linear-float .fm-service-cards__float-ring {
	position: absolute;
	inset: -10px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--fm-svc-float-accent) 16%, transparent);
	background: radial-gradient(circle, color-mix(in srgb, var(--fm-svc-float-accent) 10%, transparent), transparent 70%);
	opacity: 0.85;
	transform: scale(0.94);
	transition:
		opacity 0.45s var(--fm-svc-float-ease),
		transform 0.5s var(--fm-svc-float-ease),
		border-color 0.45s var(--fm-svc-float-ease);
}

.fm-service-cards--linear-float .fm-service-cards__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	color: var(--fm-svc-float-accent);
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.95);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.05),
		0 8px 20px color-mix(in srgb, var(--fm-svc-float-accent) 12%, transparent);
	transition:
		transform 0.5s var(--fm-svc-float-ease),
		box-shadow 0.5s var(--fm-svc-float-ease);
}

.fm-service-cards--linear-float .fm-service-cards__icon svg,
.fm-service-cards--linear-float .fm-service-cards__icon i {
	width: 1.25rem;
	height: 1.25rem;
	font-size: 1.25rem;
	line-height: 1;
}

.fm-service-cards--linear-float .fm-service-cards__icon svg {
	fill: currentColor;
}

.fm-service-cards--linear-float .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--linear-float .fm-service-cards__title {
	margin: 0;
	max-width: 18ch;
	color: var(--fm-svc-ink);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.03em;
}

.fm-service-cards--linear-float .fm-service-cards__description {
	margin: 0;
	max-width: 34ch;
	color: var(--fm-svc-muted);
	font-size: 0.875rem;
	line-height: 1.65;
	flex: 1 1 auto;
}

.fm-service-cards--linear-float .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--linear-float .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
	color: var(--fm-svc-accent);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		color 0.35s var(--fm-svc-float-ease),
		transform 0.35s var(--fm-svc-float-ease);
}

.fm-service-cards--linear-float .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform 0.4s var(--fm-svc-float-ease);
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--linear-float.fm-service-cards--float-motion .fm-service-cards__card:hover {
		border-color: rgba(15, 23, 42, 0.06);
		background-color: var(--fm-svc-float-hover);
		box-shadow:
			0 1px 2px rgba(15, 23, 42, 0.04),
			0 18px 44px rgba(15, 23, 42, 0.08);
		transform: translate3d(0, -3px, 0);
	}

	.fm-service-cards--linear-float.fm-service-cards--float-motion .fm-service-cards__card:hover .fm-service-cards__float-ambient {
		opacity: 1;
	}

	.fm-service-cards--linear-float.fm-service-cards--float-motion .fm-service-cards__card:hover .fm-service-cards__float-ring {
		opacity: 1;
		border-color: color-mix(in srgb, var(--fm-svc-float-accent) 28%, transparent);
		transform: scale(1.04);
	}

	.fm-service-cards--linear-float.fm-service-cards--float-motion .fm-service-cards__card:hover .fm-service-cards__icon {
		transform: translate3d(0, -2px, 0);
		box-shadow:
			0 2px 4px rgba(15, 23, 42, 0.06),
			0 12px 28px color-mix(in srgb, var(--fm-svc-float-accent) 18%, transparent);
	}

	.fm-service-cards--linear-float.fm-service-cards--float-motion .fm-service-cards__card:hover .fm-service-cards__link {
		color: var(--fm-svc-float-accent);
	}

	.fm-service-cards--linear-float.fm-service-cards--float-motion .fm-service-cards__card:hover .fm-service-cards__link-arrow {
		transform: translate3d(4px, 0, 0);
	}
}

.fm-service-cards--linear-float .fm-service-cards__card:focus-within {
	border-color: color-mix(in srgb, var(--fm-svc-float-accent) 18%, transparent);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 0 0 3px color-mix(in srgb, var(--fm-svc-float-accent) 12%, transparent);
}

/* Raycast Command â€” dark product grid, hairline borders, surface-step hover */
.fm-service-cards--raycast-command {
	--fm-svc-raycast-canvas: #070707;
	--fm-svc-raycast-card: #0d0d0d;
	--fm-svc-raycast-card-hover: #101111;
	--fm-svc-raycast-border: #242728;
	--fm-svc-raycast-ink: #f5f5f7;
	--fm-svc-raycast-muted: rgba(245, 245, 247, 0.58);
	--fm-svc-raycast-link: rgba(245, 245, 247, 0.82);
	--fm-svc-raycast-icon-bg: rgba(255, 255, 255, 0.06);
	--fm-svc-raycast-icon-border: rgba(255, 255, 255, 0.08);
	padding: 28px;
	border-radius: 16px;
	background-color: var(--fm-svc-raycast-canvas);
}

.fm-service-cards--raycast-command .fm-service-cards__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	height: 100%;
	padding: 24px;
	border-radius: 10px;
	background-color: var(--fm-svc-raycast-card);
	border: 1px solid var(--fm-svc-raycast-border);
	box-shadow: none;
	transition:
		background-color 0.28s ease,
		border-color 0.28s ease;
}

.fm-service-cards--raycast-command .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	color: var(--fm-svc-raycast-ink);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
		var(--fm-svc-raycast-icon-bg);
	border: 1px solid var(--fm-svc-raycast-icon-border);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition:
		background-color 0.28s ease,
		border-color 0.28s ease;
}

.fm-service-cards--raycast-command .fm-service-cards__icon svg,
.fm-service-cards--raycast-command .fm-service-cards__icon i {
	width: 1rem;
	height: 1rem;
	font-size: 1rem;
	line-height: 1;
}

.fm-service-cards--raycast-command .fm-service-cards__icon svg,
.fm-service-cards--raycast-command .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--raycast-command .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-raycast-ink);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.fm-service-cards--raycast-command .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-raycast-muted);
	font-size: 0.875rem;
	line-height: 1.6;
}

.fm-service-cards--raycast-command .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--raycast-command .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
	color: var(--fm-svc-raycast-link);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: color 0.24s ease;
}

.fm-service-cards--raycast-command .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--raycast-command .fm-service-cards__card:hover {
		background-color: var(--fm-svc-raycast-card-hover);
		border-color: color-mix(in srgb, var(--fm-svc-raycast-border) 72%, #ffffff);
	}

	.fm-service-cards--raycast-command .fm-service-cards__card:hover .fm-service-cards__link-arrow {
		transform: translate3d(4px, 0, 0);
	}

	.fm-service-cards--raycast-command .fm-service-cards__card:hover .fm-service-cards__icon {
		border-color: color-mix(in srgb, var(--fm-svc-raycast-icon-border) 70%, #ffffff);
	}
}

.fm-service-cards--raycast-command .fm-service-cards__card:focus-within {
	background-color: var(--fm-svc-raycast-card-hover);
	border-color: color-mix(in srgb, var(--fm-svc-raycast-border) 72%, #ffffff);
}

.fm-service-cards--raycast-command .fm-service-cards__card:focus-within .fm-service-cards__link-arrow {
	transform: translate3d(4px, 0, 0);
}

@media (max-width: 767px) {
	.fm-service-cards--raycast-command {
		padding: 20px;
		border-radius: 14px;
	}

	.fm-service-cards--raycast-command .fm-service-cards__card {
		padding: 20px;
	}

	.fm-service-cards--raycast-command .fm-service-cards__title {
		font-size: 1.125rem;
	}
}

/* Stripe Editorial â€” restrained anchor grid, accent strip, mini UI */
.fm-service-cards--stripe-editorial {
	--fm-svc-stripe-gap: 18px;
	--fm-svc-stripe-row-min: 152px;
	--fm-svc-stripe-accent: #635bff;
	--fm-svc-stripe-anchor-bg: #ffffff;
	--fm-svc-stripe-card-bg: #ffffff;
	--fm-svc-stripe-border: rgba(15, 23, 42, 0.1);
}

.fm-service-cards--stripe-editorial .fm-service-cards__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: minmax(var(--fm-svc-stripe-row-min), auto);
	gap: var(--fm-svc-stripe-gap);
}

.fm-service-cards--stripe-editorial .fm-service-cards__item.is-stripe-anchor {
	grid-column: 1 / span 2;
	grid-row: span 2;
}

.fm-service-cards--stripe-editorial.fm-service-cards--stripe-anchor-right .fm-service-cards__item.is-stripe-anchor {
	grid-column: 2 / span 2;
}

.fm-service-cards--stripe-editorial .fm-service-cards__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	padding: 32px;
	border-radius: 14px;
	background-color: var(--fm-svc-stripe-card-bg);
	border: 1px solid var(--fm-svc-stripe-border);
	box-shadow: none;
	transition: border-color 0.28s ease;
}

.fm-service-cards--stripe-editorial .fm-service-cards__item.is-stripe-anchor .fm-service-cards__card {
	background-color: var(--fm-svc-stripe-anchor-bg);
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-accent {
	display: none;
}

.fm-service-cards--stripe-editorial .is-stripe-anchor-card .fm-service-cards__stripe-accent {
	position: absolute;
	top: 24px;
	bottom: 24px;
	left: 0;
	display: block;
	width: 3px;
	border-radius: 999px;
	background: var(--fm-svc-stripe-accent);
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	min-height: 0;
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-meta {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--fm-svc-stripe-border);
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-stat-value {
	color: var(--fm-svc-ink);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.03em;
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-stat-label {
	color: var(--fm-svc-muted);
	font-size: 0.875rem;
	line-height: 1.4;
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fm-service-cards--stripe-editorial .fm-service-cards__stripe-tags li {
	padding: 5px 11px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--fm-svc-stripe-accent) 18%, var(--fm-svc-stripe-border));
	background: color-mix(in srgb, var(--fm-svc-stripe-accent) 8%, transparent);
	color: var(--fm-svc-ink);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
}

.fm-service-cards--stripe-editorial .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	color: var(--fm-svc-accent);
	background: color-mix(in srgb, var(--fm-svc-accent) 8%, transparent);
}

.fm-service-cards--stripe-editorial .fm-service-cards__item:not(.is-stripe-anchor) .fm-service-cards__icon {
	width: 32px;
	height: 32px;
}

.fm-service-cards--stripe-editorial .fm-service-cards__icon svg,
.fm-service-cards--stripe-editorial .fm-service-cards__icon i {
	width: 1rem;
	height: 1rem;
	font-size: 1rem;
	line-height: 1;
}

.fm-service-cards--stripe-editorial .fm-service-cards__icon svg,
.fm-service-cards--stripe-editorial .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--stripe-editorial .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.fm-service-cards--stripe-editorial .fm-service-cards__item:not(.is-stripe-anchor) .fm-service-cards__title {
	font-size: 1.0625rem;
}

.fm-service-cards--stripe-editorial .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-muted);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.fm-service-cards--stripe-editorial .fm-service-cards__item:not(.is-stripe-anchor) .fm-service-cards__description {
	font-size: 0.875rem;
}

.fm-service-cards--stripe-editorial .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--stripe-editorial .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
	color: var(--fm-svc-stripe-accent, var(--fm-svc-accent));
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.fm-service-cards--stripe-editorial .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--stripe-editorial .fm-service-cards__card:hover {
		border-color: color-mix(in srgb, var(--fm-svc-stripe-accent) 24%, var(--fm-svc-stripe-border));
	}

	.fm-service-cards--stripe-editorial .fm-service-cards__card:hover .fm-service-cards__link-arrow {
		transform: translate3d(3px, 0, 0);
	}
}

@media (max-width: 1024px) {
	.fm-service-cards--stripe-editorial .fm-service-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fm-service-cards--stripe-editorial .fm-service-cards__item.is-stripe-anchor {
		grid-column: 1 / -1;
		grid-row: span 1;
	}
}

@media (max-width: 767px) {
	.fm-service-cards--stripe-editorial .fm-service-cards__grid {
		grid-template-columns: 1fr;
	}

	.fm-service-cards--stripe-editorial .fm-service-cards__card {
		padding: 24px;
	}
}

/* Glass Liquid â€” frosted cards on gradient mesh */
.fm-service-cards--glass-liquid {
	--fm-svc-glass-a: #6366f1;
	--fm-svc-glass-b: #8b5cf6;
	--fm-svc-glass-c: #ec4899;
	--fm-svc-glass-fill: rgba(255, 255, 255, 0.12);
	--fm-svc-glass-border: rgba(255, 255, 255, 0.18);
	--fm-svc-glass-blur: 16px;
	padding: 32px;
	border-radius: 24px;
	background:
		radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--fm-svc-glass-a) 38%, transparent), transparent 42%),
		radial-gradient(circle at 86% 82%, color-mix(in srgb, var(--fm-svc-glass-c) 34%, transparent), transparent 44%),
		linear-gradient(135deg, color-mix(in srgb, var(--fm-svc-glass-a) 22%, #0f172a), color-mix(in srgb, var(--fm-svc-glass-b) 26%, #111827));
}

.fm-service-cards--glass-liquid .fm-service-cards__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	padding: 28px;
	border-radius: 18px;
	background: var(--fm-svc-glass-fill);
	border: 1px solid var(--fm-svc-glass-border);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.14),
		0 12px 32px rgba(15, 23, 42, 0.16);
	-webkit-backdrop-filter: blur(var(--fm-svc-glass-blur));
	backdrop-filter: blur(var(--fm-svc-glass-blur));
	transition:
		transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.28s ease,
		background-color 0.28s ease;
}

.fm-service-cards--glass-liquid .fm-service-cards__glass-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62%);
	transform: translate3d(-120%, 0, 0) skewX(-18deg);
	pointer-events: none;
}

.fm-service-cards--glass-liquid .fm-service-cards__glass-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	min-height: 0;
}

.fm-service-cards--glass-liquid .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	color: #ffffff;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%),
		rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.fm-service-cards--glass-liquid .fm-service-cards__icon svg,
.fm-service-cards--glass-liquid .fm-service-cards__icon i {
	width: 1.1rem;
	height: 1.1rem;
	font-size: 1.1rem;
	line-height: 1;
}

.fm-service-cards--glass-liquid .fm-service-cards__icon svg,
.fm-service-cards--glass-liquid .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--glass-liquid .fm-service-cards__title {
	margin: 0;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.fm-service-cards--glass-liquid .fm-service-cards__description {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.fm-service-cards--glass-liquid .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--glass-liquid .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.fm-service-cards--glass-liquid .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--glass-liquid .fm-service-cards__card:hover {
		transform: translate3d(0, -3px, 0);
		border-color: rgba(255, 255, 255, 0.28);
		background: rgba(255, 255, 255, 0.16);
	}

	.fm-service-cards--glass-liquid .fm-service-cards__card:hover .fm-service-cards__link-arrow {
		transform: translate3d(3px, 0, 0);
	}

	.fm-service-cards--glass-liquid.fm-service-cards--glass-motion .fm-service-cards__card:hover .fm-service-cards__glass-shine {
		transform: translate3d(120%, 0, 0) skewX(-18deg);
		transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
	}
}

@media (max-width: 767px) {
	.fm-service-cards--glass-liquid {
		padding: 22px;
		border-radius: 18px;
	}

	.fm-service-cards--glass-liquid .fm-service-cards__card {
		padding: 22px;
	}
}

/* Awwwards Showcase — indexed list, rule animation, floating preview */
/* Awwwards Showcase — full viewport breakout */
.elementor-widget-flowmax-service-cards:has(.fm-service-cards--awwwards-showcase),
.elementor-widget-flowmax-service-cards:has(.fm-service-cards--awwwards-showcase) .elementor-widget-container {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: visible;
}

.elementor-column:has(.fm-service-cards--awwwards-showcase),
.elementor-widget-wrap:has(.fm-service-cards--awwwards-showcase),
.e-con:has(.fm-service-cards--awwwards-showcase) {
	overflow: visible;
}

.fm-service-cards--awwwards-showcase {
	--fm-svc-showcase-rule: rgba(15, 23, 42, 0.1);
	--fm-svc-showcase-index: rgba(15, 23, 42, 0.34);
	--fm-svc-showcase-label: rgba(15, 23, 42, 0.46);
	--fm-svc-showcase-hover-bg: rgba(15, 23, 42, 0.025);
	--fm-svc-showcase-row-min: 0px;
	--fm-svc-showcase-row-padding-y: 32px;
	--fm-svc-showcase-arrow-size: 1.5rem;
	--fm-svc-showcase-arrow-hover-rotate: -45deg;
	--fm-svc-showcase-icon-size: 42px;
	--fm-svc-showcase-head-gap: 18px;
	--fm-svc-showcase-preview-w: 260px;
	--fm-svc-showcase-preview-h: 192px;
	--fm-svc-showcase-preview-x: 68%;
	--fm-svc-showcase-preview-radius: 24px;
	--fm-svc-showcase-gutter: clamp(20px, 4vw, 56px);
	--fm-svc-showcase-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--fm-svc-showcase-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--fm-svc-showcase-preview-in-duration: 0.95s;
	--fm-svc-showcase-preview-photo-duration: 1.2s;
	position: relative;
	width: 100%;
	max-width: none;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__grid {
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__item {
	transition: opacity 0.55s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-showcase.is-showcase-list-active .fm-service-cards__item:not(:has(.is-showcase-active)) {
	opacity: 0.34;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__card {
	position: relative;
	display: block;
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active,
.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover,
.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within {
	z-index: 3;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px 28px;
	min-height: var(--fm-svc-showcase-row-min);
	margin-right: calc(-1 * var(--fm-svc-showcase-gutter));
	margin-left: calc(-1 * var(--fm-svc-showcase-gutter));
	padding: var(--fm-svc-showcase-row-padding-y) var(--fm-svc-showcase-gutter);
	border-style: solid;
	border-width: 0;
	border-color: transparent;
	border-radius: 0;
	transition:
		background-color 0.65s var(--fm-svc-showcase-ease),
		border-color 0.45s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-rule {
	position: absolute;
	right: calc(-1 * var(--fm-svc-showcase-gutter));
	bottom: 0;
	left: calc(-1 * var(--fm-svc-showcase-gutter));
	height: 1px;
	background: var(--fm-svc-showcase-rule);
	transform: scaleX(1);
	transform-origin: left center;
	transition:
		transform 0.85s var(--fm-svc-showcase-ease-out),
		background-color 0.55s var(--fm-svc-showcase-ease),
		opacity 0.55s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-index {
	align-self: start;
	color: var(--fm-svc-showcase-index);
	font-size: 0.75rem;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.16em;
	line-height: 1;
	min-width: 2.75ch;
	transition:
		color 0.55s var(--fm-svc-showcase-ease),
		transform 0.65s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-label {
	color: var(--fm-svc-showcase-label);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transition:
		color 0.55s var(--fm-svc-showcase-ease),
		transform 0.65s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	min-width: 0;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-head {
	display: flex;
	align-items: center;
	gap: var(--fm-svc-showcase-head-gap);
	min-width: 0;
	width: 100%;
	transition: transform 0.75s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: var(--fm-svc-showcase-icon-size);
	height: var(--fm-svc-showcase-icon-size);
	border-radius: 12px;
	color: var(--fm-svc-accent);
	background: color-mix(in srgb, var(--fm-svc-accent) 7%, transparent);
	border: 1px solid color-mix(in srgb, var(--fm-svc-accent) 10%, transparent);
	transition:
		opacity 0.55s var(--fm-svc-showcase-ease),
		transform 0.65s var(--fm-svc-showcase-ease-out),
		border-color 0.55s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__icon svg,
.fm-service-cards--awwwards-showcase .fm-service-cards__icon i {
	width: 1rem;
	height: 1rem;
	font-size: 1rem;
	line-height: 1;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__icon svg,
.fm-service-cards--awwwards-showcase .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: clamp(1.5rem, 2.8vw, 2.75rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.04em;
	transition:
		color 0.55s var(--fm-svc-showcase-ease),
		letter-spacing 0.75s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-desc {
	margin: 0;
	max-width: 54ch;
	color: var(--fm-svc-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-main:has(.fm-service-cards__icon) .fm-service-cards__showcase-desc {
	padding-left: calc(var(--fm-svc-showcase-icon-size) + var(--fm-svc-showcase-head-gap));
}

.fm-service-cards--awwwards-showcase:not(.fm-service-cards--showcase-desc-hover) .fm-service-cards__showcase-desc {
	margin-top: 8px;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-desc-inner p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-desc-hover .fm-service-cards__showcase-desc {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.75s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-desc-hover .fm-service-cards__showcase-desc-inner {
	overflow: hidden;
}

.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-desc-hover .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-desc,
.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-desc-hover .fm-service-cards__card:hover .fm-service-cards__showcase-desc,
.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-desc-hover .fm-service-cards__card:focus-within .fm-service-cards__showcase-desc {
	grid-template-rows: 1fr;
	margin-top: 8px;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-link {
	display: none;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-aside {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid var(--fm-svc-showcase-rule);
	color: var(--fm-svc-ink);
	text-decoration: none;
	transition:
		border-color 0.55s var(--fm-svc-showcase-ease),
		background-color 0.55s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-arrow {
	display: block;
	width: var(--fm-svc-showcase-arrow-size);
	height: var(--fm-svc-showcase-arrow-size);
	flex-shrink: 0;
	transform-origin: center center;
	transition: transform 0.55s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-arrow path {
	vector-effect: non-scaling-stroke;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-float {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 40;
	width: var(--fm-svc-showcase-preview-w);
	height: var(--fm-svc-showcase-preview-h);
	pointer-events: none;
	visibility: hidden;
	will-change: transform;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-float-frame {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 0;
	border-radius: var(--fm-svc-showcase-preview-radius);
	background: transparent;
	box-shadow:
		0 28px 70px rgba(15, 23, 42, 0.24),
		0 8px 24px rgba(15, 23, 42, 0.12);
	opacity: 0;
	transform: scale(0.9);
	will-change: transform, opacity;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-float-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	transition: transform 1.1s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase.is-showcase-preview-active .fm-service-cards__showcase-float-photo {
	transform: scale(1);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-float-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 52%, rgba(15, 23, 42, 0.18) 100%);
	pointer-events: none;
}

.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__showcase-row {
	position: relative;
	grid-template-columns: minmax(0, 1fr) auto;
}

.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__showcase-slot {
	position: absolute;
	top: 50%;
	left: var(--fm-svc-showcase-preview-x);
	z-index: 2;
	width: var(--fm-svc-showcase-preview-w);
	min-height: 0;
	transform: translate3d(-50%, -50%, 0);
	pointer-events: none;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-slot {
	position: relative;
	width: var(--fm-svc-showcase-preview-w);
	min-height: 0;
	align-self: center;
	flex-shrink: 0;
	pointer-events: none;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-dock {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: var(--fm-svc-showcase-preview-w);
	height: var(--fm-svc-showcase-preview-h);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(-50%, -50%, 0) scale(0.94);
	filter: blur(8px);
	will-change: opacity, transform, filter;
	transition:
		opacity var(--fm-svc-showcase-preview-in-duration) var(--fm-svc-showcase-ease-out),
		transform 1.1s var(--fm-svc-showcase-ease-out),
		filter 1s var(--fm-svc-showcase-ease-out),
		visibility 0s linear 0.95s;
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-dock-frame {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 0;
	border-radius: var(--fm-svc-showcase-preview-radius);
	background: transparent;
	box-shadow:
		0 28px 70px rgba(15, 23, 42, 0),
		0 8px 24px rgba(15, 23, 42, 0);
	transition: box-shadow 1.1s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-dock-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--fm-svc-showcase-preview-radius);
	transform: scale(1.05);
	transition: transform var(--fm-svc-showcase-preview-photo-duration) var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-dock-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 52%, rgba(15, 23, 42, 0.18) 100%);
	pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__showcase-row,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-row,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__showcase-row {
		background: var(--fm-svc-showcase-hover-bg);
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__showcase-rule,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-rule,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__showcase-rule {
		background: color-mix(in srgb, var(--fm-svc-accent) 72%, var(--fm-svc-showcase-rule));
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__title,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__title,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__title {
		letter-spacing: -0.03em;
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__showcase-index,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-index,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__showcase-index {
		color: var(--fm-svc-accent);
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__showcase-label,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-label,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__showcase-label {
		color: var(--fm-svc-ink);
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__icon,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__icon,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__icon {
		opacity: 0.72;
		border-color: color-mix(in srgb, var(--fm-svc-accent) 18%, transparent);
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__showcase-action,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-action,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__showcase-action {
		border-color: color-mix(in srgb, var(--fm-svc-accent) 24%, var(--fm-svc-showcase-rule));
		background: color-mix(in srgb, var(--fm-svc-accent) 7%, transparent);
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__card:hover .fm-service-cards__showcase-arrow,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-arrow,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card:focus-within .fm-service-cards__showcase-arrow {
		transform: rotate(var(--fm-svc-showcase-arrow-hover-rotate));
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview:hover .fm-service-cards__showcase-dock,
	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview.is-showcase-active .fm-service-cards__showcase-dock,
	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview:focus-within .fm-service-cards__showcase-dock {
		opacity: 1;
		visibility: visible;
		transform: translate3d(-50%, -50%, 0) scale(1);
		filter: blur(0);
		transition:
			opacity var(--fm-svc-showcase-preview-in-duration) var(--fm-svc-showcase-ease-out),
			transform 1.1s var(--fm-svc-showcase-ease-out),
			filter 1s var(--fm-svc-showcase-ease-out),
			visibility 0s linear 0s;
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview:hover .fm-service-cards__showcase-dock-frame,
	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview.is-showcase-active .fm-service-cards__showcase-dock-frame,
	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview:focus-within .fm-service-cards__showcase-dock-frame {
		box-shadow:
			0 28px 70px rgba(15, 23, 42, 0.24),
			0 8px 24px rgba(15, 23, 42, 0.12);
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview:hover .fm-service-cards__showcase-dock-photo,
	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview.is-showcase-active .fm-service-cards__showcase-dock-photo,
	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__card.has-showcase-preview:focus-within .fm-service-cards__showcase-dock-photo {
		transform: scale(1);
	}
}

@media (max-width: 1024px) {
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-slot {
		display: none;
	}
}

@media (max-width: 767px) {
	.fm-service-cards--awwwards-showcase.is-showcase-list-active .fm-service-cards__item {
		opacity: 1;
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px 16px;
		margin-right: calc(-1 * var(--fm-svc-showcase-gutter));
		margin-left: calc(-1 * var(--fm-svc-showcase-gutter));
		padding: 26px var(--fm-svc-showcase-gutter);
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-aside {
		align-self: start;
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__title {
		font-size: 1.5rem;
	}

	.fm-service-cards--awwwards-showcase:not(.fm-service-cards--showcase-desc-hover) .fm-service-cards__showcase-desc {
		margin-top: 10px;
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-desc-hover .fm-service-cards__showcase-desc {
		display: block;
		grid-template-rows: none;
		margin-top: 10px;
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-float,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-slot {
		display: none;
	}
}

/* Awwwards Split Stage — list + sticky preview column */
.elementor-widget-flowmax-service-cards:has(.fm-service-cards--awwwards-split-stage),
.elementor-widget-flowmax-service-cards:has(.fm-service-cards--awwwards-split-stage) .elementor-widget-container {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: visible;
}

.elementor-column:has(.fm-service-cards--awwwards-split-stage),
.elementor-widget-wrap:has(.fm-service-cards--awwwards-split-stage),
.e-con:has(.fm-service-cards--awwwards-split-stage) {
	overflow: visible;
}

.fm-service-cards--awwwards-split-stage {
	--fm-svc-split-stage-width: 42%;
	--fm-svc-split-stage-gap: clamp(24px, 4vw, 56px);
	--fm-svc-split-stage-sticky-top: 32px;
	--fm-svc-showcase-rule: rgba(15, 23, 42, 0.1);
	--fm-svc-showcase-hover-bg: rgba(15, 23, 42, 0.025);
	--fm-svc-showcase-row-min: 0px;
	--fm-svc-showcase-row-padding-y: 32px;
	--fm-svc-showcase-arrow-size: 1.5rem;
	--fm-svc-showcase-arrow-hover-rotate: -45deg;
	--fm-svc-showcase-icon-size: 42px;
	--fm-svc-showcase-head-gap: 18px;
	--fm-svc-split-stage-preview-h: clamp(320px, 28vw, 480px);
	--fm-svc-showcase-preview-radius: 24px;
	--fm-svc-showcase-gutter: clamp(20px, 4vw, 56px);
	--fm-svc-showcase-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--fm-svc-showcase-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--fm-svc-showcase-preview-in-duration: 0.95s;
	--fm-svc-showcase-preview-photo-duration: 1.2s;
	position: relative;
	width: 100%;
	max-width: none;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-shell {
	display: grid;
	grid-template-columns: minmax(0, calc(100% - var(--fm-svc-split-stage-width) - var(--fm-svc-split-stage-gap))) minmax(280px, var(--fm-svc-split-stage-width));
	gap: var(--fm-svc-split-stage-gap);
	align-items: stretch;
	padding: 0 var(--fm-svc-showcase-gutter);
}

.fm-service-cards--awwwards-split-stage.fm-service-cards--split-stage-left .fm-service-cards__split-shell {
	grid-template-columns: minmax(280px, var(--fm-svc-split-stage-width)) minmax(0, calc(100% - var(--fm-svc-split-stage-width) - var(--fm-svc-split-stage-gap)));
}

.fm-service-cards--awwwards-split-stage.fm-service-cards--split-stage-left .fm-service-cards__split-stage {
	order: -1;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-list .fm-service-cards__grid {
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__item {
	transition: opacity 0.55s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-split-stage.is-showcase-list-active .fm-service-cards__item:not(:has(.is-showcase-active)) {
	opacity: 0.34;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__card {
	position: relative;
	display: block;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__card.is-showcase-active,
.fm-service-cards--awwwards-split-stage .fm-service-cards__card:hover,
.fm-service-cards--awwwards-split-stage .fm-service-cards__card:focus-within {
	z-index: 3;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px 28px;
	min-height: var(--fm-svc-showcase-row-min);
	padding: var(--fm-svc-showcase-row-padding-y) 0;
	border-radius: 0;
	transition:
		background-color 0.65s var(--fm-svc-showcase-ease),
		border-color 0.45s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-rule {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: var(--fm-svc-showcase-rule);
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	min-width: 0;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-head {
	display: flex;
	align-items: center;
	gap: var(--fm-svc-showcase-head-gap);
	min-width: 0;
	width: 100%;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: var(--fm-svc-showcase-icon-size);
	height: var(--fm-svc-showcase-icon-size);
	border-radius: 12px;
	color: var(--fm-svc-accent);
	background: color-mix(in srgb, var(--fm-svc-accent) 7%, transparent);
	border: 1px solid color-mix(in srgb, var(--fm-svc-accent) 10%, transparent);
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: clamp(1.5rem, 2.4vw, 2.5rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-desc {
	margin: 0;
	max-width: 54ch;
	color: var(--fm-svc-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.fm-service-cards--awwwards-split-stage:not(.fm-service-cards--showcase-desc-hover) .fm-service-cards__showcase-desc {
	margin-top: 8px;
}

.fm-service-cards--awwwards-split-stage.fm-service-cards--showcase-desc-hover .fm-service-cards__showcase-desc {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.75s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-split-stage.fm-service-cards--showcase-desc-hover .fm-service-cards__showcase-desc-inner {
	overflow: hidden;
}

.fm-service-cards--awwwards-split-stage.fm-service-cards--showcase-desc-hover .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-desc,
.fm-service-cards--awwwards-split-stage.fm-service-cards--showcase-desc-hover .fm-service-cards__card:hover .fm-service-cards__showcase-desc,
.fm-service-cards--awwwards-split-stage.fm-service-cards--showcase-desc-hover .fm-service-cards__card:focus-within .fm-service-cards__showcase-desc {
	grid-template-rows: 1fr;
	margin-top: 8px;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-main:has(.fm-service-cards__icon) .fm-service-cards__showcase-desc {
	padding-left: calc(var(--fm-svc-showcase-icon-size) + var(--fm-svc-showcase-head-gap));
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-link {
	display: none;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid var(--fm-svc-showcase-rule);
	color: var(--fm-svc-ink);
	text-decoration: none;
	transition:
		border-color 0.55s var(--fm-svc-showcase-ease),
		background-color 0.55s var(--fm-svc-showcase-ease);
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-arrow {
	display: block;
	width: var(--fm-svc-showcase-arrow-size);
	height: var(--fm-svc-showcase-arrow-size);
	flex-shrink: 0;
	transform-origin: center center;
	transition: transform 0.55s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__icon svg,
.fm-service-cards--awwwards-split-stage .fm-service-cards__icon i {
	width: 1rem;
	height: 1rem;
	font-size: 1rem;
	line-height: 1;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage {
	position: sticky;
	top: var(--fm-svc-split-stage-sticky-top);
	display: flex;
	align-items: center;
	align-self: stretch;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-inner {
	display: block;
	width: 100%;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-frame {
	position: relative;
	width: 100%;
	height: var(--fm-svc-split-stage-preview-h);
	overflow: hidden;
	border-radius: var(--fm-svc-showcase-preview-radius);
	box-shadow:
		0 28px 70px rgba(15, 23, 42, 0.2),
		0 8px 24px rgba(15, 23, 42, 0.1);
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.03);
	transition:
		opacity var(--fm-svc-showcase-preview-in-duration) var(--fm-svc-showcase-ease-out),
		transform 1.1s var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-split-stage.fm-service-cards--split-stage-motion .fm-service-cards__split-stage-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.fm-service-cards--awwwards-split-stage:not(.fm-service-cards--split-stage-motion) .fm-service-cards__split-stage-slide {
	transition: none;
}

.fm-service-cards--awwwards-split-stage:not(.fm-service-cards--split-stage-motion) .fm-service-cards__split-stage-slide.is-active {
	opacity: 1;
	transform: none;
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--fm-svc-showcase-preview-radius);
	transform: scale(1.05);
	transition: transform var(--fm-svc-showcase-preview-photo-duration) var(--fm-svc-showcase-ease-out);
}

.fm-service-cards--awwwards-split-stage.fm-service-cards--split-stage-motion .fm-service-cards__split-stage-slide.is-active .fm-service-cards__split-stage-photo {
	transform: scale(1);
}

.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 52%, rgba(15, 23, 42, 0.14) 100%);
	pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {

	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:hover .fm-service-cards__showcase-row,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-row,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:focus-within .fm-service-cards__showcase-row {
		background: var(--fm-svc-showcase-hover-bg);
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:hover .fm-service-cards__showcase-rule,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-rule,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:focus-within .fm-service-cards__showcase-rule {
		background: color-mix(in srgb, var(--fm-svc-accent) 72%, var(--fm-svc-showcase-rule));
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:hover .fm-service-cards__showcase-action,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-action,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:focus-within .fm-service-cards__showcase-action {
		border-color: color-mix(in srgb, var(--fm-svc-accent) 24%, var(--fm-svc-showcase-rule));
		background: color-mix(in srgb, var(--fm-svc-accent) 7%, transparent);
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:hover .fm-service-cards__showcase-arrow,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card.is-showcase-active .fm-service-cards__showcase-arrow,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card:focus-within .fm-service-cards__showcase-arrow {
		transform: rotate(var(--fm-svc-showcase-arrow-hover-rotate));
	}
}

@media (max-width: 1024px) {
	.fm-service-cards--awwwards-split-stage .fm-service-cards__split-shell {
		grid-template-columns: minmax(0, 1fr);
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage {
		position: relative;
		top: auto;
		display: block;
		order: -1;
		margin-bottom: 8px;
	}

	.fm-service-cards--awwwards-split-stage.fm-service-cards--split-stage-left .fm-service-cards__split-stage {
		order: -1;
	}
}

@media (max-width: 767px) {
	.fm-service-cards--awwwards-split-stage.is-showcase-list-active .fm-service-cards__item {
		opacity: 1;
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-row {
		padding: 26px 0;
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__title {
		font-size: 1.5rem;
	}
}

/* Bento Spotlight â€” light mode (matches Linear Surface tokens) */
.fm-service-cards--bento-spotlight {
	--fm-svc-bento-gap: 16px;
	--fm-svc-bento-row-min: 168px;
	--fm-svc-bento-shell: #f9fafb;
	--fm-svc-bento-border: rgba(15, 23, 42, 0.08);
	--fm-svc-spotlight-color: var(--fm-svc-accent);
	--fm-svc-spotlight-size: 360px;
	--fm-svc-spotlight-strength: 0.38;
}

.fm-service-cards--bento-spotlight .fm-service-cards__bento-shell {
	padding: 24px;
	border-radius: 20px;
	border: 1px solid var(--fm-svc-border);
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--fm-svc-accent) 8%, transparent), transparent 34%),
		radial-gradient(circle at 88% 100%, color-mix(in srgb, var(--fm-svc-accent) 6%, transparent), transparent 38%),
		var(--fm-svc-bento-shell);
}

.fm-service-cards--bento-spotlight .fm-service-cards__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: minmax(var(--fm-svc-bento-row-min), auto);
	gap: var(--fm-svc-bento-gap);
}

.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured {
	grid-column: span 2;
	grid-row: span 2;
}

.fm-service-cards--bento-spotlight .fm-service-cards__card {
	position: relative;
	height: 100%;
	border: 1px solid var(--fm-svc-bento-border);
	border-radius: 16px;
	overflow: hidden;
	isolation: isolate;
	background-color: var(--fm-svc-surface);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition:
		border-color 0.32s ease,
		box-shadow 0.32s ease;
}

.fm-service-cards--bento-spotlight .fm-service-cards__card-glow {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: var(--fm-svc-spotlight-opacity, 0);
	background:
		radial-gradient(var(--fm-svc-spotlight-size) circle at var(--fm-svc-spotlight-x, 50%) var(--fm-svc-spotlight-y, 50%),
			color-mix(in srgb, var(--fm-svc-spotlight-color) calc(var(--fm-svc-spotlight-strength) * 100%), transparent),
			transparent 42%);
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.fm-service-cards--bento-spotlight.fm-service-cards--spotlight.is-spotlight-active .fm-service-cards__card-glow {
	opacity: 1;
}

.fm-service-cards--bento-spotlight .fm-service-cards__card-surface {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	height: 100%;
	min-height: inherit;
	padding: 24px;
	border-radius: inherit;
	background-color: var(--fm-svc-surface);
}

.fm-service-cards--bento-spotlight .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	color: var(--fm-svc-accent);
	background: color-mix(in srgb, var(--fm-svc-accent) 10%, transparent);
	transition: background-color 0.32s ease;
}

.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__icon {
	width: 52px;
	height: 52px;
}

.fm-service-cards--bento-spotlight .fm-service-cards__icon svg,
.fm-service-cards--bento-spotlight .fm-service-cards__icon i {
	width: 1.15rem;
	height: 1.15rem;
	font-size: 1.15rem;
	line-height: 1;
}

.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__icon svg,
.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__icon i {
	width: 1.35rem;
	height: 1.35rem;
	font-size: 1.35rem;
}

.fm-service-cards--bento-spotlight .fm-service-cards__icon svg {
	fill: currentColor;
}

.fm-service-cards--bento-spotlight .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__title {
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.fm-service-cards--bento-spotlight .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__description {
	font-size: 1rem;
	max-width: 34ch;
}

.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__card-surface {
	min-height: 320px;
	overflow: hidden;
}

.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__icon,
.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__title,
.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__description,
.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__link {
	position: relative;
	z-index: 1;
}

/* Featured bento scene — blends into card surface (hero zone) */
.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__bento-scene {
	position: absolute;
	left: 30%;
	right: 6%;
	top: 24%;
	bottom: 12%;
	z-index: 0;
	width: auto;
	height: auto;
	pointer-events: none;
	-webkit-mask-image: radial-gradient(ellipse 96% 88% at 58% 54%, #000 28%, transparent 74%);
	mask-image: radial-gradient(ellipse 96% 88% at 58% 54%, #000 28%, transparent 74%);
}

.fm-service-cards__bento-scene::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 88% 78% at 62% 56%, color-mix(in srgb, var(--fm-svc-accent) 14%, transparent), transparent 68%);
	pointer-events: none;
}

.fm-service-cards--bento-scene:not(.is-bento-scene-ready) .fm-service-cards__bento-scene {
	opacity: 0;
}

.fm-service-cards--bento-scene.is-bento-scene-ready .fm-service-cards__bento-scene,
.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-scene {
	opacity: 1;
}

/* Corner rings — anchor field + centered stack */
.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__bento-scene--corner-rings {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-mask-image: none;
	mask-image: none;
}

.fm-service-cards__bento-scene--corner-rings::before {
	display: none;
}

.fm-service-cards__bento-corner-field {
	--fm-corner-core: clamp(210px, 48%, 330px);
	--fm-corner-step: 42px;
	--fm-corner-ring-count: 11;
	--fm-corner-size: calc(var(--fm-corner-core) + var(--fm-corner-step) * (var(--fm-corner-ring-count) - 3) * 2);
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	pointer-events: none;
	z-index: 0;
}

.fm-service-cards__bento-corner-stack {
	position: absolute;
	right: 0;
	bottom: 0;
	width: var(--fm-corner-size);
	height: var(--fm-corner-size);
	transform: translate(52%, 52%) scale(1);
	transform-origin: 100% 100%;
	pointer-events: none;
	transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.fm-service-cards__bento-corner-stack::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: 50%;
	pointer-events: none;
	background:
		radial-gradient(circle at 50% 50%,
			color-mix(in srgb, var(--fm-svc-accent) 44%, transparent) 0%,
			color-mix(in srgb, var(--fm-svc-accent) 22%, transparent) 28%,
			color-mix(in srgb, var(--fm-svc-accent) 8%, transparent) 48%,
			transparent 68%);
	transition: background 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.fm-service-cards__bento-corner-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: max(3.5rem, calc(var(--fm-corner-core) + var(--fm-corner-step) * (var(--fm-ring-i) - 2) * 2));
	height: max(3.5rem, calc(var(--fm-corner-core) + var(--fm-corner-step) * (var(--fm-ring-i) - 2) * 2));
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid color-mix(in srgb, var(--fm-svc-accent) 14%, transparent);
	background: transparent;
	box-shadow: none;
	pointer-events: none;
	z-index: 1;
	opacity: calc(0.6 - var(--fm-ring-i) * 0.038);
	transition: opacity 0.55s ease;
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__card:hover .fm-service-cards__bento-corner-stack {
		transform: translate(52%, 52%) scale(1.07);
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__card:hover .fm-service-cards__bento-corner-stack::before {
		background:
			radial-gradient(circle at 50% 50%,
				color-mix(in srgb, var(--fm-svc-accent) 50%, transparent) 0%,
				color-mix(in srgb, var(--fm-svc-accent) 26%, transparent) 30%,
				color-mix(in srgb, var(--fm-svc-accent) 10%, transparent) 50%,
				transparent 70%);
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__card:hover .fm-service-cards__bento-corner-ring {
		opacity: calc(0.7 - var(--fm-ring-i) * 0.036);
	}
}

/* Pulse field — no nested card, blends on surface */
.fm-service-cards__bento-field {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.fm-service-cards__bento-field-scan {
	position: absolute;
	top: -8%;
	bottom: -8%;
	left: -40%;
	width: 38%;
	background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--fm-svc-accent) 12%, transparent), transparent);
	pointer-events: none;
	opacity: 0.65;
}

.fm-service-cards__bento-field-arc {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 38%;
	left: 4%;
	width: auto;
	height: auto;
	overflow: visible;
}

.fm-service-cards__bento-field-path {
	fill: none;
	stroke: color-mix(in srgb, var(--fm-svc-accent) 28%, transparent);
	stroke-width: 2;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
}

.fm-service-cards__bento-pulse-bars {
	position: absolute;
	right: 10%;
	bottom: 20%;
	left: 18%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 9px;
	height: 100px;
}

.fm-service-cards__bento-pulse-bar {
	display: block;
	width: 11px;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(to top,
			color-mix(in srgb, var(--fm-svc-accent) 58%, white),
			color-mix(in srgb, var(--fm-svc-accent) 10%, transparent));
	transform-origin: 50% 100%;
	transform: scaleY(0.32);
	filter: drop-shadow(0 0 14px color-mix(in srgb, var(--fm-svc-accent) 22%, transparent));
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar {
	animation: fm-svc-bento-bar-dance 1.25s ease-in-out infinite;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar:nth-child(1) {
	animation-delay: 0s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar:nth-child(2) {
	animation-delay: 0.08s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar:nth-child(3) {
	animation-delay: 0.16s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar:nth-child(4) {
	animation-delay: 0.24s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar:nth-child(5) {
	animation-delay: 0.32s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar:nth-child(6) {
	animation-delay: 0.4s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-pulse-bar:nth-child(7) {
	animation-delay: 0.48s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion) .fm-service-cards__bento-field-scan {
	animation: fm-svc-bento-scan-sweep 3.2s ease-in-out infinite;
}

@keyframes fm-svc-bento-bar-dance {

	0%,
	100% {
		transform: scaleY(0.28);
	}

	50% {
		transform: scaleY(0.94);
	}
}

@keyframes fm-svc-bento-scan-sweep {
	0% {
		transform: translateX(0);
		opacity: 0;
	}

	12% {
		opacity: 0.65;
	}

	88% {
		opacity: 0.65;
	}

	100% {
		transform: translateX(280%);
		opacity: 0;
	}
}

/* Spark nodes — constellation on surface */
.fm-service-cards__bento-spark {
	position: absolute;
	inset: 0;
	width: auto;
	height: auto;
	overflow: visible;
}

.fm-service-cards__bento-spark-link {
	stroke: color-mix(in srgb, var(--fm-svc-accent) 24%, transparent);
	stroke-width: 1.5;
	stroke-linecap: round;
}

.fm-service-cards__bento-spark-node {
	fill: color-mix(in srgb, var(--fm-svc-accent) 52%, white);
	filter: drop-shadow(0 0 10px color-mix(in srgb, var(--fm-svc-accent) 28%, transparent));
}

/* Trace rails */
.fm-service-cards__bento-rails {
	position: absolute;
	right: 4%;
	bottom: 22%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 16px;
	width: 78%;
	max-width: 280px;
	min-height: 0;
}

.fm-service-cards__bento-rail {
	position: relative;
	display: block;
	height: 10px;
	border-radius: 999px;
	overflow: hidden;
	background: color-mix(in srgb, var(--fm-svc-accent) 7%, rgba(15, 23, 42, 0.06));
}

.fm-service-cards__bento-rail:nth-child(1) {
	width: 92%;
	margin-left: auto;
}

.fm-service-cards__bento-rail:nth-child(2) {
	width: 76%;
	margin-left: auto;
}

.fm-service-cards__bento-rail:nth-child(3) {
	width: 100%;
}

.fm-service-cards__bento-rail-glow {
	position: absolute;
	top: 0;
	left: -28%;
	width: 26%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--fm-svc-accent) 75%, white), transparent);
	box-shadow: 0 0 20px color-mix(in srgb, var(--fm-svc-accent) 30%, transparent);
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion).is-bento-scene-ready .fm-service-cards__bento-rail-glow {
	animation: fm-svc-bento-rail-glow 2.6s ease-in-out infinite;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion).is-bento-scene-ready .fm-service-cards__bento-rail:nth-child(2) .fm-service-cards__bento-rail-glow {
	animation-delay: 0.45s;
}

.fm-service-cards--bento-scene:not(.fm-service-cards--bento-scene-motion).is-bento-scene-ready .fm-service-cards__bento-rail:nth-child(3) .fm-service-cards__bento-rail-glow {
	animation-delay: 0.9s;
}

@keyframes fm-svc-bento-rail-glow {
	0% {
		transform: translateX(0);
		opacity: 0;
	}

	15% {
		opacity: 1;
	}

	85% {
		opacity: 1;
	}

	100% {
		transform: translateX(420%);
		opacity: 0;
	}
}

.fm-service-cards--bento-spotlight .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--bento-spotlight .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
	color: var(--fm-svc-accent);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
	.fm-service-cards--bento-spotlight .fm-service-cards__card:hover {
		box-shadow:
			0 1px 2px rgba(15, 23, 42, 0.04),
			0 16px 40px rgba(15, 23, 42, 0.08);
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__card:hover .fm-service-cards__icon {
		background: color-mix(in srgb, var(--fm-svc-accent) 14%, transparent);
	}
}

@media (max-width: 1024px) {
	.fm-service-cards--bento-spotlight .fm-service-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured {
		grid-column: 1 / -1;
		grid-row: span 1;
	}
}

@media (max-width: 767px) {
	.fm-service-cards--linear-surface .fm-service-cards__card {
		padding: 22px;
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__bento-shell {
		padding: 16px;
		border-radius: 16px;
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__grid {
		grid-template-columns: minmax(0, 1fr);
		grid-auto-rows: auto;
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__item,
	.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured {
		grid-column: auto;
		grid-row: auto;
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__card-surface {
		padding: 20px;
	}

	.fm-service-cards--bento-spotlight .fm-service-cards__item.is-bento-featured .fm-service-cards__bento-scene:not(.fm-service-cards__bento-scene--corner-rings) {
		left: 14%;
		right: 4%;
		top: 36%;
		bottom: 10%;
	}

	.fm-service-cards__bento-pulse-bars {
		height: 76px;
		right: 6%;
		bottom: 16%;
		left: 12%;
	}

	.fm-service-cards__bento-corner-field {
		--fm-corner-core: clamp(168px, 64vw, 270px);
		--fm-corner-step: 36px;
		right: 0;
		bottom: 0;
	}
}

/* Peek Reveal â€” fixed-height cards with bottom drawer */
.fm-service-cards--peek-reveal {
	--fm-svc-peek-height: 280px;
	--fm-svc-peek-drawer-bg: #f8fafc;
	--fm-svc-peek-hint: color-mix(in srgb, var(--fm-svc-accent) 52%, var(--fm-svc-muted));
	--fm-svc-peek-duration: 0.55s;
	--fm-svc-peek-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--fm-svc-peek-content-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.fm-service-cards--peek-reveal .fm-service-cards__card {
	position: relative;
	display: block;
	min-height: var(--fm-svc-peek-height);
	overflow: hidden;
	border-radius: 12px;
	background-color: var(--fm-svc-surface);
	border: 1px solid var(--fm-svc-border);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition:
		border-color var(--fm-svc-peek-duration) var(--fm-svc-peek-ease),
		box-shadow var(--fm-svc-peek-duration) var(--fm-svc-peek-ease);
}

.fm-service-cards--peek-reveal .fm-service-cards__peek-front {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	height: 100%;
	min-height: var(--fm-svc-peek-height);
	padding: 28px;
}

.fm-service-cards--peek-reveal .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	color: var(--fm-svc-accent);
	background: color-mix(in srgb, var(--fm-svc-accent) 10%, transparent);
	transition: background-color var(--fm-svc-peek-duration) var(--fm-svc-peek-ease);
}

.fm-service-cards--peek-reveal .fm-service-cards__icon svg,
.fm-service-cards--peek-reveal .fm-service-cards__icon i {
	width: 1.15rem;
	height: 1.15rem;
	font-size: 1.15rem;
	line-height: 1;
}

.fm-service-cards--peek-reveal .fm-service-cards__icon svg {
	fill: currentColor;
}

.fm-service-cards--peek-reveal .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--peek-reveal .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.fm-service-cards--peek-reveal .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
}

.fm-service-cards--peek-reveal .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--peek-reveal .fm-service-cards__peek-hint {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 8px;
	color: var(--fm-svc-peek-hint);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	transform: translate3d(0, 0, 0);
	transition:
		opacity calc(var(--fm-svc-peek-duration) * 0.72) var(--fm-svc-peek-ease),
		transform var(--fm-svc-peek-duration) var(--fm-svc-peek-ease);
}

.fm-service-cards--peek-reveal .fm-service-cards__peek-drawer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 20px 28px 24px;
	border-top: 1px solid transparent;
	background-color: var(--fm-svc-peek-drawer-bg);
	opacity: 0.98;
	transform: translate3d(0, 100%, 0);
	transition:
		transform var(--fm-svc-peek-duration) var(--fm-svc-peek-ease),
		opacity calc(var(--fm-svc-peek-duration) * 0.85) var(--fm-svc-peek-ease),
		border-color calc(var(--fm-svc-peek-duration) * 0.7) var(--fm-svc-peek-ease);
	backface-visibility: hidden;
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__peek-drawer {
	will-change: transform, opacity;
}

.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-motion) .fm-service-cards__peek-drawer {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	border-top-color: var(--fm-svc-border);
}

.fm-service-cards--peek-reveal .fm-service-cards__peek-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
	width: 100%;
	color: var(--fm-svc-muted);
	font-size: 0.875rem;
	line-height: 1.5;
}

.fm-service-cards--peek-reveal .fm-service-cards__peek-list li {
	position: relative;
	padding-left: 1.1rem;
	opacity: 0;
	transform: translate3d(0, 8px, 0);
	transition:
		opacity 0.38s var(--fm-svc-peek-content-ease),
		transform 0.38s var(--fm-svc-peek-content-ease);
	transition-delay: 0s;
}

.fm-service-cards--peek-reveal .fm-service-cards__peek-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--fm-svc-accent);
	transform: translateY(-50%) scale(0.6);
	transition: transform 0.42s var(--fm-svc-peek-content-ease);
}

.fm-service-cards--peek-reveal .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 2px;
	color: var(--fm-svc-accent);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	opacity: 0;
	transform: translate3d(0, 8px, 0);
	transition:
		color 0.28s ease,
		opacity 0.38s var(--fm-svc-peek-content-ease),
		transform 0.38s var(--fm-svc-peek-content-ease);
	transition-delay: 0s;
}

.fm-service-cards--peek-reveal .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform 0.42s var(--fm-svc-peek-content-ease);
}

.fm-service-cards--peek-reveal .fm-service-cards__card.is-peek-static .fm-service-cards__peek-hint {
	display: none;
}

/* Open state â€” hover class (JS) + tap class (mobile) + keyboard focus */
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-drawer,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-drawer,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-drawer {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	border-top-color: var(--fm-svc-border);
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-hint,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-hint,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-hint {
	opacity: 0;
	transform: translate3d(0, 6px, 0);
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-list li,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-list li {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-list li:nth-child(1),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li:nth-child(1),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-list li:nth-child(1) {
	transition-delay: 0.08s;
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-list li:nth-child(2),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li:nth-child(2),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-list li:nth-child(2) {
	transition-delay: 0.12s;
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-list li:nth-child(3),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li:nth-child(3),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-list li:nth-child(3) {
	transition-delay: 0.16s;
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-list li:nth-child(4),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li:nth-child(4),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-list li:nth-child(4) {
	transition-delay: 0.2s;
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-list li:nth-child(5),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li:nth-child(5),
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-list li:nth-child(5) {
	transition-delay: 0.24s;
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__peek-list li::before,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li::before,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__peek-list li::before {
	transform: translateY(-50%) scale(1);
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__link,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__link,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__link {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition-delay: 0.18s;
}

@media (hover: hover) and (pointer: fine) {

	.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active,
	.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within {
		border-color: color-mix(in srgb, var(--fm-svc-accent) 22%, var(--fm-svc-border));
		box-shadow:
			0 1px 2px rgba(15, 23, 42, 0.04),
			0 16px 40px rgba(15, 23, 42, 0.08);
	}

	.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__icon,
	.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__icon {
		background: color-mix(in srgb, var(--fm-svc-accent) 14%, transparent);
	}

	.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card.is-peek-active .fm-service-cards__link:hover .fm-service-cards__link-arrow,
	.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__card:focus-within .fm-service-cards__link:hover .fm-service-cards__link-arrow {
		transform: translate3d(3px, 0, 0);
	}
}

@media (max-width: 767px) {
	.fm-service-cards--peek-reveal.fm-service-cards--peek-mobile-expanded .fm-service-cards__peek-hint {
		display: none;
	}

	.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-mobile-expanded) .fm-service-cards__peek-front {
		min-height: var(--fm-svc-peek-height);
		padding: 22px;
	}

	.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-mobile-expanded).fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-drawer {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		border-top-color: var(--fm-svc-border);
	}

	.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-mobile-expanded).fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-hint {
		opacity: 0;
		transform: translate3d(0, 6px, 0);
	}

	.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-mobile-expanded).fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__peek-list li,
	.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-mobile-expanded).fm-service-cards--peek-motion .fm-service-cards__card.is-peek-open .fm-service-cards__link {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}

	.fm-service-cards--peek-reveal.fm-service-cards--peek-mobile-expanded .fm-service-cards__card {
		min-height: 0;
		overflow: visible;
	}

	.fm-service-cards--peek-reveal.fm-service-cards--peek-mobile-expanded .fm-service-cards__peek-front {
		min-height: 0;
		padding: 22px 22px 0;
	}

	.fm-service-cards--peek-reveal.fm-service-cards--peek-mobile-expanded .fm-service-cards__peek-drawer {
		position: relative;
		opacity: 1;
		transform: none;
		padding: 16px 22px 22px;
		border-top-color: var(--fm-svc-border);
	}

	.fm-service-cards--peek-reveal.fm-service-cards--peek-mobile-expanded .fm-service-cards__peek-list li,
	.fm-service-cards--peek-reveal.fm-service-cards--peek-mobile-expanded .fm-service-cards__link {
		opacity: 1;
		transform: none;
	}
}

.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-motion) .fm-service-cards__peek-list li,
.fm-service-cards--peek-reveal:not(.fm-service-cards--peek-motion) .fm-service-cards__link {
	opacity: 1;
	transform: none;
}

/* Image Reveal â€” text-first cards with hover image preview */
.fm-service-cards--image-reveal {
	--fm-svc-image-min-height: auto;
	--fm-svc-image-panel-height: 140px;
	--fm-svc-image-overlay-tint: var(--fm-svc-image-overlay, rgba(15, 23, 42, 0.65));
	--fm-svc-image-overlay-strength: 1;
	--fm-svc-image-scale: 1.04;
	--fm-svc-image-duration: 0.55s;
	--fm-svc-image-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--fm-svc-image-title-hover: #ffffff;
	--fm-svc-image-desc-hover: rgba(255, 255, 255, 0.86);
	--fm-svc-image-link-hover: #ffffff;
	--fm-svc-image-icon-hover: #ffffff;
	--fm-svc-image-icon-bg-hover: rgba(255, 255, 255, 0.22);
	--fm-svc-image-icon-border-hover: rgba(255, 255, 255, 0.34);
}

.fm-service-cards--image-reveal .fm-service-cards__item {
	display: flex;
}

.fm-service-cards--image-reveal .fm-service-cards__card {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
	min-height: var(--fm-svc-image-min-height, auto);
	overflow: hidden;
	border-radius: 12px;
	background-color: var(--fm-svc-surface);
	border: 1px solid var(--fm-svc-border);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition:
		border-color var(--fm-svc-image-duration) var(--fm-svc-image-ease),
		box-shadow var(--fm-svc-image-duration) var(--fm-svc-image-ease);
}

.fm-service-cards--image-reveal .fm-service-cards__image-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	min-height: 0;
	padding: 28px;
}

.fm-service-cards--image-reveal .fm-service-cards__image-media {
	position: absolute;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.fm-service-cards--image-reveal .fm-service-cards__image-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(var(--fm-svc-image-scale));
	transition: transform var(--fm-svc-image-duration) var(--fm-svc-image-ease);
}

.fm-service-cards--image-reveal .fm-service-cards__image-overlay {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--fm-svc-image-duration) var(--fm-svc-image-ease);
}

.fm-service-cards--image-reveal .fm-service-cards__image-scrim {
	position: absolute;
	inset: 0;
	background: var(--fm-svc-image-overlay-tint);
	opacity: var(--fm-svc-image-overlay-strength, 1);
}

.fm-service-cards--image-reveal .fm-service-cards__image-vignette {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(15, 23, 42, 0.28) 0%,
			rgba(15, 23, 42, 0.52) 46%,
			rgba(15, 23, 42, 0.84) 100%);
	opacity: var(--fm-svc-image-overlay-strength, 1);
}

.fm-service-cards--image-reveal.fm-service-cards--image-panel .fm-service-cards__image-media {
	left: 0;
	right: 0;
	bottom: 0;
	height: var(--fm-svc-image-panel-height);
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 100%, 0);
	transition:
		transform var(--fm-svc-image-duration) var(--fm-svc-image-ease),
		opacity calc(var(--fm-svc-image-duration) * 0.85) var(--fm-svc-image-ease),
		visibility 0s linear var(--fm-svc-image-duration);
}

.fm-service-cards--image-reveal.fm-service-cards--image-panel .fm-service-cards__image-overlay {
	opacity: 0;
}

.fm-service-cards--image-reveal.fm-service-cards--image-cover .fm-service-cards__image-media {
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity var(--fm-svc-image-duration) var(--fm-svc-image-ease),
		visibility 0s linear var(--fm-svc-image-duration);
}

.fm-service-cards--image-reveal.fm-service-cards--image-cover .fm-service-cards__image-overlay {
	opacity: 0;
}

.fm-service-cards--image-reveal:not(.fm-service-cards--image-motion) .fm-service-cards__image-media {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.fm-service-cards--image-reveal:not(.fm-service-cards--image-motion) .fm-service-cards__image-overlay {
	opacity: 1;
}

.fm-service-cards--image-reveal:not(.fm-service-cards--image-motion) .fm-service-cards__image-photo {
	transform: scale(1);
}

.fm-service-cards--image-reveal .fm-service-cards__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	color: var(--fm-svc-accent);
	background: color-mix(in srgb, var(--fm-svc-accent) 10%, transparent);
	box-shadow: inset 0 0 0 1px transparent;
	transition:
		color var(--fm-svc-image-duration) var(--fm-svc-image-ease),
		background-color var(--fm-svc-image-duration) var(--fm-svc-image-ease),
		box-shadow var(--fm-svc-image-duration) var(--fm-svc-image-ease);
}

.fm-service-cards--image-reveal .fm-service-cards__icon svg,
.fm-service-cards--image-reveal .fm-service-cards__icon i {
	width: 1.15rem;
	height: 1.15rem;
	font-size: 1.15rem;
	line-height: 1;
}

.fm-service-cards--image-reveal .fm-service-cards__icon svg {
	fill: currentColor;
}

.fm-service-cards--image-reveal .fm-service-cards__icon svg path {
	fill: currentColor;
	stroke: currentColor;
}

.fm-service-cards--image-reveal .fm-service-cards__title {
	margin: 0;
	color: var(--fm-svc-ink);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
	transition: color var(--fm-svc-image-duration) var(--fm-svc-image-ease);
}

.fm-service-cards--image-reveal .fm-service-cards__description {
	margin: 0;
	color: var(--fm-svc-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
	transition: color var(--fm-svc-image-duration) var(--fm-svc-image-ease);
}

.fm-service-cards--image-reveal .fm-service-cards__description p:last-child {
	margin-bottom: 0;
}

.fm-service-cards--image-reveal .fm-service-cards__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
	color: var(--fm-svc-accent);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: color 0.28s ease;
}

.fm-service-cards--image-reveal .fm-service-cards__link-arrow {
	display: inline-block;
	transition: transform var(--fm-svc-image-duration) var(--fm-svc-image-ease);
}

.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__image-media,
.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__image-media,
.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__image-media {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	transition:
		transform var(--fm-svc-image-duration) var(--fm-svc-image-ease),
		opacity calc(var(--fm-svc-image-duration) * 0.85) var(--fm-svc-image-ease),
		visibility 0s linear 0s;
}

.fm-service-cards--image-reveal.fm-service-cards--image-motion.fm-service-cards--image-cover:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__image-media,
.fm-service-cards--image-reveal.fm-service-cards--image-motion.fm-service-cards--image-cover:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__image-media,
.fm-service-cards--image-reveal.fm-service-cards--image-motion.fm-service-cards--image-cover:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__image-media {
	transform: none;
}

.fm-service-cards--image-reveal.fm-service-cards--image-motion.fm-service-cards--image-cover:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__image-overlay,
.fm-service-cards--image-reveal.fm-service-cards--image-motion.fm-service-cards--image-cover:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__image-overlay,
.fm-service-cards--image-reveal.fm-service-cards--image-motion.fm-service-cards--image-cover:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__image-overlay {
	opacity: 1;
}

.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__image-photo,
.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__image-photo,
.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__image-photo {
	transform: scale(1);
}

/* GSAP owns image motion â€” disable competing CSS transitions */
.fm-service-cards--image-reveal.is-image-gsap.fm-service-cards--image-motion .fm-service-cards__image-media,
.fm-service-cards--image-reveal.is-image-gsap.fm-service-cards--image-motion .fm-service-cards__image-photo,
.fm-service-cards--image-reveal.is-image-gsap.fm-service-cards--image-motion .fm-service-cards__image-overlay {
	transition: none;
}

/* CSS fallback text contrast on full-cover reveal */
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion .fm-service-cards__card.is-image-lit .fm-service-cards__title,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__title,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__title,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__title {
	color: var(--fm-svc-image-title-hover);
}

.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion .fm-service-cards__card.is-image-lit .fm-service-cards__description,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__description,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__description,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__description {
	color: var(--fm-svc-image-desc-hover);
}

.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion .fm-service-cards__card.is-image-lit .fm-service-cards__link,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__link,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__link,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__link {
	color: var(--fm-svc-image-link-hover);
}

.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion .fm-service-cards__card.is-image-lit .fm-service-cards__icon,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__icon,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__icon,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__icon {
	color: var(--fm-svc-image-icon-hover);
	background-color: var(--fm-svc-image-icon-bg-hover);
	box-shadow: inset 0 0 0 1px var(--fm-svc-image-icon-border-hover);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion .fm-service-cards__card.is-image-lit .fm-service-cards__icon svg,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion .fm-service-cards__card.is-image-lit .fm-service-cards__icon svg path,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__icon svg,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-active .fm-service-cards__icon svg path,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__icon svg,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card.is-image-open .fm-service-cards__icon svg path,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__icon svg,
.fm-service-cards--image-reveal.fm-service-cards--image-cover.fm-service-cards--image-motion:not(.is-image-gsap) .fm-service-cards__card:focus-within .fm-service-cards__icon svg path {
	fill: var(--fm-svc-image-icon-hover);
	stroke: var(--fm-svc-image-icon-hover);
}

@media (hover: hover) and (pointer: fine) {

	.fm-service-cards--image-reveal.fm-service-cards--image-motion .fm-service-cards__card.is-image-active,
	.fm-service-cards--image-reveal.fm-service-cards--image-motion .fm-service-cards__card:focus-within {
		border-color: color-mix(in srgb, var(--fm-svc-accent) 22%, var(--fm-svc-border));
		box-shadow:
			0 1px 2px rgba(15, 23, 42, 0.04),
			0 16px 40px rgba(15, 23, 42, 0.08);
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.fm-service-cards--image-cover) .fm-service-cards__card.is-image-active .fm-service-cards__icon,
	.fm-service-cards--image-reveal.fm-service-cards--image-motion:not(.fm-service-cards--image-cover) .fm-service-cards__card:focus-within .fm-service-cards__icon {
		background: color-mix(in srgb, var(--fm-svc-accent) 14%, transparent);
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-motion .fm-service-cards__card.is-image-active .fm-service-cards__link:hover .fm-service-cards__link-arrow,
	.fm-service-cards--image-reveal.fm-service-cards--image-motion .fm-service-cards__card:focus-within .fm-service-cards__link:hover .fm-service-cards__link-arrow {
		transform: translate3d(3px, 0, 0);
	}
}

@media (max-width: 767px) {
	.fm-service-cards--image-reveal .fm-service-cards__image-content {
		padding: 22px;
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-mobile-visible.fm-service-cards--image-panel .fm-service-cards__image-content {
		padding-bottom: calc(22px + var(--fm-svc-image-panel-height));
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-mobile-visible.fm-service-cards--image-panel .fm-service-cards__image-media {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0, 0);
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-mobile-visible.fm-service-cards--image-panel .fm-service-cards__image-overlay {
		opacity: 0;
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-mobile-visible.fm-service-cards--image-panel .fm-service-cards__image-photo {
		transform: scale(1);
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-mobile-visible.fm-service-cards--image-cover .fm-service-cards__image-media {
		opacity: 0.32;
		visibility: visible;
	}

	.fm-service-cards--image-reveal.fm-service-cards--image-mobile-visible.fm-service-cards--image-cover .fm-service-cards__image-overlay {
		opacity: 0.62;
	}

	.fm-service-cards--image-reveal:not(.fm-service-cards--image-mobile-visible).fm-service-cards--image-motion .fm-service-cards__card.is-image-open .fm-service-cards__image-media {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0, 0);
	}

	.fm-service-cards--image-reveal:not(.fm-service-cards--image-mobile-visible).fm-service-cards--image-motion.fm-service-cards--image-cover .fm-service-cards__card.is-image-open .fm-service-cards__image-overlay {
		opacity: 1;
	}

	.fm-service-cards--image-reveal:not(.fm-service-cards--image-mobile-visible).fm-service-cards--image-motion .fm-service-cards__card.is-image-open .fm-service-cards__image-photo {
		transform: scale(1);
	}
}

/* Scroll reveal */
.fm-service-cards--reveal .fm-service-cards__item {
	opacity: 0;
	transform: translate3d(0, 16px, 0);
}

.fm-service-cards--reveal.is-ready .fm-service-cards__item.is-visible,
.fm-service-cards--reveal.is-static .fm-service-cards__item {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.elementor-editor-active .fm-service-cards--reveal .fm-service-cards__item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {

	.fm-service-cards--linear-surface .fm-service-cards__card,
	.fm-service-cards--linear-surface .fm-service-cards__icon,
	.fm-service-cards--linear-frame .fm-service-cards__card,
	.fm-service-cards--linear-frame .fm-service-cards__icon,
	.fm-service-cards--linear-frame .fm-service-cards__frame-sheen,
	.fm-service-cards--linear-frame .fm-service-cards__frame-glyph,
	.fm-service-cards--linear-frame .fm-service-cards__frame-glyph>span,
	.fm-service-cards--linear-frame .fm-service-cards__frame-rule,
	.fm-service-cards--linear-frame .fm-service-cards__link,
	.fm-service-cards--linear-frame .fm-service-cards__link-arrow,
	.fm-service-cards--linear-split .fm-service-cards__card,
	.fm-service-cards--linear-split .fm-service-cards__split-visual,
	.fm-service-cards--linear-split .fm-service-cards__split-glow,
	.fm-service-cards--linear-split .fm-service-cards__icon,
	.fm-service-cards--linear-split .fm-service-cards__link,
	.fm-service-cards--linear-split .fm-service-cards__link-arrow,
	.fm-service-cards--linear-float .fm-service-cards__card,
	.fm-service-cards--linear-float .fm-service-cards__float-ambient,
	.fm-service-cards--linear-float .fm-service-cards__float-ring,
	.fm-service-cards--linear-float .fm-service-cards__icon,
	.fm-service-cards--linear-float .fm-service-cards__link,
	.fm-service-cards--linear-float .fm-service-cards__link-arrow,
	.fm-service-cards--raycast-command .fm-service-cards__card,
	.fm-service-cards--raycast-command .fm-service-cards__icon,
	.fm-service-cards--raycast-command .fm-service-cards__link,
	.fm-service-cards--raycast-command .fm-service-cards__link-arrow,
	.fm-service-cards--stripe-editorial .fm-service-cards__card,
	.fm-service-cards--stripe-editorial .fm-service-cards__link,
	.fm-service-cards--stripe-editorial .fm-service-cards__link-arrow,
	.fm-service-cards--glass-liquid .fm-service-cards__card,
	.fm-service-cards--glass-liquid .fm-service-cards__glass-shine,
	.fm-service-cards--glass-liquid .fm-service-cards__link,
	.fm-service-cards--glass-liquid .fm-service-cards__link-arrow,
	.fm-service-cards--awwwards-showcase .fm-service-cards__card,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-rule,
	.fm-service-cards--awwwards-showcase .fm-service-cards__title,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-aside,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-arrow,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-float,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-dock,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-dock-frame,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-dock-photo,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-desc,
	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-desc-inner,
	.fm-service-cards--awwwards-showcase .fm-service-cards__item,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__card,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-row,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-rule,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__icon,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__title,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-action,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-arrow,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-slide,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-photo,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-desc,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-desc-inner,
	.fm-service-cards--awwwards-split-stage .fm-service-cards__item,
	.fm-service-cards--peek-reveal .fm-service-cards__card,
	.fm-service-cards--peek-reveal .fm-service-cards__peek-front,
	.fm-service-cards--peek-reveal .fm-service-cards__peek-drawer,
	.fm-service-cards--peek-reveal .fm-service-cards__icon,
	.fm-service-cards--peek-reveal .fm-service-cards__peek-list li,
	.fm-service-cards--peek-reveal .fm-service-cards__link,
	.fm-service-cards--peek-reveal .fm-service-cards__peek-hint,
	.fm-service-cards--image-reveal .fm-service-cards__card,
	.fm-service-cards--image-reveal .fm-service-cards__image-media,
	.fm-service-cards--image-reveal .fm-service-cards__image-photo,
	.fm-service-cards--image-reveal .fm-service-cards__image-overlay,
	.fm-service-cards--image-reveal .fm-service-cards__icon,
	.fm-service-cards--bento-spotlight .fm-service-cards__card-glow,
	.fm-service-cards__bento-corner-field,
	.fm-service-cards__bento-corner-stack,
	.fm-service-cards__bento-corner-stack::before,
	.fm-service-cards__bento-corner-ring,
	.fm-service-cards__bento-pulse-bar,
	.fm-service-cards__bento-field-scan,
	.fm-service-cards__bento-field-path,
	.fm-service-cards__bento-spark-link,
	.fm-service-cards__bento-spark-node,
	.fm-service-cards__bento-rail-glow,
	.fm-service-cards--reveal .fm-service-cards__item {
		transition: none;
	}

	.fm-service-cards--reveal .fm-service-cards__item {
		opacity: 1;
		transform: none;
	}

	.fm-service-cards--awwwards-showcase.is-showcase-list-active .fm-service-cards__item {
		opacity: 1;
	}

	.fm-service-cards--awwwards-split-stage.is-showcase-list-active .fm-service-cards__item {
		opacity: 1;
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-desc-hover .fm-service-cards__showcase-desc {
		display: block;
		grid-template-rows: none;
	}

	.fm-service-cards--awwwards-split-stage.fm-service-cards--showcase-desc-hover .fm-service-cards__showcase-desc {
		display: block;
		grid-template-rows: none;
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-slide.is-active {
		opacity: 1;
		transform: none;
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__split-stage-slide.is-active .fm-service-cards__split-stage-photo {
		transform: none;
	}

	.fm-service-cards--awwwards-split-stage .fm-service-cards__showcase-arrow {
		transform: none;
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__showcase-dock {
		opacity: 1;
		visibility: visible;
		transform: translate3d(-50%, -50%, 0) scale(1);
		filter: none;
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__showcase-dock-frame {
		box-shadow:
			0 28px 70px rgba(15, 23, 42, 0.24),
			0 8px 24px rgba(15, 23, 42, 0.12);
	}

	.fm-service-cards--awwwards-showcase.fm-service-cards--showcase-dock .fm-service-cards__showcase-dock-photo {
		transform: scale(1);
	}

	.fm-service-cards--awwwards-showcase .fm-service-cards__showcase-arrow {
		transform: none;
	}
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__peek-drawer {
	opacity: 1;
	transform: none;
	border-top-color: var(--fm-svc-border);
}

.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__peek-list li,
.fm-service-cards--peek-reveal.fm-service-cards--peek-motion .fm-service-cards__link {
	opacity: 1;
	transform: none;
}

.fm-service-cards--image-reveal.fm-service-cards--image-motion .fm-service-cards__image-media {
	opacity: 1;
	transform: none;
}

.fm-service-cards--image-reveal.fm-service-cards--image-motion .fm-service-cards__image-overlay {
	opacity: 1;
}

.fm-service-cards--image-reveal.fm-service-cards--image-motion .fm-service-cards__image-photo {
	transform: scale(1);
}
}