/* Components: estilos de componentes reutilizaveis (futuras RFCs). */

.site-navbar {
	--navbar-shrink-progress: 0;
	--navbar-height-expanded: 100px;
	--navbar-height-collapsed: 52px;
	--navbar-logo-expanded: 60px;
	--navbar-logo-collapsed: 40px;
	position: sticky;
	top: 0;
	z-index: 1050;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
	opacity: 0.93;
}

.site-navbar.is-scrolled {
	background-color: rgba(255, 255, 255, 0.50);
	border-bottom-color: var(--solidia-line);
	box-shadow: 0 8px 20px rgba(17, 36, 61, 0.05);
	backdrop-filter: blur(30px);
	opacity: 1;
}

.site-navbar:not(.is-scrolled) {
	box-shadow: none;
	border-bottom-color: transparent;
}

.site-navbar-container {
	min-height: calc(
		var(--navbar-height-expanded) -
		(var(--navbar-height-expanded) - var(--navbar-height-collapsed)) * var(--navbar-shrink-progress)
	);
	transition: min-height 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-navbar.is-compact .site-navbar-container {
	min-height: calc(var(--navbar-height-collapsed) + 1px);
}

.site-navbar-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--solidia-ink);
	text-decoration: none;
}

.site-navbar-brand:hover,
.site-navbar-brand:focus {
	color: var(--solidia-ink);
}

.site-navbar-logo {
	height: calc(
		var(--navbar-logo-expanded) -
		(var(--navbar-logo-expanded) - var(--navbar-logo-collapsed)) * var(--navbar-shrink-progress)
	);
	width: auto;
	display: block;
	transition: height 0.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.site-navbar.is-compact .site-navbar-logo {
	height: calc(var(--navbar-logo-collapsed) + 1px);
}

.site-navbar:not(.is-scrolled) .site-navbar-logo {
	opacity: 0.86;
}

.site-navbar-toggler {
	border: 1px solid var(--solidia-line);
	border-radius: 0.55rem;
	padding: 0.32rem 0.52rem;
	color: var(--solidia-ink);
	font-size: 1.2rem;
	line-height: 1;
	box-shadow: none;
}

.site-navbar-toggler:focus {
	box-shadow: none;
	border-color: var(--solidia-brand);
	color: var(--solidia-brand);
}

.site-navbar-nav {
	gap: 0.15rem;
}

.site-navbar-link {
	padding: 0.56rem 0.72rem;
	border-radius: 0.5rem;
	font-size: 0.94rem;
	font-weight: 500;
	color: var(--solidia-muted);
	transition: color 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}

.site-navbar.is-compact .site-navbar-link {
	padding-top: 0.46rem;
	padding-bottom: 0.46rem;
}

.site-navbar:not(.is-scrolled) .site-navbar-link,
.site-navbar:not(.is-scrolled) .site-login-link {
	color: rgba(17, 36, 61, 0.62);
}

.site-navbar:not(.is-scrolled) .site-btn-demo {
	box-shadow: none;
	background-color: rgba(28, 75, 143, 0.86);
	border-color: rgba(28, 75, 143, 0.9);
}

.site-navbar-link:hover,
.site-navbar-link:focus,
.site-navbar-link.show {
	color: var(--solidia-ink);
	background-color: rgba(255, 255, 255, 0.72);
}

.site-navbar-dropdown {
	border: 1px solid var(--solidia-line);
	border-radius: 0.75rem;
	padding: 0.4rem;
	min-width: 14rem;
	box-shadow: 0 14px 30px rgba(17, 36, 61, 0.08);
}

.site-navbar-dropdown .dropdown-item {
	border-radius: 0.45rem;
	padding: 0.5rem 0.62rem;
	font-size: 0.9rem;
	color: var(--solidia-muted);
}

.site-navbar-dropdown .dropdown-item:hover,
.site-navbar-dropdown .dropdown-item:focus {
	background-color: rgba(28, 75, 143, 0.08);
	color: var(--solidia-ink);
}

.site-navbar-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
}

.site-login-link {
	font-size: 0.94rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--solidia-muted);
	transition: color 0.18s ease;
}

.site-login-link:hover,
.site-login-link:focus {
	color: var(--solidia-ink);
}

.site-btn-demo {
	padding: 0.65rem 0.95rem;
	border: 1px solid var(--solidia-brand);
	border-radius: 0.62rem;
	background-color: var(--solidia-brand);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, padding 0.24s ease;
}

.site-navbar.is-compact .site-btn-demo {
	padding-top: 0.58rem;
	padding-bottom: 0.58rem;
}

.site-btn-demo:hover,
.site-btn-demo:focus {
	background-color: var(--solidia-brand-dark);
	border-color: var(--solidia-brand-dark);
	color: #fff;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	min-height: 2.08rem;
	padding: 0.38rem 0.8rem;
	border: 1px solid rgba(17, 36, 61, 0.15);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
	font-size: 0.77rem;
	font-weight: 650;
	text-transform: uppercase;
	letter-spacing: 0.055em;
	color: var(--solidia-brand-dark);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 16px rgba(17, 36, 61, 0.05);
}

.btn-hero-primary,
.btn-hero-secondary {
	min-height: 2.9rem;
	padding: 0.74rem 1.14rem;
	border-radius: 0.65rem;
	font-size: 0.94rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary {
	background-color: var(--solidia-brand);
	border: 1px solid var(--solidia-brand);
	color: #fff;
	box-shadow: 0 10px 22px rgba(28, 75, 143, 0.26);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
	background-color: var(--solidia-brand-dark);
	border-color: var(--solidia-brand-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(22, 59, 111, 0.3);
}

.btn-hero-secondary {
	background-color: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(17, 36, 61, 0.18);
	color: var(--solidia-ink);
	box-shadow: 0 9px 18px rgba(17, 36, 61, 0.08);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
	background-color: #fff;
	border-color: rgba(17, 36, 61, 0.28);
	color: var(--solidia-brand-dark);
	transform: translateY(-1px);
	box-shadow: 0 12px 22px rgba(17, 36, 61, 0.11);
}

.hero-shot {
	margin: 0;
	border: 1px solid rgba(17, 36, 61, 0.17);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
	box-shadow: 0 30px 56px rgba(17, 36, 61, 0.11);
	/* min-height: 450px; */
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: visible;
	transform: translateY(-2px);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-shot::before {
	content: "";
	position: absolute;
	z-index: -2;
	width: 62%;
	height: 44%;
	right: -7%;
	top: -8%;
	border-radius: 999px;
	background: radial-gradient(65% 65% at 50% 50%, rgba(28, 75, 143, 0.17), rgba(28, 75, 143, 0));
	pointer-events: none;
}

.hero-shot::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: auto 9% -18px;
	height: 34px;
	border-radius: 999px;
	background: radial-gradient(82% 100% at 50% 50%, rgba(17, 36, 61, 0.2), rgba(17, 36, 61, 0));
	opacity: 0.4;
	pointer-events: none;
}

.hero-shot:hover,
.hero-shot:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 36px 62px rgba(17, 36, 61, 0.13);
	border-color: rgba(17, 36, 61, 0.22);
}

.hero-shot-inner {
	width: 100%;
	height: 100%;
	min-height: 450px;
	border: 1px dashed rgba(17, 36, 61, 0.2);
	border-radius: 0.8rem;
	margin: 0.75rem;
	padding: 1.08rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: visible;
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.8));
}

.hero-shot-inner > * {
	position: relative;
	z-index: 1;
}

.hero-shot-label {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--solidia-brand-dark);
}

.hero-shot-text {
	margin: 0.65rem 0 0;
	font-size: 0.92rem;
	color: var(--solidia-muted);
	max-width: 30ch;
}

.problem-card {
	border: 1px solid rgba(17, 36, 61, 0.09);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.92);
	padding: 1.15rem 1.1rem;
	box-shadow: 0 6px 16px rgba(17, 36, 61, 0.04);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.problem-card:hover {
	border-color: rgba(17, 36, 61, 0.16);
	box-shadow: 0 8px 18px rgba(17, 36, 61, 0.055);
	transform: translateY(-1px);
}

.problem-card-icon {
	width: 2.35rem;
	height: 2.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.62rem;
	background-color: #f1f5fa;
	border: 1px solid var(--solidia-line);
	color: var(--solidia-brand-dark);
	font-size: 1rem;
}

.problem-card-title {
	margin: 0.8rem 0 0;
	font-size: 1.05rem;
	line-height: 1.35;
}

.problem-card-text {
	margin: 0.55rem 0 0;
	font-size: 0.94rem;
	line-height: 1.55;
	color: var(--solidia-muted);
}

.solution-highlight {
	border: 1px solid rgba(17, 36, 61, 0.11);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.93);
	padding: 1.05rem;
	box-shadow: 0 8px 20px rgba(17, 36, 61, 0.05);
}

.solution-highlight-title {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.32;
}

.solution-highlight-text {
	margin: 0.55rem 0 0;
	font-size: 0.94rem;
	line-height: 1.55;
	color: var(--solidia-muted);
}

.solution-shot {
	margin: 0;
	border: 1px solid var(--solidia-line);
	border-radius: 1rem;
	background-color: var(--solidia-surface);
	/* min-height: 420px; */
	box-shadow: 0 24px 48px rgba(17, 36, 61, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-shot-inner {
	width: 100%;
	height: 100%;
	/* min-height: 420px; */
	margin: 0.75rem;
	/* padding: 1rem; */
	border: 1px dashed var(--solidia-line);
	border-radius: 0.8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.solution-shot-label {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--solidia-brand-dark);
}

.solution-shot-text {
	margin: 0.65rem 0 0;
	font-size: 0.92rem;
	color: var(--solidia-muted);
	max-width: 30ch;
}

.workflow-timeline {
	display: flex;
	align-items: stretch;
	gap: 0.45rem;
	overflow-x: auto;
	padding-bottom: 0.3rem;
}

.workflow-node {
	flex: 1 1 168px;
	min-width: 168px;
	display: flex;
}

.workflow-item {
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.94);
	padding: 0.95rem 0.9rem;
	box-shadow: 0 6px 16px rgba(17, 36, 61, 0.04);
	width: 100%;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.workflow-item:hover,
.workflow-item:focus {
	outline: none;
	border-color: rgba(17, 36, 61, 0.2);
	box-shadow: 0 9px 20px rgba(17, 36, 61, 0.06);
}

.workflow-item-icon {
	width: 2.15rem;
	height: 2.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.58rem;
	background-color: #f1f5fa;
	border: 1px solid var(--solidia-line);
	color: var(--solidia-brand-dark);
	font-size: 0.98rem;
}

.workflow-item-title {
	margin: 0.75rem 0 0;
	font-size: 0.98rem;
	line-height: 1.32;
}

.workflow-item-text {
	margin: 0.48rem 0 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.workflow-connector {
	flex: 0 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(17, 36, 61, 0.44);
	font-size: 0.82rem;
	padding-top: 1.1rem;
	transition: color 0.18s ease;
}

.workflow-node:hover + .workflow-connector,
.workflow-node:focus-within + .workflow-connector {
	color: rgba(17, 36, 61, 0.72);
}

.module-grid {
	align-items: stretch;
}

.module-card {
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.94);
	padding: 1rem;
	box-shadow: 0 6px 16px rgba(17, 36, 61, 0.04);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.module-card:hover,
.module-card:focus {
	outline: none;
	border-color: rgba(17, 36, 61, 0.2);
	box-shadow: 0 9px 20px rgba(17, 36, 61, 0.06);
	transform: translateY(-1px);
}

.module-card-icon {
	width: 2.15rem;
	height: 2.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.58rem;
	background-color: #f1f5fa;
	border: 1px solid var(--solidia-line);
	color: var(--solidia-brand-dark);
	font-size: 0.98rem;
}

.module-card-title {
	margin: 0.15rem 0 0;
	font-size: 1rem;
	line-height: 1.32;
}

.module-card-text {
	margin: 0;
	font-size: 0.89rem;
	line-height: 1.5;
	color: var(--solidia-muted);
	min-height: 4.2em;
}

.module-card-shot {
	margin-top: auto;
	border: 1px dashed var(--solidia-line);
	border-radius: 0.7rem;
	min-height: 78px;
	padding: 0.65rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.79rem;
	color: var(--solidia-muted);
	background-color: rgba(246, 248, 251, 0.9);
}

.segment-grid {
	align-items: stretch;
}

.segment-card {
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.94);
	padding: 1rem;
	box-shadow: 0 6px 16px rgba(17, 36, 61, 0.04);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.segment-card:hover,
.segment-card:focus {
	outline: none;
	border-color: rgba(17, 36, 61, 0.2);
	box-shadow: 0 9px 20px rgba(17, 36, 61, 0.06);
	transform: translateY(-1px);
}

.segment-card-icon {
	width: 2.15rem;
	height: 2.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.58rem;
	background-color: #f1f5fa;
	border: 1px solid var(--solidia-line);
	color: var(--solidia-brand-dark);
	font-size: 0.98rem;
}

.segment-card-title {
	margin: 0.15rem 0 0;
	font-size: 1rem;
	line-height: 1.32;
}

.segment-card-text {
	margin: 0;
	font-size: 0.89rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.segment-card-benefit {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--solidia-ink);
}

.segment-card-shot {
	margin-top: auto;
	border: 1px dashed var(--solidia-line);
	border-radius: 0.7rem;
	min-height: 78px;
	padding: 0.65rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.79rem;
	color: var(--solidia-muted);
	background-color: rgba(246, 248, 251, 0.9);
}

.segment-card-note {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--solidia-muted);
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.18s ease, max-height 0.18s ease;
}

.segment-card:hover .segment-card-note,
.segment-card:focus .segment-card-note,
.segment-card:focus-within .segment-card-note {
	opacity: 1;
	max-height: 3rem;
}

.segments-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.6rem;
	padding: 0.58rem 0.9rem;
	border: 1px solid var(--solidia-line);
	border-radius: 0.62rem;
	font-size: 0.89rem;
	font-weight: 500;
	color: var(--solidia-ink);
	background-color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.segments-cta:hover,
.segments-cta:focus {
	border-color: rgba(17, 36, 61, 0.28);
	background-color: #fff;
	color: var(--solidia-brand-dark);
}

.benefit-grid {
	align-items: stretch;
}

.benefit-card {
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.94);
	padding: 1rem;
	box-shadow: 0 6px 16px rgba(17, 36, 61, 0.04);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.benefit-card:hover,
.benefit-card:focus {
	outline: none;
	border-color: rgba(17, 36, 61, 0.2);
	box-shadow: 0 9px 20px rgba(17, 36, 61, 0.06);
	transform: translateY(-1px);
}

.benefit-card-icon {
	width: 2.15rem;
	height: 2.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.58rem;
	background-color: #f1f5fa;
	border: 1px solid var(--solidia-line);
	color: var(--solidia-brand-dark);
	font-size: 0.98rem;
}

.benefit-card-title {
	margin: 0.15rem 0 0;
	font-size: 1rem;
	line-height: 1.32;
}

.benefit-card-text {
	margin: 0;
	font-size: 0.89rem;
	line-height: 1.5;
	color: var(--solidia-muted);
	min-height: 4.2em;
}

.benefit-card-evidence {
	margin-top: auto;
	border: 1px dashed var(--solidia-line);
	border-radius: 0.7rem;
	min-height: 78px;
	padding: 0.65rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.79rem;
	color: var(--solidia-muted);
	background-color: rgba(246, 248, 251, 0.9);
}

.device-mockup {
	margin: 0;
	display: flex;
	justify-content: center;
}

.device-mockup-frame {
	width: min(320px, 100%);
	background-color: #0f223a;
	border-radius: 2rem;
	padding: 0.55rem;
	box-shadow: 0 22px 46px rgba(17, 36, 61, 0.13);
	border: 1px solid rgba(17, 36, 61, 0.24);
}

.device-mockup-notch {
	width: 34%;
	height: 0.45rem;
	margin: 0.2rem auto 0.45rem;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.2);
}

.device-mockup-screen {
	min-height: 500px;
	border-radius: 1.6rem;
	background-color: #ffffff;
	border: 1px dashed var(--solidia-line);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.6rem;
}

.device-mockup-label {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--solidia-brand-dark);
}

.device-mockup-text {
	margin: 0;
	font-size: 0.91rem;
	line-height: 1.5;
	color: var(--solidia-muted);
	max-width: 27ch;
}

.app-feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.68rem;
}

.app-feature-item {
	display: grid;
	grid-template-columns: 2.15rem 1fr;
	gap: 0.72rem;
	align-items: flex-start;
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.9rem;
	background-color: rgba(255, 255, 255, 0.94);
	padding: 0.82rem 0.85rem;
	box-shadow: 0 5px 14px rgba(17, 36, 61, 0.035);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.app-feature-item:hover,
.app-feature-item:focus-within {
	border-color: rgba(17, 36, 61, 0.2);
	box-shadow: 0 9px 18px rgba(17, 36, 61, 0.055);
}

.app-feature-icon {
	width: 2.15rem;
	height: 2.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.58rem;
	background-color: #f1f5fa;
	border: 1px solid var(--solidia-line);
	color: var(--solidia-brand-dark);
	font-size: 0.98rem;
}

.app-feature-title {
	margin: 0.05rem 0 0;
	font-size: 0.98rem;
	line-height: 1.3;
}

.app-feature-text {
	margin: 0.3rem 0 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.dashboard-preview {
	margin: 0;
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 1rem;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 18px 38px rgba(17, 36, 61, 0.08);
	min-height: 370px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dashboard-preview-inner {
	width: 100%;
	height: 100%;
	min-height: 370px;
	margin: 0.75rem;
	padding: 1rem;
	border: 1px dashed var(--solidia-line);
	border-radius: 0.8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.55rem;
}

.dashboard-preview-label {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--solidia-brand-dark);
}

.dashboard-preview-text {
	margin: 0;
	font-size: 0.91rem;
	line-height: 1.5;
	color: var(--solidia-muted);
	max-width: 40ch;
}

.kpi-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.68rem;
}

.kpi-item {
	display: grid;
	grid-template-columns: 2.15rem 1fr;
	gap: 0.72rem;
	align-items: flex-start;
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.9rem;
	background-color: rgba(255, 255, 255, 0.94);
	padding: 0.82rem 0.85rem;
	box-shadow: 0 5px 14px rgba(17, 36, 61, 0.035);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.kpi-item:hover,
.kpi-item:focus-within {
	border-color: rgba(17, 36, 61, 0.2);
	box-shadow: 0 9px 18px rgba(17, 36, 61, 0.055);
}

.kpi-item-icon {
	width: 2.15rem;
	height: 2.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.58rem;
	background-color: #f1f5fa;
	border: 1px solid var(--solidia-line);
	color: var(--solidia-brand-dark);
	font-size: 0.98rem;
}

.kpi-item-title {
	margin: 0.05rem 0 0;
	font-size: 0.98rem;
	line-height: 1.3;
}

.kpi-item-text {
	margin: 0.3rem 0 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.testimonial-card {
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 1.1rem;
	box-shadow: 0 10px 24px rgba(17, 36, 61, 0.05);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
	border-color: rgba(17, 36, 61, 0.18);
	box-shadow: 0 14px 28px rgba(17, 36, 61, 0.065);
}

.testimonial-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.testimonial-photo,
.testimonial-photo-placeholder {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	border: 1px solid var(--solidia-line);
	background-color: #f1f5fa;
	flex: 0 0 auto;
}

.testimonial-photo {
	object-fit: cover;
}

.testimonial-photo-placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.76rem;
	color: var(--solidia-muted);
}

.testimonial-meta {
	min-width: 0;
}

.testimonial-name {
	margin: 0;
	font-size: 1rem;
	line-height: 1.3;
}

.testimonial-role,
.testimonial-company {
	margin: 0.2rem 0 0;
	font-size: 0.86rem;
	line-height: 1.4;
	color: var(--solidia-muted);
}

.testimonial-quote {
	margin: 0.9rem 0 0;
	font-size: 0.96rem;
	line-height: 1.65;
	color: var(--solidia-ink);
	max-width: 78ch;
	padding-left: 0.9rem;
	border-left: 2px solid rgba(17, 36, 61, 0.14);
}

.company-logo-item {
	min-height: 64px;
	border: 1px dashed var(--solidia-line);
	border-radius: 0.75rem;
	background-color: rgba(246, 248, 251, 0.88);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.55rem;
	font-size: 0.83rem;
	color: var(--solidia-muted);
}

.testimonials-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.6rem;
	padding: 0.58rem 0.9rem;
	border: 1px solid var(--solidia-line);
	border-radius: 0.62rem;
	font-size: 0.89rem;
	font-weight: 500;
	color: var(--solidia-ink);
	background-color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.testimonials-cta:hover,
.testimonials-cta:focus {
	border-color: rgba(17, 36, 61, 0.28);
	background-color: #fff;
	color: var(--solidia-brand-dark);
}

.pricing-grid {
	align-items: stretch;
}

.pricing-card {
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 1rem;
	box-shadow: 0 8px 20px rgba(17, 36, 61, 0.05);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.pricing-card:hover,
.pricing-card:focus-within {
	border-color: rgba(17, 36, 61, 0.2);
	box-shadow: 0 12px 24px rgba(17, 36, 61, 0.065);
	transform: translateY(-1px);
}

.pricing-card.is-recommended {
	border-color: rgba(28, 75, 143, 0.34);
	box-shadow: 0 14px 30px rgba(28, 75, 143, 0.09);
}

.pricing-card-head {
	display: grid;
	gap: 0.4rem;
}

.pricing-card-name {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.25;
}

.pricing-card-subtitle {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.pricing-card-price {
	margin: 0.1rem 0 0;
	font-size: 1rem;
	line-height: 1.3;
	color: var(--solidia-ink);
}

.pricing-feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
}

.pricing-feature-item {
	display: grid;
	grid-template-columns: 1.6rem 1fr;
	align-items: start;
	gap: 0.45rem;
}

.pricing-feature-icon {
	width: 1.6rem;
	height: 1.6rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--solidia-line);
	background-color: #f1f5fa;
	color: var(--solidia-brand-dark);
	font-size: 0.78rem;
}

.pricing-feature-text {
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.pricing-card-cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.6rem;
	padding: 0.58rem 0.9rem;
	border: 1px solid var(--solidia-line);
	border-radius: 0.62rem;
	font-size: 0.89rem;
	font-weight: 500;
	color: var(--solidia-ink);
	background-color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.pricing-card-cta:hover,
.pricing-card-cta:focus {
	border-color: rgba(17, 36, 61, 0.28);
	background-color: #fff;
	color: var(--solidia-brand-dark);
}

.pricing-footer {
	margin-top: 1.2rem;
	border: 1px solid rgba(17, 36, 61, 0.1);
	border-radius: 0.95rem;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 1rem;
	box-shadow: 0 8px 20px rgba(17, 36, 61, 0.04);
}

.pricing-footer-title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.3;
}

.pricing-footer-intro {
	margin: 0.45rem 0 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.pricing-footer-list {
	margin: 0.8rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.pricing-footer-item {
	display: grid;
	grid-template-columns: 1.6rem 1fr;
	gap: 0.45rem;
	align-items: start;
	font-size: 0.89rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.pricing-footer-icon {
	width: 1.6rem;
	height: 1.6rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--solidia-line);
	background-color: #f1f5fa;
	color: var(--solidia-brand-dark);
	font-size: 0.8rem;
}

.pricing-main-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.7rem;
	padding: 0.62rem 1rem;
	border: 1px solid rgba(17, 36, 61, 0.18);
	border-radius: 0.62rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--solidia-ink);
	background-color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.pricing-main-cta:hover,
.pricing-main-cta:focus {
	border-color: rgba(17, 36, 61, 0.3);
	background-color: #fff;
	color: var(--solidia-brand-dark);
}

.faq-accordion {
	display: grid;
	gap: 0.55rem;
}

.faq-item {
	border: 1px solid rgba(17, 36, 61, 0.11);
	border-radius: 0.78rem;
	background-color: rgba(255, 255, 255, 0.96);
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(17, 36, 61, 0.03);
}

.faq-question {
	margin: 0;
}

.faq-trigger {
	padding: 0.86rem 0.95rem;
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--solidia-ink);
	background-color: rgba(255, 255, 255, 0.96);
	box-shadow: none;
	gap: 0.7rem;
}

.faq-trigger:not(.collapsed) {
	color: var(--solidia-brand-dark);
	background-color: rgba(241, 245, 250, 0.65);
	box-shadow: none;
}

.faq-trigger:focus {
	box-shadow: none;
	border-color: transparent;
}

.faq-trigger::after {
	width: 0.88rem;
	height: 0.88rem;
	background-size: 0.88rem;
	opacity: 0.55;
}

.faq-answer-wrap {
	transition: height 0.22s ease;
}

.faq-answer {
	padding: 0 0.95rem 0.9rem;
	font-size: 0.9rem;
	line-height: 1.62;
	color: var(--solidia-muted);
}

.faq-answer p {
	margin: 0;
}

.faq-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.58rem;
	padding: 0.58rem 0.9rem;
	border: 1px solid var(--solidia-line);
	border-radius: 0.62rem;
	font-size: 0.89rem;
	font-weight: 500;
	color: var(--solidia-ink);
	background-color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.faq-cta:hover,
.faq-cta:focus {
	border-color: rgba(17, 36, 61, 0.28);
	background-color: #fff;
	color: var(--solidia-brand-dark);
}

.final-cta-surface {
	border: 1px solid rgba(17, 36, 61, 0.14);
	background-color: rgba(239, 245, 251, 0.72);
	box-shadow: 0 12px 30px rgba(17, 36, 61, 0.055);
}

.final-cta-title {
	color: var(--solidia-ink);
}

.final-cta-subtitle {
	color: var(--solidia-muted);
}

.final-cta-button-group {
	margin-top: 1.35rem;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
	justify-content: center;
}

.final-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.72rem 1.08rem;
	border-radius: 0.68rem;
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.final-cta-btn:hover,
.final-cta-btn:focus {
	transform: translateY(-1px);
}

.final-cta-btn.is-primary {
	border: 1px solid var(--solidia-brand);
	background-color: var(--solidia-brand);
	color: #fff;
}

.final-cta-btn.is-primary:hover,
.final-cta-btn.is-primary:focus {
	border-color: var(--solidia-brand-dark);
	background-color: var(--solidia-brand-dark);
	color: #fff;
}

.final-cta-btn.is-secondary {
	border: 1px solid rgba(17, 36, 61, 0.2);
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--solidia-ink);
}

.final-cta-btn.is-secondary:hover,
.final-cta-btn.is-secondary:focus {
	border-color: rgba(17, 36, 61, 0.32);
	background-color: #fff;
	color: var(--solidia-brand-dark);
}

.site-footer {
	border-top: 1px solid rgba(17, 36, 61, 0.09);
	background-color: rgba(243, 247, 252, 0.88);
}

.site-footer-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-footer-logo {
	height: 34px;
	width: auto;
	display: block;
}

.site-footer-description {
	color: var(--solidia-muted);
}

.site-footer-column-title {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.35;
	color: var(--solidia-ink);
}

.site-footer-link-list {
	margin: 0.7rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.44rem;
}

.site-footer-link-item {
	margin: 0;
}

.site-footer-nav-stack {
	display: grid;
	gap: 1.05rem;
}

.site-footer-link {
	font-size: 0.89rem;
	line-height: 1.5;
	color: var(--solidia-muted);
	text-decoration: none;
	transition: color 0.18s ease;
}

.site-footer-link:hover,
.site-footer-link:focus {
	color: var(--solidia-brand-dark);
}

.site-footer-social {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.site-footer-social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 2rem;
	padding: 0.36rem 0.62rem;
	border: 1px solid rgba(17, 36, 61, 0.14);
	border-radius: 999px;
	font-size: 0.82rem;
	line-height: 1;
	color: var(--solidia-muted);
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.86);
	transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus {
	border-color: rgba(17, 36, 61, 0.26);
	color: var(--solidia-brand-dark);
	background-color: #fff;
}

.site-footer-bottom {
	border-top: 1px solid rgba(17, 36, 61, 0.09);
}

.site-footer-bottom-text {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.5;
	color: var(--solidia-muted);
}

.problem .problem-card {
	border: 1px solid rgba(18, 54, 109, 0.08);
	border-radius: 24px;
	padding: 1.26rem 1.18rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
	box-shadow:
		0 30px 54px rgba(18, 54, 109, 0.095),
		0 10px 20px rgba(18, 54, 109, 0.055),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.problem .problem-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.84);
	pointer-events: none;
}

.problem .problem-card:hover,
.problem .problem-card:focus-within {
	border-color: rgba(18, 54, 109, 0.15);
	box-shadow:
		0 36px 62px rgba(18, 54, 109, 0.11),
		0 14px 24px rgba(18, 54, 109, 0.065),
		0 -1px 0 rgba(255, 255, 255, 0.75) inset;
	transform: translateY(-4px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.96));
}

.problem .problem-card-icon {
	width: 2.32rem;
	height: 2.32rem;
	border-radius: 0.72rem;
	border: 1px solid rgba(18, 54, 109, 0.09);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(240, 247, 255, 0.95));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 8px 14px rgba(18, 54, 109, 0.065);
	font-size: 0.95rem;
}

.problem .problem-card-title {
	margin-top: 0.84rem;
	font-size: 1.04rem;
	line-height: 1.34;
	font-weight: 650;
	color: #102440;
}

.problem .problem-card-text {
	margin-top: 0.56rem;
	line-height: 1.6;
	color: #53657d;
}

.problem .problem-summary {
	padding: 1rem 1.12rem;
	border-left: 2px solid rgba(28, 75, 143, 0.42);
	border-radius: 0 0.8rem 0.8rem 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	color: #4f6077;
}

.problem.is-anim-ready .problem-title,
.problem.is-anim-ready .problem-intro,
.problem.is-anim-ready .row > [class*="col-"],
.problem.is-anim-ready .problem-summary {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.32s ease, transform 0.32s ease;
}

.problem.is-anim-ready .problem-title {
	transition-delay: 0.06s;
}

.problem.is-anim-ready .problem-intro {
	transition-delay: 0.14s;
}

.problem.is-anim-ready .row > [class*="col-"]:nth-child(-n+2) {
	transition-delay: 0.24s;
}

.problem.is-anim-ready .row > [class*="col-"]:nth-child(n+3) {
	transition-delay: 0.34s;
}

.problem.is-anim-ready .problem-summary {
	transition-delay: 0.44s;
}

.problem.is-anim-ready.is-revealed .problem-title,
.problem.is-anim-ready.is-revealed .problem-intro,
.problem.is-anim-ready.is-revealed .row > [class*="col-"],
.problem.is-anim-ready.is-revealed .problem-summary {
	opacity: 1;
	transform: translateY(0);
}

main > section {
	animation: section-fade-up 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes section-fade-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title,
.problem-title,
.solution-title,
.workflow-title,
.platform-title,
.segments-title,
.benefits-title,
.mobile-app-title,
.indicators-title,
.testimonials-title,
.pricing-title,
.faq-title,
.final-cta-title {
	font-weight: 670;
	text-wrap: balance;
}

.hero-subtitle,
.problem-intro,
.solution-intro,
.workflow-intro,
.platform-intro,
.segments-intro,
.benefits-intro,
.mobile-app-intro,
.indicators-intro,
.testimonials-intro,
.pricing-intro,
.faq-intro,
.final-cta-subtitle {
	line-height: 1.66;
}

.site-btn-demo,
.btn-hero-primary,
.btn-hero-secondary,
.segments-cta,
.testimonials-cta,
.pricing-card-cta,
.pricing-main-cta,
.faq-cta,
.final-cta-btn {
	box-shadow: 0 7px 16px rgba(17, 36, 61, 0.06);
	will-change: transform;
}

.site-btn-demo:hover,
.site-btn-demo:focus,
.btn-hero-primary:hover,
.btn-hero-primary:focus,
.btn-hero-secondary:hover,
.btn-hero-secondary:focus,
.segments-cta:hover,
.segments-cta:focus,
.testimonials-cta:hover,
.testimonials-cta:focus,
.pricing-card-cta:hover,
.pricing-card-cta:focus,
.pricing-main-cta:hover,
.pricing-main-cta:focus,
.faq-cta:hover,
.faq-cta:focus,
.final-cta-btn:hover,
.final-cta-btn:focus {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(17, 36, 61, 0.085);
}

.hero-shot,
.solution-shot,
.dashboard-preview,
.device-mockup-frame {
	position: relative;
	overflow: visible;
}

.hero-shot::before,
.solution-shot::before,
.dashboard-preview::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: auto 8% -16px;
	height: 30px;
	border-radius: 999px;
	background: radial-gradient(80% 100% at 50% 50%, rgba(17, 36, 61, 0.18), rgba(17, 36, 61, 0));
	opacity: 0.38;
	pointer-events: none;
}

.hero-shot::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 56%;
	height: 40%;
	right: -6%;
	top: -7%;
	border-radius: 999px;
	background: radial-gradient(60% 60% at 50% 50%, rgba(28, 75, 143, 0.16), rgba(28, 75, 143, 0));
	pointer-events: none;
}

.hero-shot,
.solution-shot,
.dashboard-preview {
	box-shadow: 0 22px 44px rgba(17, 36, 61, 0.085);
	border-color: rgba(17, 36, 61, 0.14);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-shot:hover,
.solution-shot:hover,
.dashboard-preview:hover {
	transform: translateY(-2px);
	box-shadow: 0 28px 52px rgba(17, 36, 61, 0.11);
	border-color: rgba(17, 36, 61, 0.18);
}

.hero-shot-inner,
.solution-shot-inner,
.dashboard-preview-inner,
.device-mockup-screen,
.module-card-shot,
.segment-card-shot,
.benefit-card-evidence,
.company-logo-item {
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.82));
	border-color: rgba(17, 36, 61, 0.14);
}

.problem-card,
.solution-highlight,
.workflow-item,
.module-card,
.segment-card,
.benefit-card,
.app-feature-item,
.kpi-item,
.testimonial-card,
.pricing-card,
.pricing-footer,
.faq-item {
	border-color: rgba(17, 36, 61, 0.12);
	box-shadow: 0 10px 22px rgba(17, 36, 61, 0.045);
	background-color: rgba(255, 255, 255, 0.94);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.problem-card:hover,
.solution-highlight:hover,
.workflow-item:hover,
.module-card:hover,
.segment-card:hover,
.benefit-card:hover,
.app-feature-item:hover,
.kpi-item:hover,
.testimonial-card:hover,
.pricing-card:hover,
.pricing-footer:hover,
.faq-item:hover,
.problem-card:focus-within,
.solution-highlight:focus-within,
.workflow-item:focus-within,
.module-card:focus-within,
.segment-card:focus-within,
.benefit-card:focus-within,
.app-feature-item:focus-within,
.kpi-item:focus-within,
.testimonial-card:focus-within,
.pricing-card:focus-within,
.pricing-footer:focus-within,
.faq-item:focus-within {
	border-color: rgba(17, 36, 61, 0.19);
	box-shadow: 0 16px 32px rgba(17, 36, 61, 0.075);
	transform: translateY(-2px);
	background-color: #fff;
}

.problem-card-icon,
.workflow-item-icon,
.module-card-icon,
.segment-card-icon,
.benefit-card-icon,
.app-feature-icon,
.kpi-item-icon,
.pricing-feature-icon,
.pricing-footer-icon {
	border-color: rgba(17, 36, 61, 0.16);
	background-image: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 252, 0.95));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 12px rgba(17, 36, 61, 0.05);
}

.workflow-timeline {
	gap: 0.62rem;
}

.workflow-connector {
	position: relative;
	color: rgba(17, 36, 61, 0.5);
	padding-top: 1.2rem;
}

.workflow-connector::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 3px;
	right: 3px;
	height: 1px;
	background: linear-gradient(90deg, rgba(17, 36, 61, 0.18), rgba(17, 36, 61, 0.06));
	transform: translateY(-50%);
}

.workflow-connector i {
	position: relative;
	z-index: 1;
	background-color: #f8fbff;
	border: 1px solid rgba(17, 36, 61, 0.15);
	border-radius: 999px;
	width: 1.2rem;
	height: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.66rem;
	box-shadow: 0 4px 10px rgba(17, 36, 61, 0.06);
}

@media (min-width: 992px) {
	.module-grid > [class*="col-"]:nth-child(2n) .module-card {
		transform: translateY(6px);
	}

	.module-grid > [class*="col-"]:nth-child(2n) .module-card:hover,
	.module-grid > [class*="col-"]:nth-child(2n) .module-card:focus-within {
		transform: translateY(3px);
	}
}

@media (prefers-reduced-motion: reduce) {
	main > section,
	.site-btn-demo,
	.btn-hero-primary,
	.btn-hero-secondary,
	.segments-cta,
	.testimonials-cta,
	.pricing-card-cta,
	.pricing-main-cta,
	.faq-cta,
	.final-cta-btn,
	.hero-shot,
	.solution-shot,
	.dashboard-preview,
	.problem-card,
	.solution-highlight,
	.workflow-item,
	.module-card,
	.segment-card,
	.benefit-card,
	.app-feature-item,
	.kpi-item,
	.testimonial-card,
	.pricing-card,
	.pricing-footer,
	.faq-item {
		animation: none;
		transition: none;
		transform: none;
	}

	.workflow .workflow-node::before,
	.workflow .workflow-connector::after,
	.workflow .workflow-item-detail {
		animation: none;
		transition: none;
	}

	.workflow .workflow-item-detail {
		max-height: 0;
		opacity: 0;
	}

	.segments .segment-card-shot,
	.segments .segment-card-indicator,
	.segments .segment-card-note,
	.segments .segments-cta-wrap,
	.segments .segment-grid > [class*="col-"] {
		animation: none;
		transition: none;
		transform: none;
	}

	.benefits .benefit-card-evidence,
	.benefits .benefit-card-evidence-list li,
	.benefits .benefit-card-progress-bar::before,
	.benefits .benefit-card-indicator,
	.benefits .benefit-grid > [class*="col-"] {
		animation: none;
		transition: none;
		transform: none;
	}

	.mobile-app .device-mockup,
	.mobile-app .device-mockup-frame,
	.mobile-app .device-screen-panel,
	.mobile-app .device-sync-badge,
	.mobile-app .app-feature-item,
	.mobile-app .app-feature-icon,
	.mobile-app .mobile-app-content {
		animation: none;
		transition: none;
		transform: none;
	}
}

.solution .solution-content {
	position: relative;
	align-items: center;
}

.solution .solution-highlight {
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.1);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.95));
	border-radius: 24px;
	padding: 1.18rem 1.12rem;
	box-shadow:
		0 30px 54px rgba(18, 54, 109, 0.1),
		0 10px 20px rgba(18, 54, 109, 0.06),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution .solution-highlight::before {
	content: "Insight";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 1.5rem;
	padding: 0 0.56rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 245, 255, 0.94));
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #163a6a;
	margin-bottom: 0.76rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 7px 14px rgba(18, 54, 109, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.solution .solution-highlight::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.86);
	pointer-events: none;
}

.solution .solution-highlight-title {
	font-size: 1.08rem;
	line-height: 1.32;
	font-weight: 665;
	color: #102440;
}

.solution .solution-highlight-text {
	margin-top: 0.64rem;
	line-height: 1.62;
	color: #53657d;
}

.solution .solution-highlight:hover,
.solution .solution-highlight:focus-within {
	transform: translateY(-3px);
	border-color: rgba(18, 54, 109, 0.17);
	box-shadow:
		0 36px 62px rgba(18, 54, 109, 0.115),
		0 14px 24px rgba(18, 54, 109, 0.07),
		0 -1px 0 rgba(255, 255, 255, 0.74) inset;
}

.solution .solution-highlight:hover::before,
.solution .solution-highlight:focus-within::before {
	transform: translateY(-1px);
	border-color: rgba(18, 54, 109, 0.24);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 10px 18px rgba(18, 54, 109, 0.11);
}

.solution .solution-copy {
	position: relative;
}

.solution .solution-copy::after {
	content: "";
	position: absolute;
	top: 49%;
	right: -2.45rem;
	width: 2.68rem;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(17, 36, 61, 0.2), rgba(28, 75, 143, 0.22), rgba(28, 75, 143, 0));
	box-shadow: 0 0 16px rgba(28, 75, 143, 0.12);
	opacity: 0.66;
	pointer-events: none;
}

.solution .solution-shot {
	position: relative;
	overflow: visible;
	border: 1px solid rgba(18, 54, 109, 0.1);
	border-radius: 8px;
	box-shadow:
		0 42px 76px rgba(18, 54, 109, 0.1),
		0 12px 24px rgba(18, 54, 109, 0.06),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 255, 0.94));
	transform: translateY(-1px);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution .solution-shot::before {
	inset: auto 12% -18px;
	height: 36px;
	background: radial-gradient(82% 100% at 50% 50%, rgba(18, 54, 109, 0.22), rgba(18, 54, 109, 0));
	opacity: 0.42;
}

.solution .solution-shot::after {
	content: "";
	position: absolute;
	z-index: -2;
	width: 74%;
	height: 54%;
	right: -10%;
	top: 10%;
	border-radius: 999px;
	background: radial-gradient(64% 64% at 50% 50%, rgba(28, 75, 143, 0.16), rgba(28, 75, 143, 0));
	pointer-events: none;
}

.solution .solution-shot:hover,
.solution .solution-shot:focus-within {
	transform: translateY(-2px);
	box-shadow:
		0 50px 84px rgba(18, 54, 109, 0.12),
		0 16px 30px rgba(18, 54, 109, 0.075),
		0 -1px 0 rgba(255, 255, 255, 0.75) inset;
	border-color: rgba(18, 54, 109, 0.2);
}

.solution .solution-shot:hover::after,
.solution .solution-shot:focus-within::after {
	background: radial-gradient(64% 64% at 50% 50%, rgba(28, 75, 143, 0.21), rgba(28, 75, 143, 0));
}

.solution .solution-shot-inner {
	border-radius: 8px;
	/* padding: 1.1rem; */
	/* border-color: rgba(18, 54, 109, 0.13); */
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.89), rgba(246, 251, 255, 0.84));
	position: relative;
	overflow: visible;
}

.solution .solution-op-fragments {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
}

.solution .solution-op-card {
	opacity: 0.9;
	width: min(210px, 36vw);
	min-width: 168px;
	border-color: rgba(18, 54, 109, 0.1);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 30px rgba(18, 54, 109, 0.1);
	backdrop-filter: blur(2px);
}

.solution .solution-op-card--timeline {
	left: -18px;
	top: -14px;
}

.solution .solution-op-card--team {
	right: -24px;
	top: 38%;
}

.solution .solution-op-card--kpi {
	right: 10px;
	bottom: -14px;
}

.solution .solution-summary {
	padding: 1.02rem 1.16rem;
	border-left: 2px solid rgba(28, 75, 143, 0.42);
	border-radius: 0 0.84rem 0.84rem 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	color: #4f6077;
}

.solution.is-anim-ready .solution-title,
.solution.is-anim-ready .solution-intro,
.solution.is-anim-ready .solution-highlight,
	.solution.is-anim-ready .solution-shot,
	.solution.is-anim-ready .solution-op-card,
	.solution.is-anim-ready .solution-summary {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(4px);
	transition:
		opacity 0.42s ease,
		transform 0.42s ease,
		filter 0.42s ease;
}

.solution.is-anim-ready .solution-intro {
	transition-delay: 0.08s;
}

.solution.is-anim-ready .solution-highlight {
	transition-delay: 0.16s;
}

.solution.is-anim-ready .solution-shot {
	transition-delay: 0.24s;
	transition-duration: 0.62s;
}

.solution.is-anim-ready .solution-op-card {
	transition-delay: 0.36s;
	transition-duration: 0.44s;
}

.solution.is-anim-ready .solution-summary {
	transition-delay: 0.44s;
	transition-duration: 0.36s;
}

.solution.is-anim-ready.is-revealed .solution-title,
.solution.is-anim-ready.is-revealed .solution-intro,
.solution.is-anim-ready.is-revealed .solution-highlight,
	.solution.is-anim-ready.is-revealed .solution-shot,
	.solution.is-anim-ready.is-revealed .solution-op-card,
	.solution.is-anim-ready.is-revealed .solution-summary {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.workflow .workflow-timeline {
	position: relative;
	gap: 0.66rem;
	padding: 0.52rem 0.2rem 0.68rem;
	scroll-padding-inline: 1rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(17, 36, 61, 0.18) rgba(17, 36, 61, 0.03);
	align-items: stretch;
	isolation: isolate;
	background:
		repeating-linear-gradient(90deg, rgba(18, 54, 109, 0.025) 0, rgba(18, 54, 109, 0.025) 1px, transparent 1px, transparent 44px),
		repeating-linear-gradient(0deg, rgba(18, 54, 109, 0.018) 0, rgba(18, 54, 109, 0.018) 1px, transparent 1px, transparent 24px);
	border-radius: 18px;
}

.workflow .workflow-timeline::-webkit-scrollbar {
	height: 4px;
}

.workflow .workflow-timeline::-webkit-scrollbar-track {
	background: rgba(17, 36, 61, 0.05);
	border-radius: 999px;
}

.workflow .workflow-timeline::-webkit-scrollbar-thumb {
	background: rgba(17, 36, 61, 0.24);
	border-radius: 999px;
}

.workflow .workflow-timeline::before,
.workflow .workflow-timeline::after {
	content: "";
	position: sticky;
	top: 0;
	width: 20px;
	height: auto;
	flex: 0 0 20px;
	pointer-events: none;
	z-index: 2;
}

.workflow .workflow-timeline::before {
	left: 0;
	margin-right: -20px;
	background: linear-gradient(90deg, #f7fafd, rgba(247, 250, 253, 0));
}

.workflow .workflow-timeline::after {
	right: 0;
	margin-left: -20px;
	background: linear-gradient(270deg, #f7fafd, rgba(247, 250, 253, 0));
}

.workflow .workflow-node {
	min-width: 176px;
	position: relative;
	z-index: 2;
}

.workflow .workflow-node:nth-of-type(2n) {
	padding-top: 6px;
}

.workflow .workflow-node:nth-of-type(3n) {
	padding-top: 10px;
}

.workflow .workflow-node::before {
	content: "";
	position: absolute;
	inset: -7px 14% auto;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(28, 75, 143, 0), rgba(28, 75, 143, 0.36), rgba(28, 75, 143, 0));
	opacity: 0;
	pointer-events: none;
}

.workflow .workflow-item {
	padding: 0.94rem 0.9rem 0.86rem;
	border: 1px solid rgba(18, 54, 109, 0.12);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.94));
	box-shadow: 0 12px 24px rgba(18, 54, 109, 0.07), 0 4px 10px rgba(18, 54, 109, 0.04);
	position: relative;
	overflow: hidden;
	min-height: 204px;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, min-height 0.2s ease, opacity 0.2s ease;
}

.workflow .workflow-node:nth-of-type(2n) .workflow-item {
	min-height: 212px;
	padding-top: 1rem;
}

.workflow .workflow-item::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.86);
	pointer-events: none;
}

.workflow .workflow-item:hover,
.workflow .workflow-item:focus,
.workflow .workflow-item:focus-within {
	transform: translateY(-3px);
	min-height: 222px;
	border-color: rgba(18, 54, 109, 0.24);
	box-shadow: 0 18px 30px rgba(18, 54, 109, 0.1), 0 7px 14px rgba(18, 54, 109, 0.06);
}

.workflow.has-active-node .workflow-node:not(.is-active) .workflow-item {
	opacity: 0.76;
	border-color: rgba(18, 54, 109, 0.09);
	box-shadow:
		0 20px 38px rgba(18, 54, 109, 0.075),
		0 8px 16px rgba(18, 54, 109, 0.05),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
}

.workflow .workflow-node.is-active .workflow-item {
	opacity: 1;
	min-height: 222px;
	border-color: rgba(28, 75, 143, 0.34);
	box-shadow: 0 20px 34px rgba(18, 54, 109, 0.12), 0 8px 16px rgba(18, 54, 109, 0.07);
}

.workflow .workflow-item-icon {
	width: 2.22rem;
	height: 2.22rem;
	border-radius: 0.66rem;
	border-color: rgba(17, 36, 61, 0.18);
	background-image: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 254, 0.92));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 7px 12px rgba(17, 36, 61, 0.05);
	font-size: 0.95rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.workflow .workflow-item:hover .workflow-item-icon,
.workflow .workflow-item:focus-within .workflow-item-icon,
.workflow .workflow-node.is-active .workflow-item-icon {
	transform: translateY(-1px);
	border-color: rgba(18, 54, 109, 0.26);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 10px 16px rgba(17, 36, 61, 0.075);
}

.workflow .workflow-item-title {
	margin-top: 0.72rem;
	font-size: 1.03rem;
	line-height: 1.3;
	font-weight: 660;
	color: #102440;
}

.workflow .workflow-item-text {
	margin-top: 0.54rem;
	line-height: 1.62;
	color: #53657d;
	padding-right: 0.1rem;
}

.workflow .workflow-item-detail {
	margin-top: 0.52rem;
	padding-top: 0;
	border-top: 0 solid rgba(18, 54, 109, 0.12);
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.2s ease, opacity 0.2s ease, padding-top 0.2s ease, border-top-width 0.2s ease;
}

.workflow .workflow-item-detail-title {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #1f4e93;
}

.workflow .workflow-item-detail-list {
	margin: 0.26rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.15rem;
}

.workflow .workflow-item-detail-list li {
	font-size: 0.74rem;
	line-height: 1.34;
	color: #4f6077;
}

.workflow .workflow-item:hover .workflow-item-detail,
.workflow .workflow-item:focus-within .workflow-item-detail,
.workflow .workflow-node.is-active .workflow-item-detail {
	padding-top: 0.5rem;
	border-top-width: 1px;
	max-height: 88px;
	opacity: 1;
}

.workflow .workflow-connector {
	flex-basis: 32px;
	padding-top: 1.44rem;
	color: rgba(17, 36, 61, 0.56);
	position: relative;
	z-index: 1;
}

.workflow .workflow-connector::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 2px;
	right: 2px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(17, 36, 61, 0.08), rgba(28, 75, 143, 0.26), rgba(17, 36, 61, 0.08));
	opacity: 0.76;
	transform: translateY(-50%);
	transform-origin: left center;
	transition: transform 0.32s ease, opacity 0.32s ease, background 0.32s ease;
}

.workflow .workflow-connector::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 6px;
	right: 6px;
	height: 6px;
	border-radius: 999px;
	background: radial-gradient(70% 100% at 50% 50%, rgba(28, 75, 143, 0.16), rgba(28, 75, 143, 0));
	opacity: 0.16;
	transform: translateY(-50%);
	pointer-events: none;
}

.workflow .workflow-connector i {
	width: 1.28rem;
	height: 1.28rem;
	font-size: 0.62rem;
	border-color: rgba(17, 36, 61, 0.2);
	background-color: #f9fcff;
	box-shadow: 0 6px 12px rgba(17, 36, 61, 0.07);
}

.workflow .workflow-node:hover + .workflow-connector::before,
.workflow .workflow-node:focus-within + .workflow-connector::before {
	background: linear-gradient(90deg, rgba(17, 36, 61, 0.14), rgba(28, 75, 143, 0.4), rgba(17, 36, 61, 0.14));
	opacity: 1;
}

.workflow .workflow-node:hover + .workflow-connector i,
.workflow .workflow-node:focus-within + .workflow-connector i {
	border-color: rgba(17, 36, 61, 0.28);
	background-color: #fff;
	box-shadow: 0 8px 14px rgba(17, 36, 61, 0.09);
}

.workflow .workflow-node.is-active + .workflow-connector::before {
	background: linear-gradient(90deg, rgba(17, 36, 61, 0.14), rgba(28, 75, 143, 0.48), rgba(17, 36, 61, 0.14));
	opacity: 1;
}

.workflow .workflow-summary {
	padding: 1rem 1.12rem;
	border-left: 2px solid rgba(28, 75, 143, 0.42);
	border-radius: 0 0.8rem 0.8rem 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	color: #4f6077;
}

.workflow.is-anim-ready .workflow-title,
.workflow.is-anim-ready .workflow-intro,
.workflow.is-anim-ready .workflow-timeline,
.workflow.is-anim-ready .workflow-summary,
.workflow.is-anim-ready .workflow-node,
.workflow.is-anim-ready .workflow-connector {
	opacity: 0;
	transform: translateY(8px);
	filter: blur(1px);
	transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
}

.workflow.is-anim-ready .workflow-title {
	transition-delay: 0.06s;
}

.workflow.is-anim-ready .workflow-intro {
	transition-delay: 0.14s;
}

.workflow.is-anim-ready .workflow-timeline {
	transition-delay: 0.22s;
}

.workflow.is-anim-ready .workflow-node:nth-of-type(1) { transition-delay: 0.32s; }
.workflow.is-anim-ready .workflow-node:nth-of-type(2) { transition-delay: 0.4s; }
.workflow.is-anim-ready .workflow-node:nth-of-type(3) { transition-delay: 0.48s; }
.workflow.is-anim-ready .workflow-node:nth-of-type(4) { transition-delay: 0.56s; }
.workflow.is-anim-ready .workflow-node:nth-of-type(5) { transition-delay: 0.64s; }
.workflow.is-anim-ready .workflow-node:nth-of-type(6) { transition-delay: 0.72s; }
.workflow.is-anim-ready .workflow-node:nth-of-type(7) { transition-delay: 0.8s; }

.workflow.is-anim-ready .workflow-connector:nth-of-type(2) { transition-delay: 0.36s; }
.workflow.is-anim-ready .workflow-connector:nth-of-type(4) { transition-delay: 0.44s; }
.workflow.is-anim-ready .workflow-connector:nth-of-type(6) { transition-delay: 0.52s; }
.workflow.is-anim-ready .workflow-connector:nth-of-type(8) { transition-delay: 0.6s; }
.workflow.is-anim-ready .workflow-connector:nth-of-type(10) { transition-delay: 0.68s; }
.workflow.is-anim-ready .workflow-connector:nth-of-type(12) { transition-delay: 0.76s; }

.workflow.is-anim-ready .workflow-summary {
	transition-delay: 0.9s;
}

.workflow.is-anim-ready .workflow-connector::before {
	transform: translateY(-50%) scaleX(0);
	opacity: 0.38;
}

.workflow.is-anim-ready.is-revealed .workflow-title,
.workflow.is-anim-ready.is-revealed .workflow-intro,
.workflow.is-anim-ready.is-revealed .workflow-timeline,
.workflow.is-anim-ready.is-revealed .workflow-summary,
.workflow.is-anim-ready.is-revealed .workflow-node,
.workflow.is-anim-ready.is-revealed .workflow-connector {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.workflow.is-anim-ready.is-revealed .workflow-connector::before {
	transform: translateY(-50%) scaleX(1);
	opacity: 0.76;
}

.workflow.is-revealed .workflow-node::before {
	animation: workflow-stage-pulse 0.64s ease-out 1 both;
}

.workflow.is-revealed .workflow-node:nth-of-type(1)::before { animation-delay: 0.26s; }
.workflow.is-revealed .workflow-node:nth-of-type(2)::before { animation-delay: 0.4s; }
.workflow.is-revealed .workflow-node:nth-of-type(3)::before { animation-delay: 0.54s; }
.workflow.is-revealed .workflow-node:nth-of-type(4)::before { animation-delay: 0.68s; }
.workflow.is-revealed .workflow-node:nth-of-type(5)::before { animation-delay: 0.82s; }
.workflow.is-revealed .workflow-node:nth-of-type(6)::before { animation-delay: 0.96s; }
.workflow.is-revealed .workflow-node:nth-of-type(7)::before { animation-delay: 1.1s; }

.workflow.is-revealed .workflow-connector::after {
	animation: workflow-connector-pulse 0.5s ease-out 1 both;
}

.workflow.is-revealed .workflow-connector:nth-of-type(2)::after { animation-delay: 0.33s; }
.workflow.is-revealed .workflow-connector:nth-of-type(4)::after { animation-delay: 0.47s; }
.workflow.is-revealed .workflow-connector:nth-of-type(6)::after { animation-delay: 0.61s; }
.workflow.is-revealed .workflow-connector:nth-of-type(8)::after { animation-delay: 0.75s; }
.workflow.is-revealed .workflow-connector:nth-of-type(10)::after { animation-delay: 0.89s; }
.workflow.is-revealed .workflow-connector:nth-of-type(12)::after { animation-delay: 1.03s; }

@keyframes workflow-stage-pulse {
	0% {
		opacity: 0;
		transform: scaleX(0.2);
	}
	45% {
		opacity: 0.82;
		transform: scaleX(1);
	}
	100% {
		opacity: 0;
		transform: scaleX(1.2);
	}
}

@keyframes workflow-connector-pulse {
	0% {
		opacity: 0;
	}
	35% {
		opacity: 0.58;
	}
	100% {
		opacity: 0.16;
	}
}

.platform .module-grid {
	position: relative;
	gap: 0.88rem 0.9rem;
	align-items: stretch;
	isolation: isolate;
}

.platform .module-grid::before,
.platform .module-grid::after {
	content: "";
	position: absolute;
	inset: -8% -4% auto;
	height: 56%;
	border-radius: 999px;
	pointer-events: none;
	z-index: -1;
}

.platform .module-grid::before {
	background: radial-gradient(70% 70% at 30% 45%, rgba(28, 75, 143, 0.09), rgba(28, 75, 143, 0));
}

.platform .module-grid::after {
	inset: auto -2% -10%;
	height: 44%;
	background: radial-gradient(66% 66% at 74% 50%, rgba(18, 54, 109, 0.06), rgba(18, 54, 109, 0));
}

.platform .module-card {
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.1);
	border-radius: 24px;
	padding: 1.02rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
	box-shadow:
		0 30px 54px rgba(18, 54, 109, 0.1),
		0 10px 20px rgba(18, 54, 109, 0.06),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
	overflow: visible;
	gap: 0.56rem;
	min-height: 182px;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.platform .module-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.84);
	pointer-events: none;
}

.platform .module-grid > [class*="col-"]:nth-child(1) .module-card,
.platform .module-grid > [class*="col-"]:nth-child(2) .module-card,
.platform .module-grid > [class*="col-"]:nth-child(4) .module-card,
.platform .module-grid > [class*="col-"]:nth-child(6) .module-card {
	border-color: rgba(18, 54, 109, 0.12);
	box-shadow:
		0 34px 58px rgba(18, 54, 109, 0.11),
		0 10px 20px rgba(18, 54, 109, 0.07),
		0 -1px 0 rgba(255, 255, 255, 0.74) inset;
}

.platform .module-card:hover,
.platform .module-card:focus,
.platform .module-card:focus-within {
	outline: none;
	transform: translateY(-5px);
	border-color: rgba(18, 54, 109, 0.2);
	box-shadow:
		0 44px 74px rgba(18, 54, 109, 0.13),
		0 15px 26px rgba(18, 54, 109, 0.08),
		0 -1px 0 rgba(255, 255, 255, 0.76) inset;
}

.platform.has-active-module .module-card:not(.is-active) {
	opacity: 0.76;
	border-color: rgba(18, 54, 109, 0.09);
	box-shadow:
		0 20px 38px rgba(18, 54, 109, 0.075),
		0 8px 16px rgba(18, 54, 109, 0.05),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
}

.platform .module-card.is-active {
	opacity: 1;
	border-color: rgba(28, 75, 143, 0.3);
	box-shadow:
		0 48px 80px rgba(18, 54, 109, 0.14),
		0 16px 28px rgba(18, 54, 109, 0.09),
		0 -1px 0 rgba(255, 255, 255, 0.78) inset;
}

.platform .module-card-icon {
	width: 2.32rem;
	height: 2.32rem;
	border-radius: 0.72rem;
	border: 1px solid rgba(18, 54, 109, 0.1);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(240, 247, 255, 0.95));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.96),
		0 8px 14px rgba(18, 54, 109, 0.065);
	font-size: 0.96rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.platform .module-card:hover .module-card-icon,
.platform .module-card:focus-within .module-card-icon,
.platform .module-card.is-active .module-card-icon {
	transform: translateY(-1px);
	border-color: rgba(18, 54, 109, 0.2);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.98),
		0 10px 16px rgba(18, 54, 109, 0.09);
}

.platform .module-card-title {
	margin-top: 0.18rem;
	font-size: 1.02rem;
	line-height: 1.34;
	font-weight: 655;
	color: #102440;
}

.platform .module-card-text {
	font-size: 0.89rem;
	line-height: 1.56;
	color: #53657d;
	min-height: 4.45em;
}

.platform .module-card-shot {
	position: relative;
	margin-top: auto;
	border: 1px dashed rgba(18, 54, 109, 0.16);
	border-radius: 16px;
	flex: 0 0 40%;
	min-height: 104px;
	padding: 0.66rem 0.68rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	text-align: left;
	font-size: 0.78rem;
	color: #4f6078;
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.84));
	box-shadow: 0 8px 14px rgba(18, 54, 109, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.platform .module-card-shot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.84);
	pointer-events: none;
}

.platform .module-card-shot-label {
	font-size: 0.76rem;
	line-height: 1.35;
	color: #53667f;
}

.platform .module-card-shot-meta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.3rem;
	padding: 0 0.42rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.15);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 246, 255, 0.94));
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.015em;
	color: #1b4a8d;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 6px 12px rgba(18, 54, 109, 0.07);
}

.platform .module-card:hover .module-card-shot,
.platform .module-card:focus-within .module-card-shot,
.platform .module-card.is-active .module-card-shot {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(18, 54, 109, 0.09);
	border-color: rgba(18, 54, 109, 0.24);
	filter: brightness(1.02) saturate(1.03) contrast(1.02);
}

.platform .module-op-fragment {
	position: absolute;
	right: -12px;
	top: -10px;
	width: min(166px, 33vw);
	min-width: 138px;
	padding: 0.5rem 0.58rem;
	border: 1px solid rgba(18, 54, 109, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 14px 24px rgba(18, 54, 109, 0.1);
	backdrop-filter: blur(2px);
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 4;
}

.platform .module-op-fragment-title {
	margin: 0;
	font-size: 0.74rem;
	line-height: 1.28;
	font-weight: 650;
	color: #14325d;
}

.platform .module-op-fragment-text {
	margin: 0.16rem 0 0;
	font-size: 0.72rem;
	line-height: 1.34;
	color: #53667f;
}

.platform .module-card:hover .module-op-fragment,
.platform .module-card:focus-within .module-op-fragment,
.platform .module-card.is-active .module-op-fragment {
	opacity: 1;
	transform: translateY(0);
}

.platform .platform-summary {
	padding: 1rem 1.12rem;
	border-left: 2px solid rgba(28, 75, 143, 0.42);
	border-radius: 0 0.8rem 0.8rem 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	color: #4f6077;
}

.platform.is-anim-ready .platform-title,
.platform.is-anim-ready .platform-intro,
.platform.is-anim-ready .module-grid > [class*="col-"],
.platform.is-anim-ready .platform-summary {
	opacity: 0;
	transform: translateY(10px);
	filter: blur(2px);
	transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
}

.platform.is-anim-ready .platform-title {
	transition-delay: 0.06s;
}

.platform.is-anim-ready .platform-intro {
	transition-delay: 0.14s;
}

.platform.is-anim-ready .module-grid > [class*="col-"]:nth-child(-n+4) {
	transition-delay: 0.26s;
}

.platform.is-anim-ready .module-grid > [class*="col-"]:nth-child(n+5) {
	transition-delay: 0.38s;
}

.platform.is-anim-ready .platform-summary {
	transition-delay: 0.48s;
}

.platform.is-anim-ready.is-revealed .platform-title,
.platform.is-anim-ready.is-revealed .platform-intro,
.platform.is-anim-ready.is-revealed .module-grid > [class*="col-"],
.platform.is-anim-ready.is-revealed .platform-summary {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.segments .segment-grid {
	position: relative;
	align-items: stretch;
	gap: 0.86rem 0.88rem;
	isolation: isolate;
}

.segments .segment-grid::before,
.segments .segment-grid::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	z-index: -1;
}

.segments .segment-grid::before {
	inset: -7% -5% auto;
	height: 54%;
	background: radial-gradient(68% 68% at 24% 42%, rgba(18, 54, 109, 0.07), rgba(18, 54, 109, 0));
}

.segments .segment-grid::after {
	inset: auto -4% -10%;
	height: 46%;
	background: radial-gradient(64% 64% at 78% 52%, rgba(28, 75, 143, 0.05), rgba(28, 75, 143, 0));
}

.segments .segment-card {
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.11);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
	padding: 1.03rem;
	box-shadow:
		0 28px 50px rgba(18, 54, 109, 0.095),
		0 10px 18px rgba(18, 54, 109, 0.055),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
	min-height: 318px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.segments .segment-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, rgba(28, 75, 143, 0), rgba(28, 75, 143, 0.26), rgba(28, 75, 143, 0));
	opacity: 0.72;
	pointer-events: none;
}

.segments .segment-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.84);
	pointer-events: none;
}

.segments .segment-card:hover,
.segments .segment-card:focus,
.segments .segment-card:focus-within {
	outline: none;
	transform: translateY(-4px);
	border-color: rgba(18, 54, 109, 0.2);
	box-shadow:
		0 38px 64px rgba(18, 54, 109, 0.12),
		0 14px 24px rgba(18, 54, 109, 0.075),
		0 -1px 0 rgba(255, 255, 255, 0.74) inset;
}

.segments.has-active-segment .segment-card:not(.is-active) {
	opacity: 0.76;
	border-color: rgba(18, 54, 109, 0.09);
	box-shadow:
		0 18px 34px rgba(18, 54, 109, 0.072),
		0 8px 14px rgba(18, 54, 109, 0.05),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
}

.segments .segment-card.is-active {
	opacity: 1;
	border-color: rgba(28, 75, 143, 0.3);
	box-shadow:
		0 42px 70px rgba(18, 54, 109, 0.13),
		0 16px 26px rgba(18, 54, 109, 0.08),
		0 -1px 0 rgba(255, 255, 255, 0.76) inset;
}

.segments .segment-card-icon {
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 0.72rem;
	border: 1px solid rgba(18, 54, 109, 0.1);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(239, 246, 255, 0.94));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 8px 14px rgba(18, 54, 109, 0.06);
	font-size: 0.97rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.segments .segment-card:hover .segment-card-icon,
.segments .segment-card:focus-within .segment-card-icon,
.segments .segment-card.is-active .segment-card-icon {
	transform: translateY(-1px);
	border-color: rgba(18, 54, 109, 0.24);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 11px 16px rgba(18, 54, 109, 0.085);
}

.segments .segment-card-title {
	margin-top: 0.22rem;
	font-size: 1.03rem;
	line-height: 1.32;
	font-weight: 660;
	color: #102440;
}

.segments .segment-card-text {
	line-height: 1.56;
	color: #53657d;
}

.segments .segment-card-benefit {
	font-size: 0.85rem;
	line-height: 1.44;
	color: #1e3f6f;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	padding-left: 0.44rem;
	border-left: 2px solid rgba(28, 75, 143, 0.22);
}

.segments .segment-card-shot {
	position: relative;
	margin-top: auto;
	min-height: 108px;
	flex: 0 0 40%;
	padding: 0.66rem 0.7rem;
	border: 1px dashed rgba(18, 54, 109, 0.16);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	text-align: left;
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.84));
	box-shadow: 0 8px 14px rgba(18, 54, 109, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.segments .segment-card-shot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.84);
	pointer-events: none;
}

.segments .segment-card-shot-label {
	font-size: 0.75rem;
	line-height: 1.34;
	color: #53667f;
}

.segments .segment-card-shot-meta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.32rem;
	padding: 0 0.42rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.14);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.94));
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.012em;
	color: #1b4a8d;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 6px 10px rgba(18, 54, 109, 0.06);
}

.segments .segment-card:hover .segment-card-shot,
.segments .segment-card:focus-within .segment-card-shot,
.segments .segment-card.is-active .segment-card-shot {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(18, 54, 109, 0.09);
	border-color: rgba(18, 54, 109, 0.24);
	filter: saturate(1.03) contrast(1.02);
}

.segments .segment-card-indicator {
	margin: 0.55rem 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.36rem;
	padding: 0 0.44rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #1f4e93;
	opacity: 0;
	transform: translateY(6px);
	max-width: fit-content;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.segments .segment-card:hover .segment-card-indicator,
.segments .segment-card:focus-within .segment-card-indicator,
.segments .segment-card.is-active .segment-card-indicator {
	opacity: 1;
	transform: translateY(0);
}

.segments .segment-card-note {
	margin-top: 0.45rem;
	font-size: 0.8rem;
	line-height: 1.42;
	color: #5b6c84;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.2s ease, max-height 0.2s ease;
}

.segments .segment-card:hover .segment-card-note,
.segments .segment-card:focus-within .segment-card-note,
.segments .segment-card.is-active .segment-card-note {
	opacity: 1;
	max-height: 3rem;
}

.segments .segment-card--hvac .segment-card-shot-meta {
	color: #1d4d92;
	border-color: rgba(28, 75, 143, 0.2);
}

.segments .segment-card--ti .segment-card-shot-meta {
	color: #2d5e97;
	border-color: rgba(54, 100, 156, 0.2);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 253, 0.95));
}

.segments .segment-card--solar .segment-card-shot {
	box-shadow: 0 9px 16px rgba(137, 112, 38, 0.08);
}

.segments .segment-card--solar .segment-card-shot-meta {
	color: #7b6020;
	border-color: rgba(145, 118, 34, 0.22);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 235, 0.94));
}

.segments .segment-card--facilities .segment-card-shot-meta {
	color: #43566f;
	border-color: rgba(67, 86, 111, 0.24);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.95));
}

.segments .segment-card--seguranca .segment-card-shot-meta {
	color: #3c5578;
	border-color: rgba(60, 85, 120, 0.23);
}

.segments .segment-card--assistencia .segment-card-shot-meta {
	color: #345b8d;
	border-color: rgba(52, 91, 141, 0.21);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.95));
}

.segments .segments-cta-wrap {
	margin-top: 1.5rem;
	padding: 0.98rem 1.02rem;
	border: 1px solid rgba(18, 54, 109, 0.1);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.9));
	box-shadow: 0 10px 20px rgba(18, 54, 109, 0.05);
	display: inline-grid;
	gap: 0.62rem;
}

.segments .segments-cta-support {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.54;
	color: #53657d;
	max-width: 62ch;
}

.segments .segments-cta {
	min-height: 2.72rem;
	padding: 0.62rem 0.98rem;
	font-weight: 600;
	border-color: rgba(18, 54, 109, 0.18);
	background-color: rgba(255, 255, 255, 0.93);
}

.segments.is-anim-ready .segments-title,
.segments.is-anim-ready .segments-intro,
.segments.is-anim-ready .segment-grid > [class*="col-"],
.segments.is-anim-ready .segments-cta-wrap {
	opacity: 0;
	transform: translateY(10px);
	filter: blur(2px);
	transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
}

.segments.is-anim-ready .segments-title {
	transition-delay: 0.06s;
}

.segments.is-anim-ready .segments-intro {
	transition-delay: 0.14s;
}

.segments.is-anim-ready .segment-grid > [class*="col-"]:nth-child(-n+3) {
	transition-delay: 0.26s;
}

.segments.is-anim-ready .segment-grid > [class*="col-"]:nth-child(n+4) {
	transition-delay: 0.38s;
}

.segments.is-anim-ready .segments-cta-wrap {
	transition-delay: 0.48s;
}

.segments.is-anim-ready.is-revealed .segments-title,
.segments.is-anim-ready.is-revealed .segments-intro,
.segments.is-anim-ready.is-revealed .segment-grid > [class*="col-"],
.segments.is-anim-ready.is-revealed .segments-cta-wrap {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.benefits .benefit-grid {
	position: relative;
	align-items: stretch;
	gap: 0.86rem 0.88rem;
	isolation: isolate;
}

.benefits .benefit-grid::before,
.benefits .benefit-grid::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	z-index: -1;
}

.benefits .benefit-grid::before {
	inset: -6% -4% auto;
	height: 52%;
	background: radial-gradient(70% 70% at 26% 44%, rgba(18, 54, 109, 0.055), rgba(18, 54, 109, 0));
}

.benefits .benefit-grid::after {
	inset: auto -4% -10%;
	height: 42%;
	background: radial-gradient(64% 64% at 76% 46%, rgba(28, 75, 143, 0.04), rgba(28, 75, 143, 0));
}

.benefits .benefit-card {
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.11);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
	padding: 1.03rem;
	box-shadow:
		0 24px 44px rgba(18, 54, 109, 0.085),
		0 9px 16px rgba(18, 54, 109, 0.05),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
	min-height: 324px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.benefits .benefit-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.86);
	pointer-events: none;
}

.benefits .benefit-card:hover,
.benefits .benefit-card:focus,
.benefits .benefit-card:focus-within {
	outline: none;
	transform: translateY(-4px);
	border-color: rgba(18, 54, 109, 0.2);
	box-shadow:
		0 34px 58px rgba(18, 54, 109, 0.11),
		0 13px 22px rgba(18, 54, 109, 0.07),
		0 -1px 0 rgba(255, 255, 255, 0.74) inset;
}

.benefits.has-active-benefit .benefit-card:not(.is-active) {
	opacity: 0.78;
	border-color: rgba(18, 54, 109, 0.09);
	box-shadow:
		0 15px 28px rgba(18, 54, 109, 0.065),
		0 6px 12px rgba(18, 54, 109, 0.045),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
}

.benefits .benefit-card.is-active {
	opacity: 1;
	border-color: rgba(28, 75, 143, 0.28);
	box-shadow:
		0 38px 62px rgba(18, 54, 109, 0.12),
		0 14px 24px rgba(18, 54, 109, 0.075),
		0 -1px 0 rgba(255, 255, 255, 0.76) inset;
}

.benefits .benefit-card-icon {
	width: 2.28rem;
	height: 2.28rem;
	border-radius: 0.72rem;
	border: 1px solid rgba(18, 54, 109, 0.1);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(239, 246, 255, 0.94));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 8px 14px rgba(18, 54, 109, 0.06);
	font-size: 0.97rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefits .benefit-card:hover .benefit-card-icon,
.benefits .benefit-card:focus-within .benefit-card-icon,
.benefits .benefit-card.is-active .benefit-card-icon {
	transform: translateY(-1px);
	border-color: rgba(18, 54, 109, 0.23);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 10px 16px rgba(18, 54, 109, 0.08);
}

.benefits .benefit-card-title {
	margin-top: 0.22rem;
	font-size: 1.05rem;
	line-height: 1.32;
	font-weight: 665;
	color: #102440;
}

.benefits .benefit-card-text {
	line-height: 1.58;
	color: #53657d;
	min-height: 4.5em;
}

.benefits .benefit-card-evidence {
	position: relative;
	margin-top: auto;
	min-height: 108px;
	flex: 0 0 40%;
	padding: 0.66rem 0.72rem;
	border: 1px dashed rgba(18, 54, 109, 0.16);
	border-radius: 16px;
	display: grid;
	gap: 0.34rem;
	align-content: start;
	justify-items: start;
	text-align: left;
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.84));
	box-shadow: 0 7px 12px rgba(18, 54, 109, 0.045);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.benefits .benefit-card-evidence::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.84);
	pointer-events: none;
}

.benefits .benefit-card-evidence-title {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #1f4e93;
}

.benefits .benefit-card-evidence-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.16rem;
}

.benefits .benefit-card-evidence-list li {
	font-size: 0.74rem;
	line-height: 1.35;
	color: #4f6077;
	transition: transform 0.2s ease, color 0.2s ease;
}

.benefits .benefit-card-progress {
	margin-top: 0.55rem;
	display: grid;
	gap: 0.24rem;
}

.benefits .benefit-card-progress-bar {
	position: relative;
	height: 4px;
	border-radius: 999px;
	background: rgba(17, 36, 61, 0.1);
	overflow: hidden;
}

.benefits .benefit-card-progress-bar::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 42%;
	border-radius: inherit;
	background: linear-gradient(90deg, rgba(28, 75, 143, 0.42), rgba(28, 75, 143, 0.22));
	transition: width 0.2s ease;
}

.benefits .benefit-card-progress-label {
	font-size: 0.69rem;
	font-weight: 650;
	letter-spacing: 0.01em;
	color: #4f6078;
}

.benefits .benefit-card-indicator {
	margin: 0.52rem 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.34rem;
	padding: 0 0.44rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #1f4e93;
	opacity: 0;
	transform: translateY(6px);
	max-width: fit-content;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.benefits .benefit-card:hover .benefit-card-evidence,
.benefits .benefit-card:focus-within .benefit-card-evidence,
.benefits .benefit-card.is-active .benefit-card-evidence {
	transform: translateY(-2px);
	box-shadow: 0 12px 20px rgba(18, 54, 109, 0.08);
	border-color: rgba(18, 54, 109, 0.22);
	filter: saturate(1.03) contrast(1.02);
}

.benefits .benefit-card:hover .benefit-card-evidence-list li,
.benefits .benefit-card:focus-within .benefit-card-evidence-list li,
.benefits .benefit-card.is-active .benefit-card-evidence-list li {
	color: #43566f;
	transform: translateX(1px);
}

.benefits .benefit-card:hover .benefit-card-progress-bar::before,
.benefits .benefit-card:focus-within .benefit-card-progress-bar::before,
.benefits .benefit-card.is-active .benefit-card-progress-bar::before {
	width: 86%;
}

.benefits .benefit-card:hover .benefit-card-indicator,
.benefits .benefit-card:focus-within .benefit-card-indicator,
.benefits .benefit-card.is-active .benefit-card-indicator {
	opacity: 1;
	transform: translateY(0);
}

.benefits .benefits-summary {
	padding: 1rem 1.12rem;
	border-left: 2px solid rgba(28, 75, 143, 0.42);
	border-radius: 0 0.8rem 0.8rem 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	color: #4f6077;
}

.benefits.is-anim-ready .benefits-title,
.benefits.is-anim-ready .benefits-intro,
.benefits.is-anim-ready .benefit-grid > [class*="col-"],
.benefits.is-anim-ready .benefits-summary {
	opacity: 0;
	transform: translateY(10px);
	filter: blur(2px);
	transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
}

.benefits.is-anim-ready .benefits-title {
	transition-delay: 0.06s;
}

.benefits.is-anim-ready .benefits-intro {
	transition-delay: 0.14s;
}

.benefits.is-anim-ready .benefit-grid > [class*="col-"]:nth-child(-n+3) {
	transition-delay: 0.26s;
}

.benefits.is-anim-ready .benefit-grid > [class*="col-"]:nth-child(n+4) {
	transition-delay: 0.38s;
}

.benefits.is-anim-ready .benefits-summary {
	transition-delay: 0.48s;
}

.benefits.is-anim-ready.is-revealed .benefits-title,
.benefits.is-anim-ready.is-revealed .benefits-intro,
.benefits.is-anim-ready.is-revealed .benefit-grid > [class*="col-"],
.benefits.is-anim-ready.is-revealed .benefits-summary {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.mobile-app .mobile-app-content {
	position: relative;
	align-items: flex-start !important;
	gap: 0.95rem 1.5rem;
	padding: 0.14rem 0 0;
}

@media (min-width: 992px) {
	.mobile-app .mobile-app-content {
		display: grid;
		grid-template-columns: minmax(280px, 38%) minmax(0, 62%);
		column-gap: clamp(1.5rem, 2.8vw, 2.45rem);
		align-items: start !important;
	}

	.mobile-app .mobile-app-content > [class*="col-"] {
		width: auto;
		max-width: none;
		padding: 0;
	}

	.mobile-app .mobile-app-content > [class*="col-"]:first-child {
		padding-top: 0.6rem;
	}
}

.mobile-app .device-mockup {
	position: relative;
	margin: 0;
	display: flex;
	justify-content: center;
	transform: perspective(1040px) rotateY(-2deg) translateY(6px);
	transition: transform 0.28s ease;
	isolation: isolate;
}

.mobile-app .device-mockup:hover,
.mobile-app .device-mockup:focus-within {
	transform: perspective(1040px) rotateY(-2deg) translateY(3px);
}

.mobile-app .device-mockup::before {
	content: "";
	position: absolute;
	inset: 16% -10% 10%;
	border-radius: 999px;
	background: radial-gradient(64% 64% at 50% 50%, rgba(28, 75, 143, 0.16), rgba(28, 75, 143, 0));
	opacity: 0.11;
	z-index: -1;
	pointer-events: none;
}

.mobile-app .device-mockup-frame {
	width: min(236px, 100%);
	background: linear-gradient(180deg, #102441, #0d1f36);
	border-radius: 2.08rem;
	padding: 0.56rem;
	box-shadow:
		0 22px 38px rgba(17, 36, 61, 0.16),
		0 9px 16px rgba(17, 36, 61, 0.1),
		0 1px 0 rgba(255, 255, 255, 0.2) inset;
	border: 1px solid rgba(17, 36, 61, 0.28);
	position: relative;
	overflow: visible;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mobile-app .device-mockup:hover .device-mockup-frame,
.mobile-app .device-mockup:focus-within .device-mockup-frame {
	box-shadow:
		0 28px 46px rgba(17, 36, 61, 0.2),
		0 12px 20px rgba(17, 36, 61, 0.12),
		0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.mobile-app .device-mockup-frame::before {
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: 1.92rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	pointer-events: none;
}

.mobile-app .device-mockup-screen {
	min-height: 336px;
	border-radius: 1.72rem;
	background: linear-gradient(180deg, #ffffff, #f7fbff);
	border: 1px solid rgba(17, 36, 61, 0.1);
	padding: 0.8rem 0.78rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	text-align: left;
	gap: 0.62rem;
	overflow: hidden;
	position: relative;
}

.mobile-app .device-live-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem;
	padding: 0.24rem 0.28rem;
	border: 1px solid rgba(18, 54, 109, 0.12);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.92));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 6px 10px rgba(18, 54, 109, 0.06);
}

.mobile-app .device-live-status-time {
	font-size: 0.72rem;
	font-weight: 700;
	color: #14325d;
}

.mobile-app .device-live-status-signal {
	font-size: 0.69rem;
	font-weight: 650;
	color: #356698;
}

.mobile-app .device-screen-panels {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	border: 1px solid rgba(18, 54, 109, 0.12);
	border-radius: 1.08rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.95));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 18px rgba(18, 54, 109, 0.06);
	overflow: hidden;
	padding: 0.68rem;
}

.mobile-app .device-screen-panel {
	position: absolute;
	inset: 0.68rem;
	padding: 0.52rem 0.54rem;
	border: 1px solid rgba(18, 54, 109, 0.11);
	border-radius: 0.84rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.92));
	display: grid;
	align-content: start;
	gap: 0.4rem;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-app .device-screen-panel.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.mobile-app .device-screen-title {
	margin: 0;
	font-size: 0.77rem;
	font-weight: 700;
	letter-spacing: 0.012em;
	text-transform: uppercase;
	color: #1d4d92;
}

.mobile-app .device-screen-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.2rem;
}

.mobile-app .device-screen-list li {
	font-size: 0.74rem;
	line-height: 1.36;
	color: #4f6077;
}

.mobile-app .device-sync-badge {
	position: absolute;
	right: -10px;
	top: 44px;
	min-height: 1.5rem;
	padding: 0.2rem 0.52rem;
	border-radius: 999px;
	border: 1px solid rgba(28, 75, 143, 0.22);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 245, 255, 0.94));
	box-shadow: 0 10px 18px rgba(18, 54, 109, 0.11);
	font-size: 0.69rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #1b4a8d;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.24s ease, transform 0.24s ease;
	pointer-events: none;
	z-index: 4;
}

.mobile-app .device-sync-badge.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.mobile-app .app-feature-list {
	position: relative;
	gap: 0.44rem;
	padding-left: 0.3rem;
}

.mobile-app .app-feature-list::before {
	content: "";
	position: absolute;
	top: 1rem;
	bottom: 1rem;
	left: 1.24rem;
	width: 1px;
	background: linear-gradient(180deg, rgba(28, 75, 143, 0.2), rgba(28, 75, 143, 0.07));
	opacity: 0.34;
}

.mobile-app .app-feature-item {
	display: grid;
	grid-template-columns: 2.04rem 1fr;
	gap: 0.64rem;
	align-items: flex-start;
	border: 1px solid rgba(18, 54, 109, 0.12);
	border-radius: 1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.9));
	padding: 0.72rem 0.82rem;
	box-shadow: 0 9px 16px rgba(18, 54, 109, 0.045);
	position: relative;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.mobile-app .app-feature-item::before {
	content: "";
	position: absolute;
	left: -0.18rem;
	top: 1.06rem;
	width: 0.34rem;
	height: 0.34rem;
	border-radius: 999px;
	background: rgba(18, 54, 109, 0.2);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.82);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.mobile-app .app-feature-item::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.84);
	pointer-events: none;
}

.mobile-app .app-feature-item:hover,
.mobile-app .app-feature-item:focus,
.mobile-app .app-feature-item:focus-within,
.mobile-app .app-feature-item.is-active {
	outline: none;
	transform: translateY(-3px);
	border-color: rgba(18, 54, 109, 0.22);
	box-shadow: 0 14px 24px rgba(18, 54, 109, 0.085);
}

.mobile-app .app-feature-item:hover::before,
.mobile-app .app-feature-item:focus-within::before,
.mobile-app .app-feature-item.is-active::before {
	background: rgba(28, 75, 143, 0.58);
	transform: scale(1.1);
}

.mobile-app.has-active-feature .app-feature-item:not(.is-active) {
	opacity: 0.8;
}

.mobile-app .app-feature-icon {
	width: 2.04rem;
	height: 2.04rem;
	border-radius: 0.66rem;
	border: 1px solid rgba(18, 54, 109, 0.11);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.9));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 12px rgba(18, 54, 109, 0.06);
	font-size: 0.86rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-app .app-feature-item:hover .app-feature-icon,
.mobile-app .app-feature-item:focus-within .app-feature-icon,
.mobile-app .app-feature-item.is-active .app-feature-icon {
	transform: translateY(-1px);
	border-color: rgba(18, 54, 109, 0.24);
	background: linear-gradient(180deg, rgba(246, 251, 255, 0.98), rgba(226, 240, 255, 0.94));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 10px 16px rgba(18, 54, 109, 0.08);
}

.mobile-app .app-feature-title {
	margin-top: 0.02rem;
	font-size: 0.94rem;
	line-height: 1.32;
	font-weight: 650;
	color: #102440;
}

.mobile-app .app-feature-text {
	margin-top: 0.24rem;
	font-size: 0.84rem;
	line-height: 1.5;
	color: #53657d;
}

.mobile-app .mobile-app-summary {
	padding: 1rem 1.12rem;
	border-left: 2px solid rgba(28, 75, 143, 0.42);
	border-radius: 0 0.8rem 0.8rem 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	color: #4f6077;
}

.mobile-app.is-anim-ready .mobile-app-title,
.mobile-app.is-anim-ready .mobile-app-intro,
.mobile-app.is-anim-ready .device-mockup,
.mobile-app.is-anim-ready .app-feature-item,
.mobile-app.is-anim-ready .mobile-app-summary {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(2px);
	transition: opacity 0.36s ease, transform 0.36s ease, filter 0.36s ease;
}

.mobile-app.is-anim-ready .mobile-app-title {
	transition-delay: 0.06s;
}

.mobile-app.is-anim-ready .mobile-app-intro {
	transition-delay: 0.14s;
}

.mobile-app.is-anim-ready .device-mockup {
	transition-delay: 0.26s;
}

.mobile-app.is-anim-ready .app-feature-item:nth-child(1) { transition-delay: 0.36s; }
.mobile-app.is-anim-ready .app-feature-item:nth-child(2) { transition-delay: 0.42s; }
.mobile-app.is-anim-ready .app-feature-item:nth-child(3) { transition-delay: 0.48s; }
.mobile-app.is-anim-ready .app-feature-item:nth-child(4) { transition-delay: 0.54s; }
.mobile-app.is-anim-ready .app-feature-item:nth-child(5) { transition-delay: 0.6s; }
.mobile-app.is-anim-ready .app-feature-item:nth-child(6) { transition-delay: 0.66s; }
.mobile-app.is-anim-ready .app-feature-item:nth-child(7) { transition-delay: 0.72s; }

.mobile-app.is-anim-ready .mobile-app-summary {
	transition-delay: 0.8s;
}

.mobile-app.is-anim-ready.is-revealed .mobile-app-title,
.mobile-app.is-anim-ready.is-revealed .mobile-app-intro,
.mobile-app.is-anim-ready.is-revealed .device-mockup,
.mobile-app.is-anim-ready.is-revealed .app-feature-item,
.mobile-app.is-anim-ready.is-revealed .mobile-app-summary {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.mobile-app.is-sync-demo .device-sync-badge {
	opacity: 1;
	transform: translateY(0);
}

.indicators .indicators-content {
	position: relative;
	align-items: flex-start !important;
	gap: 1rem 1.26rem;
}

@media (min-width: 768px) {
	.indicators .indicators-content {
		display: grid;
		grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
		column-gap: clamp(1rem, 2.4vw, 1.9rem);
		row-gap: 0.9rem;
	}

	.indicators .indicators-content > [class*="col-"] {
		width: auto;
		max-width: none;
		padding: 0;
	}
}

.indicators .dashboard-preview {
	margin: 0;
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.11);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(250, 253, 255, 0.99));
	min-height: 484px;
	padding: 0.68rem;
	overflow: visible;
	box-shadow:
		0 28px 52px rgba(17, 36, 61, 0.12),
		0 12px 24px rgba(17, 36, 61, 0.07),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transition: transform 0.32s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	isolation: isolate;
}

.indicators .dashboard-preview::before {
	content: "";
	position: absolute;
	left: 14%;
	right: 14%;
	top: 18%;
	height: 52%;
	border-radius: 999px;
	background: radial-gradient(70% 70% at 50% 50%, rgba(46, 102, 196, 0.07), rgba(46, 102, 196, 0));
	opacity: 0.82;
	z-index: -1;
	pointer-events: none;
}

.indicators .dashboard-preview::after {
	content: "";
	position: absolute;
	left: 13%;
	right: 13%;
	bottom: -16px;
	height: 24px;
	border-radius: 999px;
	background: radial-gradient(62% 96% at 50% 50%, rgba(17, 36, 61, 0.2), rgba(17, 36, 61, 0));
	opacity: 0.24;
	z-index: -1;
	pointer-events: none;
}

.indicators .dashboard-preview:hover {
	border-color: rgba(18, 54, 109, 0.17);
	box-shadow:
		0 32px 56px rgba(17, 36, 61, 0.14),
		0 14px 26px rgba(17, 36, 61, 0.09),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.indicators .dashboard-preview-inner {
	position: relative;
	min-height: 466px;
	margin: 0;
	padding: 0.84rem;
	border: 1px solid rgba(18, 54, 109, 0.1);
	border-radius: 1.06rem;
	background: #ffffff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 0 0 1px rgba(28, 75, 143, 0.03);
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 0.74rem;
	text-align: left;
}

.indicators .dashboard-preview-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.36rem;
	width: fit-content;
	min-height: 1.42rem;
	padding: 0 0.58rem;
	border-radius: 999px;
	border: 1px solid rgba(28, 75, 143, 0.2);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.92));
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.012em;
	color: #1f4d92;
	white-space: nowrap;
}

.indicators .dashboard-preview-badge-dot {
	width: 0.36rem;
	height: 0.36rem;
	border-radius: 999px;
	background: #1f7a45;
	box-shadow: 0 0 0 4px rgba(31, 122, 69, 0.15);
	animation: indicators-live-pulse 2.2s ease infinite;
}

.indicators .dashboard-shot-frame {
	position: relative;
	min-height: 344px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 2vw, 1.36rem);
	border-radius: 0.98rem;
	border: 1px solid rgba(18, 54, 109, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.97)),
		repeating-linear-gradient(0deg, rgba(28, 75, 143, 0.02), rgba(28, 75, 143, 0.02) 1px, transparent 1px, transparent 30px);
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), inset 0 10px 24px rgba(28, 75, 143, 0.03);
}

.indicators .dashboard-shot-placeholder {
	max-width: 34ch;
	display: grid;
	justify-items: center;
	gap: 0.38rem;
	text-align: center;
	padding: 1.2rem 1rem;
	border-radius: 0.82rem;
	border: 1px dashed rgba(28, 75, 143, 0.23);
	background: rgba(255, 255, 255, 0.76);
	color: #4d6078;
}

.indicators .dashboard-shot-title {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 670;
	letter-spacing: -0.01em;
	color: #122f53;
}

.indicators .dashboard-shot-description {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.5;
	color: #50627a;
}

.indicators .dashboard-shot-helper {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 620;
	letter-spacing: 0.01em;
	color: #5a6f89;
}

.indicators .dashboard-preview-caption {
	margin: 0;
	display: grid;
	gap: 0.16rem;
	padding: 0 0.16rem;
}

.indicators .dashboard-preview-label {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.014em;
	text-transform: uppercase;
	color: #2f5f95;
}

.indicators .dashboard-preview-text {
	margin: 0;
	font-size: 0.72rem;
	line-height: 1.42;
	color: #50627b;
	max-width: 68ch;
}

.indicators .kpi-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.76rem;
	align-content: start;
}

.indicators .kpi-item {
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.14);
	border-radius: 0.94rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.93));
	padding: 0.74rem 0.82rem 0.8rem;
	box-shadow: 0 11px 19px rgba(18, 54, 109, 0.055);
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.36rem;
	min-height: 120px;
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
	outline: none;
	cursor: pointer;
	will-change: transform;
}

.indicators .kpi-item::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.86);
	pointer-events: none;
}

.indicators .kpi-item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.56rem;
}

.indicators .kpi-item-icon {
	width: 1.86rem;
	height: 1.86rem;
	border-radius: 0.6rem;
	border: 1px solid rgba(18, 54, 109, 0.14);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 255, 0.93));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 14px rgba(18, 54, 109, 0.08);
	font-size: 0.8rem;
	color: #1f4d92;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.indicators .kpi-item-trend {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.24rem;
	padding: 0 0.4rem;
	border-radius: 999px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: rgba(255, 255, 255, 0.85);
	color: #4a5f79;
	max-width: fit-content;
	white-space: nowrap;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.indicators .kpi-item-trend--up {
	border-color: rgba(25, 117, 72, 0.26);
	color: #1f7a45;
	background: rgba(229, 246, 237, 0.75);
}

.indicators .kpi-item-trend--down {
	border-color: rgba(28, 75, 143, 0.28);
	color: #1d4d92;
	background: rgba(234, 243, 255, 0.8);
}

.indicators .kpi-item-value {
	margin: 0;
	font-size: 1.24rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.012em;
	color: #102441;
	transition: color 0.2s ease;
}

.indicators .kpi-item-title {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.2;
	font-weight: 650;
	color: #132a49;
}

.indicators .kpi-item-text {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.46;
	color: #53667f;
}

.indicators .kpi-item:hover,
.indicators .kpi-item:focus,
.indicators .kpi-item:focus-within,
.indicators .kpi-item.is-active {
	transform: translateY(-4px);
	border-color: rgba(28, 75, 143, 0.25);
	box-shadow: 0 18px 28px rgba(18, 54, 109, 0.12);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(242, 249, 255, 0.95));
}

.indicators .kpi-item:hover .kpi-item-icon,
.indicators .kpi-item:focus-within .kpi-item-icon,
.indicators .kpi-item.is-active .kpi-item-icon {
	transform: translateY(-1px);
	border-color: rgba(28, 75, 143, 0.26);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 10px 16px rgba(18, 54, 109, 0.1);
}

.indicators .kpi-item:hover .kpi-item-trend,
.indicators .kpi-item:focus-within .kpi-item-trend,
.indicators .kpi-item.is-active .kpi-item-trend {
	border-color: rgba(28, 75, 143, 0.28);
	box-shadow: 0 0 0 5px rgba(28, 75, 143, 0.08);
}

.indicators .kpi-item:hover .kpi-item-value,
.indicators .kpi-item:focus-within .kpi-item-value,
.indicators .kpi-item.is-active .kpi-item-value {
	color: #1b4b8f;
}

.indicators.has-active-kpi .kpi-item:not(.is-active) {
	opacity: 0.84;
}

.indicators .indicators-summary {
	padding: 1rem 1.12rem;
	border-left: 2px solid rgba(28, 75, 143, 0.42);
	border-radius: 0 0.8rem 0.8rem 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
	color: #4f6077;
}

.indicators.is-anim-ready .indicators-title,
.indicators.is-anim-ready .indicators-intro,
.indicators.is-anim-ready .dashboard-preview,
.indicators.is-anim-ready .kpi-item,
.indicators.is-anim-ready .indicators-summary {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(2px);
	transition: opacity 0.36s ease, transform 0.36s ease, filter 0.36s ease;
}

.indicators.is-anim-ready .indicators-title {
	transition-delay: 0.06s;
}

.indicators.is-anim-ready .indicators-intro {
	transition-delay: 0.14s;
}

.indicators.is-anim-ready .dashboard-preview {
	transition-delay: 0.24s;
}

.indicators.is-anim-ready .kpi-item:nth-child(1) { transition-delay: 0.39s; }
.indicators.is-anim-ready .kpi-item:nth-child(2) { transition-delay: 0.46s; }
.indicators.is-anim-ready .kpi-item:nth-child(3) { transition-delay: 0.53s; }
.indicators.is-anim-ready .kpi-item:nth-child(4) { transition-delay: 0.6s; }
.indicators.is-anim-ready .kpi-item:nth-child(5) { transition-delay: 0.67s; }
.indicators.is-anim-ready .kpi-item:nth-child(6) { transition-delay: 0.74s; }

.indicators.is-anim-ready .indicators-summary {
	transition-delay: 0.84s;
}

.indicators.is-anim-ready.is-revealed .indicators-title,
.indicators.is-anim-ready.is-revealed .indicators-intro,
.indicators.is-anim-ready.is-revealed .dashboard-preview,
.indicators.is-anim-ready.is-revealed .kpi-item,
.indicators.is-anim-ready.is-revealed .indicators-summary {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

@keyframes indicators-live-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(31, 122, 69, 0.25);
	}

	70% {
		box-shadow: 0 0 0 7px rgba(31, 122, 69, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(31, 122, 69, 0);
	}
}

.testimonials .testimonials-grid {
	position: relative;
	gap: 0.9rem;
}

.testimonials .testimonials-grid::before {
	content: "";
	position: absolute;
	left: 8%;
	right: 8%;
	top: -0.32rem;
	height: 1px;
	background: linear-gradient(90deg, rgba(18, 54, 109, 0), rgba(18, 54, 109, 0.2), rgba(18, 54, 109, 0));
	opacity: 0.74;
	pointer-events: none;
}

.testimonials .testimonial-card {
	position: relative;
	padding: 1.22rem 1.32rem 1.2rem;
	border: 1px solid rgba(18, 54, 109, 0.15);
	border-radius: 1.18rem;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow:
		0 26px 48px rgba(17, 36, 61, 0.11),
		0 12px 20px rgba(17, 36, 61, 0.07),
		0 1px 0 rgba(255, 255, 255, 0.7) inset;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.testimonials .testimonial-card::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 14% 26% 18% 8%;
	border-radius: 999px;
	background: radial-gradient(68% 68% at 50% 50%, rgba(46, 102, 196, 0.08), rgba(46, 102, 196, 0));
	opacity: 0.95;
	pointer-events: none;
}

.testimonials .testimonial-card:hover,
.testimonials .testimonial-card:focus-within {
	transform: translateY(-2px);
	border-color: rgba(18, 54, 109, 0.2);
	box-shadow:
		0 30px 52px rgba(17, 36, 61, 0.13),
		0 14px 22px rgba(17, 36, 61, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.76) inset;
}

.testimonials .testimonial-quote-mark {
	position: absolute;
	top: -0.3rem;
	right: 1.1rem;
	font-size: clamp(5rem, 10vw, 7.8rem);
	line-height: 1;
	font-weight: 700;
	color: rgba(18, 54, 109, 0.08);
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.testimonials .testimonial-head,
.testimonials .testimonial-quote,
.testimonials .testimonial-result,
.testimonials .testimonial-chips {
	position: relative;
	z-index: 1;
}

.testimonials .testimonial-head {
	display: flex;
	align-items: center;
	gap: 0.94rem;
	margin-bottom: 0.82rem;
}

.testimonials .testimonial-photo,
.testimonials .testimonial-photo-placeholder {
	width: 70px;
	height: 70px;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.92);
	background: linear-gradient(180deg, #f5f9ff, #e9f1fc);
	box-shadow:
		0 10px 20px rgba(17, 36, 61, 0.16),
		0 0 0 5px rgba(46, 102, 196, 0.08);
	color: #486078;
	font-weight: 600;
	font-size: 0.76rem;
	flex: 0 0 auto;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonials .testimonial-photo {
	object-fit: cover;
}

.testimonials .testimonial-card:hover .testimonial-photo,
.testimonials .testimonial-card:focus-within .testimonial-photo,
.testimonials .testimonial-card:hover .testimonial-photo-placeholder,
.testimonials .testimonial-card:focus-within .testimonial-photo-placeholder {
	transform: translateY(-1px);
	box-shadow:
		0 13px 22px rgba(17, 36, 61, 0.19),
		0 0 0 6px rgba(46, 102, 196, 0.1);
}

.testimonials .testimonial-name {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.24;
	color: #0f2543;
	font-weight: 680;
}

.testimonials .testimonial-role,
.testimonials .testimonial-company {
	margin: 0.2rem 0 0;
	font-size: 0.84rem;
	line-height: 1.4;
	color: #53667f;
}

.testimonials .testimonial-company {
	font-weight: 620;
	color: #345f94;
}

.testimonials .testimonial-quote {
	margin: 0;
	padding: 0.22rem 0 0;
	border-left: 0;
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	line-height: 1.72;
	max-width: 76ch;
	color: #1f324f;
	text-wrap: pretty;
}

.testimonials .testimonial-result {
	margin: 0.88rem 0 0;
	padding-top: 0.62rem;
	border-top: 1px solid rgba(18, 54, 109, 0.16);
	font-size: 0.86rem;
	line-height: 1.55;
	color: #4f627a;
}

.testimonials .testimonial-chips {
	margin: 0.72rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.44rem;
}

.testimonials .testimonial-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.34rem;
	min-height: 1.42rem;
	padding: 0 0.5rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: rgba(255, 255, 255, 0.84);
	font-size: 0.72rem;
	font-weight: 620;
	color: #3f5773;
	letter-spacing: 0.004em;
	transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonials .testimonial-chip i {
	font-size: 0.76rem;
	color: #2d669f;
}

.testimonials .testimonial-chip:hover {
	transform: translateY(-1px);
	border-color: rgba(18, 54, 109, 0.24);
	color: #2e4f76;
}

.testimonials .testimonials-logos-wrap {
	margin-top: 1.44rem;
	padding-top: 1.04rem;
	border-top: 1px solid rgba(18, 54, 109, 0.13);
	text-align: center;
}

.testimonials .testimonials-trust-line {
	margin: 0;
	font-size: 0.79rem;
	font-weight: 620;
	letter-spacing: 0.013em;
	text-transform: uppercase;
	color: #556983;
}

.testimonials .company-logos {
	margin-top: 0.76rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.72rem 1.22rem;
}

.testimonials .company-logo-item {
	min-height: 0;
	border: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.88rem;
	font-weight: 660;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: rgba(38, 51, 70, 0.47);
	opacity: 0.74;
	transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
	outline: none;
	cursor: default;
}

.testimonials .company-logo-item:hover,
.testimonials .company-logo-item:focus {
	transform: translateY(-1px) scale(1.02);
	opacity: 1;
	color: #2e5f96;
	text-shadow: 0 6px 12px rgba(18, 54, 109, 0.14);
}

.testimonials .testimonials-cta-wrap {
	margin-top: 1.12rem;
	padding-top: 1.04rem;
	border-top: 1px solid rgba(18, 54, 109, 0.13);
}

.testimonials .testimonials-cta-panel {
	max-width: 620px;
	margin: 0 auto;
	display: grid;
	gap: 0.24rem;
	justify-items: center;
	text-align: center;
}

.testimonials .testimonials-cta-title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 670;
	color: #122948;
}

.testimonials .testimonials-cta-text {
	margin: 0;
	max-width: 56ch;
	font-size: 0.9rem;
	line-height: 1.56;
	color: #53667f;
}

.testimonials .testimonials-cta {
	margin-top: 0.34rem;
	min-height: 2.7rem;
	padding: 0.62rem 1.08rem;
	border-radius: 0.72rem;
	border: 1px solid rgba(18, 54, 109, 0.2);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
	box-shadow: 0 12px 22px rgba(18, 54, 109, 0.09);
	font-size: 0.88rem;
	font-weight: 650;
	letter-spacing: 0.004em;
	color: #163f73;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonials .testimonials-cta:hover,
.testimonials .testimonials-cta:focus {
	transform: translateY(-2px);
	border-color: rgba(18, 54, 109, 0.28);
	box-shadow: 0 16px 26px rgba(18, 54, 109, 0.12);
}

.testimonials.is-anim-ready .testimonials-title,
.testimonials.is-anim-ready .testimonials-intro,
.testimonials.is-anim-ready .testimonial-photo,
.testimonials.is-anim-ready .testimonial-photo-placeholder,
.testimonials.is-anim-ready .testimonial-meta,
.testimonials.is-anim-ready .testimonial-quote,
.testimonials.is-anim-ready .testimonial-result,
.testimonials.is-anim-ready .testimonial-chip,
.testimonials.is-anim-ready .testimonials-logos-wrap,
.testimonials.is-anim-ready .company-logo-item,
.testimonials.is-anim-ready .testimonials-cta-wrap {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(2px);
	transition: opacity 0.36s ease, transform 0.36s ease, filter 0.36s ease;
}

.testimonials.is-anim-ready .testimonials-title {
	transition-delay: 0.06s;
}

.testimonials.is-anim-ready .testimonials-intro {
	transition-delay: 0.14s;
}

.testimonials.is-anim-ready .testimonial-photo,
.testimonials.is-anim-ready .testimonial-photo-placeholder {
	transition-delay: 0.24s;
}

.testimonials.is-anim-ready .testimonial-meta {
	transition-delay: 0.32s;
}

.testimonials.is-anim-ready .testimonial-quote {
	transition-delay: 0.42s;
}

.testimonials.is-anim-ready .testimonial-result {
	transition-delay: 0.5s;
}

.testimonials.is-anim-ready .testimonial-chip:nth-child(1) { transition-delay: 0.58s; }
.testimonials.is-anim-ready .testimonial-chip:nth-child(2) { transition-delay: 0.64s; }
.testimonials.is-anim-ready .testimonial-chip:nth-child(3) { transition-delay: 0.7s; }

.testimonials.is-anim-ready .testimonials-logos-wrap {
	transition-delay: 0.78s;
}

.testimonials.is-anim-ready .company-logo-item:nth-child(1) { transition-delay: 0.84s; }
.testimonials.is-anim-ready .company-logo-item:nth-child(2) { transition-delay: 0.88s; }
.testimonials.is-anim-ready .company-logo-item:nth-child(3) { transition-delay: 0.92s; }
.testimonials.is-anim-ready .company-logo-item:nth-child(4) { transition-delay: 0.96s; }
.testimonials.is-anim-ready .company-logo-item:nth-child(5) { transition-delay: 1s; }
.testimonials.is-anim-ready .company-logo-item:nth-child(6) { transition-delay: 1.04s; }

.testimonials.is-anim-ready .testimonials-cta-wrap {
	transition-delay: 1.12s;
}

.testimonials.is-anim-ready.is-revealed .testimonials-title,
.testimonials.is-anim-ready.is-revealed .testimonials-intro,
.testimonials.is-anim-ready.is-revealed .testimonial-photo,
.testimonials.is-anim-ready.is-revealed .testimonial-photo-placeholder,
.testimonials.is-anim-ready.is-revealed .testimonial-meta,
.testimonials.is-anim-ready.is-revealed .testimonial-quote,
.testimonials.is-anim-ready.is-revealed .testimonial-result,
.testimonials.is-anim-ready.is-revealed .testimonial-chip,
.testimonials.is-anim-ready.is-revealed .testimonials-logos-wrap,
.testimonials.is-anim-ready.is-revealed .company-logo-item,
.testimonials.is-anim-ready.is-revealed .testimonials-cta-wrap {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.pricing .pricing-evolution {
	position: relative;
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	justify-content: center;
	align-items: center;
	gap: 0.52rem;
	margin: -0.1rem 0 0.92rem;
	padding: 0.22rem 0.5rem;
}

.pricing .pricing-evolution::before {
	content: "";
	position: absolute;
	left: 8%;
	right: 8%;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, rgba(18, 54, 109, 0.08), rgba(18, 54, 109, 0.22), rgba(18, 54, 109, 0.08));
	transform: translateY(-50%);
	pointer-events: none;
	opacity: 0.7;
}

.pricing .pricing-evolution-step,
.pricing .pricing-evolution-arrow {
	position: relative;
	z-index: 1;
}

.pricing .pricing-evolution-step {
	min-height: 1.44rem;
	padding: 0 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: rgba(255, 255, 255, 0.86);
	font-size: 0.7rem;
	font-weight: 680;
	letter-spacing: 0.012em;
	text-transform: uppercase;
	color: #415972;
}

.pricing .pricing-evolution-step--professional {
	border-color: rgba(28, 75, 143, 0.3);
	color: #1f4d92;
	background: rgba(241, 247, 255, 0.93);
}

.pricing .pricing-evolution-arrow {
	color: rgba(18, 54, 109, 0.52);
	font-size: 0.66rem;
	padding-top: 0.02rem;
}

.pricing .pricing-grid {
	position: relative;
	align-items: stretch;
	padding-top: 0.18rem;
	gap: 0.94rem 0;
}

.pricing .pricing-grid::before {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	top: 54%;
	height: 1px;
	background: linear-gradient(90deg, rgba(18, 54, 109, 0.07), rgba(18, 54, 109, 0.18), rgba(18, 54, 109, 0.07));
	pointer-events: none;
	opacity: 0.62;
}

.pricing .pricing-card {
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.14);
	border-radius: 1.02rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.93));
	padding: 1.14rem 1.1rem 1.08rem;
	box-shadow: 0 14px 28px rgba(17, 36, 61, 0.07);
	display: flex;
	flex-direction: column;
	gap: 0.94rem;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pricing .pricing-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(255, 255, 255, 0.86);
	pointer-events: none;
}

.pricing .pricing-card-head {
	display: grid;
	gap: 0.52rem;
}

.pricing .pricing-card-name {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.2;
	color: #122948;
	font-weight: 680;
}

.pricing .pricing-card-subtitle {
	margin: 0;
	font-size: 0.87rem;
	line-height: 1.54;
	color: #556983;
}

.pricing .pricing-card-divider {
	height: 1px;
	background: linear-gradient(90deg, rgba(18, 54, 109, 0.07), rgba(18, 54, 109, 0.19), rgba(18, 54, 109, 0.07));
	margin: 0.08rem 0 0.04rem;
}

.pricing .pricing-card-ideal {
	margin: 0;
	display: grid;
	gap: 0.16rem;
}

.pricing .pricing-card-ideal-label {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.012em;
	text-transform: uppercase;
	color: #2f5f95;
}

.pricing .pricing-card-ideal-text {
	font-size: 0.81rem;
	line-height: 1.5;
	color: #4d627b;
}

.pricing .pricing-feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.64rem;
}

.pricing .pricing-feature-item {
	display: grid;
	grid-template-columns: 1.72rem 1fr;
	align-items: start;
	gap: 0.52rem;
	transition: transform 0.2s ease;
}

.pricing .pricing-feature-icon {
	width: 1.72rem;
	height: 1.72rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(238, 245, 253, 0.93));
	color: #224f8d;
	font-size: 0.76rem;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pricing .pricing-feature-text {
	font-size: 0.86rem;
	line-height: 1.55;
	color: #556982;
	transition: color 0.2s ease;
}

.pricing .pricing-feature-item:hover,
.pricing .pricing-feature-item:focus-within {
	transform: translateX(4px);
}

.pricing .pricing-feature-item:hover .pricing-feature-icon,
.pricing .pricing-feature-item:focus-within .pricing-feature-icon {
	background: linear-gradient(180deg, rgba(246, 251, 255, 0.99), rgba(225, 239, 255, 0.94));
	border-color: rgba(28, 75, 143, 0.28);
	transform: translateY(-1px);
}

.pricing .pricing-feature-item:hover .pricing-feature-text,
.pricing .pricing-feature-item:focus-within .pricing-feature-text {
	color: #3f5772;
}

.pricing .pricing-card-cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.68rem;
	padding: 0.62rem 0.98rem;
	border-radius: 0.68rem;
	border: 1px solid rgba(18, 54, 109, 0.18);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 247, 255, 0.93));
	font-size: 0.88rem;
	font-weight: 630;
	color: #1c3f6d;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.pricing .pricing-card:hover,
.pricing .pricing-card:focus-within {
	transform: translateY(-6px);
	border-color: rgba(18, 54, 109, 0.21);
	box-shadow: 0 20px 36px rgba(17, 36, 61, 0.12);
}

.pricing .pricing-card:hover .pricing-card-cta,
.pricing .pricing-card:focus-within .pricing-card-cta {
	border-color: rgba(28, 75, 143, 0.26);
	box-shadow: 0 10px 18px rgba(18, 54, 109, 0.11);
	color: #18437a;
}

.pricing .pricing-card.is-recommended {
	border-color: rgba(28, 75, 143, 0.36);
	box-shadow: 0 18px 32px rgba(18, 54, 109, 0.14);
	transform: translateY(-8px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 248, 255, 0.95));
}

.pricing .pricing-card.is-recommended::before {
	content: "";
	position: absolute;
	inset: 18% -10% 6%;
	border-radius: 999px;
	background: radial-gradient(68% 68% at 50% 50%, rgba(46, 102, 196, 0.09), rgba(46, 102, 196, 0));
	opacity: 0.95;
	z-index: -1;
	pointer-events: none;
	transition: opacity 0.24s ease;
}

.pricing .pricing-card.is-recommended:hover,
.pricing .pricing-card.is-recommended:focus-within {
	transform: translateY(-10px);
	box-shadow: 0 24px 40px rgba(18, 54, 109, 0.16);
}

.pricing .pricing-card.is-recommended:hover::before,
.pricing .pricing-card.is-recommended:focus-within::before {
	opacity: 1;
}

.pricing .pricing-footer {
	margin-top: 1.16rem;
	border: 1px solid rgba(18, 54, 109, 0.13);
	border-radius: 0.92rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.92));
	padding: 0.92rem 1rem;
	box-shadow: 0 12px 24px rgba(17, 36, 61, 0.06);
}

.pricing .pricing-footer-badge {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	font-size: 0.74rem;
	font-weight: 660;
	letter-spacing: 0.01em;
	color: #315f95;
}

.pricing .pricing-footer-badge i {
	font-size: 0.8rem;
}

.pricing .pricing-footer-title {
	margin: 0.44rem 0 0;
	font-size: 0.99rem;
	line-height: 1.3;
	color: #142a49;
	font-weight: 670;
}

.pricing .pricing-footer-intro {
	display: none;
}

.pricing .pricing-footer-list {
	margin: 0.64rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.44rem 0.56rem;
}

.pricing .pricing-footer-item {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	min-height: 1.6rem;
	font-size: 0.78rem;
	line-height: 1.35;
	color: #50647d;
}

.pricing .pricing-footer-icon {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(238, 245, 253, 0.93));
	color: #26528f;
	font-size: 0.72rem;
}

.pricing .pricing-cta-wrap {
	margin-top: 1.08rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(18, 54, 109, 0.12);
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 0.3rem;
}

.pricing .pricing-cta-lead {
	margin: 0;
	max-width: 62ch;
	font-size: 0.9rem;
	line-height: 1.56;
	color: #53667f;
}

.pricing .pricing-main-cta {
	margin-top: 0.26rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.76rem;
	padding: 0.64rem 1.18rem;
	border-radius: 0.72rem;
	border: 1px solid rgba(18, 54, 109, 0.22);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.94));
	box-shadow: 0 12px 22px rgba(18, 54, 109, 0.09);
	font-size: 0.89rem;
	font-weight: 650;
	color: #173f72;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing .pricing-main-cta:hover,
.pricing .pricing-main-cta:focus {
	transform: translateY(-2px);
	border-color: rgba(18, 54, 109, 0.3);
	box-shadow: 0 16px 26px rgba(18, 54, 109, 0.12);
}

.pricing.is-anim-ready .pricing-title,
.pricing.is-anim-ready .pricing-intro,
.pricing.is-anim-ready .pricing-evolution,
.pricing.is-anim-ready .pricing-grid > [class*="col-"],
.pricing.is-anim-ready .pricing-footer,
.pricing.is-anim-ready .pricing-cta-wrap {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(2px);
	transition: opacity 0.36s ease, transform 0.36s ease, filter 0.36s ease;
}

.pricing.is-anim-ready .pricing-title {
	transition-delay: 0.06s;
}

.pricing.is-anim-ready .pricing-intro {
	transition-delay: 0.14s;
}

.pricing.is-anim-ready .pricing-evolution {
	transition-delay: 0.22s;
}

.pricing.is-anim-ready .pricing-grid > [class*="col-"]:nth-child(1) {
	transition-delay: 0.3s;
}

.pricing.is-anim-ready .pricing-grid > [class*="col-"]:nth-child(2) {
	transition-delay: 0.4s;
}

.pricing.is-anim-ready .pricing-grid > [class*="col-"]:nth-child(3) {
	transition-delay: 0.5s;
}

.pricing.is-anim-ready .pricing-footer {
	transition-delay: 0.62s;
}

.pricing.is-anim-ready .pricing-cta-wrap {
	transition-delay: 0.72s;
}

.pricing.is-anim-ready.is-revealed .pricing-title,
.pricing.is-anim-ready.is-revealed .pricing-intro,
.pricing.is-anim-ready.is-revealed .pricing-evolution,
.pricing.is-anim-ready.is-revealed .pricing-grid > [class*="col-"],
.pricing.is-anim-ready.is-revealed .pricing-footer,
.pricing.is-anim-ready.is-revealed .pricing-cta-wrap {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.faq .faq-header {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
	margin-bottom: 1.6rem;
}

.faq .faq-support-badge {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.44rem;
	min-height: 1.42rem;
	padding: 0 0.5rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: rgba(255, 255, 255, 0.8);
	font-size: 0.7rem;
	font-weight: 620;
	letter-spacing: 0.01em;
	color: #48627f;
}

.faq .faq-support-badge span {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.015em;
	text-transform: uppercase;
	color: #2c5d94;
}

.faq .faq-title {
	margin-top: 0.86rem;
}

.faq .faq-intro {
	margin-top: 0.8rem;
	max-width: 64ch;
	margin-inline: auto;
	color: #53667f;
}

.faq .faq-surface {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 1.12rem 1.08rem;
	border: 1px solid rgba(18, 54, 109, 0.11);
	border-radius: 1.08rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.92));
	box-shadow: 0 18px 32px rgba(17, 36, 61, 0.07);
	overflow: hidden;
	isolation: isolate;
}

.faq .faq-surface::before {
	content: "";
	position: absolute;
	inset: 8% 18% 18%;
	border-radius: 999px;
	background: radial-gradient(66% 66% at 50% 50%, rgba(46, 102, 196, 0.07), rgba(46, 102, 196, 0));
	opacity: 0.9;
	pointer-events: none;
	z-index: -1;
}

.faq .faq-accordion {
	display: grid;
	gap: 0.72rem;
	position: relative;
	z-index: 1;
}

.faq .faq-item {
	position: relative;
	border: 1px solid rgba(18, 54, 109, 0.14);
	border-radius: 0.92rem;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 10px 18px rgba(17, 36, 61, 0.055);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.faq .faq-item::before {
	content: "";
	position: absolute;
	top: 0.8rem;
	bottom: 0.8rem;
	left: 0;
	width: 2px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(28, 75, 143, 0.82), rgba(28, 75, 143, 0.25));
	opacity: 0;
	transform: scaleY(0.6);
	transform-origin: center;
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}

.faq .faq-item:hover,
.faq .faq-item:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(17, 36, 61, 0.08);
	border-color: rgba(18, 54, 109, 0.2);
}

.faq .faq-question {
	margin: 0;
}

.faq .faq-trigger {
	padding: 1.06rem 1.12rem;
	font-size: 0.98rem;
	font-weight: 620;
	line-height: 1.45;
	color: #1d324f;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: none;
	gap: 0.82rem;
	border-radius: 0;
	transition: color 0.2s ease, background 0.2s ease;
}

.faq .faq-trigger::after {
	width: 0.92rem;
	height: 0.92rem;
	background-size: 0.92rem;
	opacity: 0.58;
	transition: transform 0.24s ease, opacity 0.2s ease, filter 0.2s ease;
}

.faq .faq-trigger:hover,
.faq .faq-item:hover .faq-trigger,
.faq .faq-item:focus-within .faq-trigger {
	color: #153b6c;
}

.faq .faq-trigger:not(.collapsed) {
	color: #164179;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 255, 0.9));
	box-shadow: none;
}

.faq .faq-trigger:not(.collapsed)::after {
	opacity: 0.95;
	filter: hue-rotate(8deg) saturate(1.35);
	transform: rotate(180deg);
}

.faq .faq-trigger:focus {
	box-shadow: none;
	border-color: transparent;
}

.faq .faq-answer-wrap {
	transition: height 0.24s ease;
	background: transparent;
}

.faq .faq-answer {
	position: relative;
	padding: 0.2rem 1.12rem 1rem 1.28rem;
	font-size: 0.91rem;
	line-height: 1.66;
	color: #52657f;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.faq .faq-answer::before {
	content: "";
	position: absolute;
	left: 0.76rem;
	top: 0.24rem;
	bottom: 1.02rem;
	width: 2px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(28, 75, 143, 0.62), rgba(28, 75, 143, 0.2));
	opacity: 0;
	transform: scaleY(0.7);
	transform-origin: top;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.faq .faq-answer p {
	margin: 0;
}

.faq .faq-answer-wrap.show .faq-answer,
.faq .faq-answer-wrap.collapsing .faq-answer {
	opacity: 1;
	transform: translateY(0);
}

.faq .faq-answer-wrap.show .faq-answer::before,
.faq .faq-answer-wrap.collapsing .faq-answer::before {
	opacity: 1;
	transform: scaleY(1);
}

.faq .faq-item.is-open {
	border-color: rgba(28, 75, 143, 0.28);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(240, 248, 255, 0.93));
	box-shadow: 0 16px 26px rgba(18, 54, 109, 0.1);
}

.faq .faq-item.is-open::before {
	opacity: 1;
	transform: scaleY(1);
}

.faq .faq-cta-wrap {
	margin-top: 1.16rem;
	padding-top: 1.04rem;
	border-top: 1px solid rgba(18, 54, 109, 0.12);
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 0.28rem;
	position: relative;
	z-index: 1;
}

.faq .faq-cta-title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 670;
	color: #132b4a;
}

.faq .faq-cta-text {
	margin: 0;
	max-width: 58ch;
	font-size: 0.89rem;
	line-height: 1.58;
	color: #53677f;
}

.faq .faq-cta {
	margin-top: 0.32rem;
	min-height: 2.72rem;
	padding: 0.62rem 1.08rem;
	border: 1px solid rgba(18, 54, 109, 0.22);
	border-radius: 0.72rem;
	font-size: 0.89rem;
	font-weight: 640;
	color: #173f72;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.94));
	box-shadow: 0 12px 22px rgba(18, 54, 109, 0.09);
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq .faq-cta:hover,
.faq .faq-cta:focus {
	transform: translateY(-2px);
	border-color: rgba(18, 54, 109, 0.3);
	box-shadow: 0 16px 26px rgba(18, 54, 109, 0.12);
	color: #173f72;
}

.faq.is-anim-ready .faq-support-badge,
.faq.is-anim-ready .faq-title,
.faq.is-anim-ready .faq-intro,
.faq.is-anim-ready .faq-surface,
.faq.is-anim-ready .faq-item,
.faq.is-anim-ready .faq-cta-wrap {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(2px);
	transition: opacity 0.36s ease, transform 0.36s ease, filter 0.36s ease;
}

.faq.is-anim-ready .faq-support-badge {
	transition-delay: 0.06s;
}

.faq.is-anim-ready .faq-title {
	transition-delay: 0.12s;
}

.faq.is-anim-ready .faq-intro {
	transition-delay: 0.2s;
}

.faq.is-anim-ready .faq-surface {
	transition-delay: 0.28s;
}

.faq.is-anim-ready .faq-item:nth-child(1) { transition-delay: 0.34s; }
.faq.is-anim-ready .faq-item:nth-child(2) { transition-delay: 0.4s; }
.faq.is-anim-ready .faq-item:nth-child(3) { transition-delay: 0.46s; }
.faq.is-anim-ready .faq-item:nth-child(4) { transition-delay: 0.52s; }
.faq.is-anim-ready .faq-item:nth-child(5) { transition-delay: 0.58s; }
.faq.is-anim-ready .faq-item:nth-child(6) { transition-delay: 0.64s; }
.faq.is-anim-ready .faq-item:nth-child(7) { transition-delay: 0.7s; }
.faq.is-anim-ready .faq-item:nth-child(8) { transition-delay: 0.76s; }

.faq.is-anim-ready .faq-cta-wrap {
	transition-delay: 0.84s;
}

.faq.is-anim-ready.is-revealed .faq-support-badge,
.faq.is-anim-ready.is-revealed .faq-title,
.faq.is-anim-ready.is-revealed .faq-intro,
.faq.is-anim-ready.is-revealed .faq-surface,
.faq.is-anim-ready.is-revealed .faq-item,
.faq.is-anim-ready.is-revealed .faq-cta-wrap {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.final-cta {
	position: relative;
	padding: 1.3rem 0 6.25rem;
	background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
	overflow: visible;
	--final-float-a: 0px;
	--final-float-b: 0px;
	--final-float-c: 0px;
}

.final-cta .final-cta-container {
	max-width: 1120px;
}

.final-cta .final-cta-surface {
	position: relative;
	padding: clamp(2.2rem, 4.4vw, 3.35rem) clamp(1.3rem, 3.9vw, 2.85rem);
	border-radius: 1.28rem;
	border: 1px solid rgba(18, 54, 109, 0.13);
	background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(243, 248, 255, 0.95));
	box-shadow:
		0 36px 66px rgba(18, 54, 109, 0.12),
		0 16px 28px rgba(17, 36, 61, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
	overflow: hidden;
	isolation: isolate;
}

.final-cta .final-cta-glow {
	position: absolute;
	left: 50%;
	top: 0.9rem;
	width: min(620px, 80%);
	height: 220px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: radial-gradient(72% 72% at 50% 50%, rgba(46, 102, 196, 0.1), rgba(46, 102, 196, 0));
	opacity: 0.86;
	pointer-events: none;
	z-index: -1;
}

.final-cta .final-cta-header {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin-inline: auto;
	margin-bottom: 1.62rem;
	text-align: center;
}

.final-cta .final-cta-title {
	margin: 0;
	font-size: clamp(1.8rem, 2.72vw, 2.58rem);
	line-height: 1.14;
	letter-spacing: -0.012em;
	font-weight: 690;
	color: #102441;
	text-wrap: balance;
}

.final-cta .final-cta-subtitle {
	margin: 1.02rem auto 0;
	max-width: 600px;
	font-size: clamp(0.98rem, 1.28vw, 1.08rem);
	line-height: 1.66;
	color: #4f627a;
	text-wrap: pretty;
}

.final-cta .final-cta-assurance {
	margin: 0;
	font-size: 0.79rem;
	line-height: 1.4;
	font-weight: 620;
	letter-spacing: 0.012em;
	text-transform: uppercase;
	color: #596d86;
	text-align: center;
	position: relative;
	z-index: 2;
}

.final-cta .final-cta-button-group {
	margin-top: 1.26rem;
	display: inline-flex;
	align-items: center;
	gap: 0.72rem;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.final-cta .final-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.88rem;
	padding: 0.72rem 1.12rem;
	border-radius: 0.72rem;
	font-size: 0.92rem;
	font-weight: 640;
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.final-cta .final-cta-btn.is-primary {
	border: 1px solid rgba(28, 75, 143, 0.95);
	background-color: #1c4b8f;
	color: #fff;
	box-shadow: 0 14px 24px rgba(28, 75, 143, 0.22);
}

.final-cta .final-cta-btn.is-primary:hover,
.final-cta .final-cta-btn.is-primary:focus {
	transform: translateY(-3px);
	border-color: #163f79;
	background-color: #163f79;
	box-shadow: 0 18px 30px rgba(28, 75, 143, 0.28);
	color: #fff;
}

.final-cta .final-cta-btn.is-secondary {
	border: 1px solid rgba(18, 54, 109, 0.22);
	background: rgba(255, 255, 255, 0.88);
	color: #15345f;
	box-shadow: 0 10px 18px rgba(17, 36, 61, 0.08);
}

.final-cta .final-cta-btn.is-secondary:hover,
.final-cta .final-cta-btn.is-secondary:focus {
	transform: translateY(-2px);
	border-color: rgba(18, 54, 109, 0.3);
	background: rgba(235, 245, 255, 0.95);
	color: #163f73;
}

.final-cta .final-cta-floating {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.final-cta .final-cta-float-card {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	min-height: 1.6rem;
	padding: 0.22rem 0.5rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	background: rgba(255, 255, 255, 0.74);
	font-size: 0.68rem;
	font-weight: 620;
	letter-spacing: 0.006em;
	color: #4d627b;
	box-shadow: 0 8px 14px rgba(17, 36, 61, 0.08);
	opacity: 0.62;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: opacity 0.2s ease;
}

.final-cta .final-cta-float-card i {
	font-size: 0.74rem;
	color: #25528f;
}

.final-cta .final-cta-float-card--a {
	left: 1.4rem;
	top: 2.2rem;
	transform: translateY(var(--final-float-a));
}

.final-cta .final-cta-float-card--b {
	right: 1.52rem;
	top: 2.8rem;
	transform: translateY(var(--final-float-b));
}

.final-cta .final-cta-float-card--c {
	right: 2.35rem;
	bottom: 2.2rem;
	transform: translateY(var(--final-float-c));
}

.final-cta.is-anim-ready .final-cta-glow,
.final-cta.is-anim-ready .final-cta-title,
.final-cta.is-anim-ready .final-cta-subtitle,
.final-cta.is-anim-ready .final-cta-assurance,
.final-cta.is-anim-ready .final-cta-button-group,
.final-cta.is-anim-ready .final-cta-float-card {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(2px);
	transition: opacity 0.36s ease, transform 0.36s ease, filter 0.36s ease;
}

.final-cta.is-anim-ready .final-cta-glow {
	transition-delay: 0.06s;
	transform: translateY(0);
}

.final-cta.is-anim-ready .final-cta-title {
	transition-delay: 0.16s;
}

.final-cta.is-anim-ready .final-cta-subtitle {
	transition-delay: 0.24s;
}

.final-cta.is-anim-ready .final-cta-assurance,
.final-cta.is-anim-ready .final-cta-button-group {
	transition-delay: 0.34s;
}

.final-cta.is-anim-ready .final-cta-float-card--a { transition-delay: 0.44s; }
.final-cta.is-anim-ready .final-cta-float-card--b { transition-delay: 0.5s; }
.final-cta.is-anim-ready .final-cta-float-card--c { transition-delay: 0.56s; }

.final-cta.is-anim-ready.is-revealed .final-cta-glow,
.final-cta.is-anim-ready.is-revealed .final-cta-title,
.final-cta.is-anim-ready.is-revealed .final-cta-subtitle,
.final-cta.is-anim-ready.is-revealed .final-cta-assurance,
.final-cta.is-anim-ready.is-revealed .final-cta-button-group,
.final-cta.is-anim-ready.is-revealed .final-cta-float-card {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.site-footer {
	position: relative;
	border-top: 0;
	background-color: #f8fafc;
	padding: 2.2rem 0 1.24rem;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, rgba(18, 54, 109, 0.02), rgba(18, 54, 109, 0.2), rgba(18, 54, 109, 0.02));
	opacity: 0.7;
	pointer-events: none;
}

.site-footer .site-footer-top {
	margin-bottom: 1.18rem;
	gap: 1.1rem 0;
}

.site-footer .site-footer-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-footer .site-footer-logo {
	height: 38px;
	width: auto;
	display: block;
}

.site-footer .site-footer-description {
	margin-top: 0.88rem;
	max-width: 42ch;
	font-size: 0.91rem;
	line-height: 1.62;
	color: #546982;
}

.site-footer .site-footer-column-title {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.35;
	font-weight: 670;
	color: #132b4a;
}

.site-footer .site-footer-link-list {
	margin: 0.74rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.48rem;
}

.site-footer .site-footer-link-item {
	margin: 0;
}

.site-footer .site-footer-nav-stack {
	display: grid;
	gap: 1.22rem;
}

.site-footer .site-footer-link {
	position: relative;
	display: inline-flex;
	font-size: 0.88rem;
	line-height: 1.48;
	color: #5a6d86;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer .site-footer-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(28, 75, 143, 0.4), rgba(28, 75, 143, 0.16));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
	color: #21508f;
	transform: translateX(3px);
}

.site-footer .site-footer-link:hover::after,
.site-footer .site-footer-link:focus::after {
	transform: scaleX(1);
}

.site-footer .site-footer-social {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.42rem;
}

.site-footer .site-footer-social-link {
	width: 2.14rem;
	height: 2.14rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(18, 54, 109, 0.16);
	font-size: 0.95rem;
	line-height: 1;
	color: #5a6d86;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.85);
	transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-footer .site-footer-social-link:hover,
.site-footer .site-footer-social-link:focus {
	transform: translateY(-1px);
	border-color: rgba(28, 75, 143, 0.3);
	color: #1f4f8f;
	background: #fff;
	box-shadow: 0 10px 16px rgba(28, 75, 143, 0.14);
}

.site-footer .site-footer-bottom {
	border-top: 0;
	padding-top: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
}

.site-footer .site-footer-bottom-text {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.46;
	color: #5f7189;
}

.site-footer .site-footer-credit {
	opacity: 0.72;
}

.site-navbar .site-navbar-link.is-active,
.site-navbar .site-login-link.is-active {
	color: #173f72;
	background: rgba(235, 245, 255, 0.88);
	box-shadow: inset 0 0 0 1px rgba(28, 75, 143, 0.22);
}

body.has-contact-modal-open {
	overflow: hidden;
}

.contact-modal {
	position: fixed;
	inset: 0;
	z-index: 1400;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.9rem, 2vw, 1.4rem);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
}

.contact-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.contact-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 29, 47, 0.28);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.contact-modal-panel {
	position: relative;
	width: min(1040px, 100%);
	max-height: min(88vh, 820px);
	overflow: auto;
	border-radius: 1.15rem;
	border: 1px solid rgba(18, 54, 109, 0.15);
	background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(243, 248, 255, 0.95));
	box-shadow: 0 34px 64px rgba(17, 36, 61, 0.24), 0 10px 26px rgba(17, 36, 61, 0.12);
	transform: scale(0.95);
	transition: transform 0.28s ease;
	isolation: isolate;
}

.contact-modal.is-open .contact-modal-panel {
	transform: scale(1);
}

.contact-modal-close {
	position: absolute;
	right: 0.74rem;
	top: 0.72rem;
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(18, 54, 109, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: #415a75;
	font-size: 0.84rem;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
	z-index: 3;
}

.contact-modal-close:hover,
.contact-modal-close:focus {
	color: #173f72;
	border-color: rgba(18, 54, 109, 0.3);
	background: #fff;
}

.contact-modal-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
	min-height: min(84vh, 720px);
	position: relative;
}

.contact-modal-aside {
	padding: clamp(1.2rem, 2.5vw, 2rem);
	border-right: 1px solid rgba(18, 54, 109, 0.11);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 248, 255, 0.8));
	display: grid;
	align-content: start;
	gap: 0.86rem;
}

.contact-modal-title {
	margin: 0;
	font-size: clamp(1.36rem, 2vw, 1.72rem);
	line-height: 1.2;
	color: #122948;
	font-weight: 680;
}

.contact-modal-description {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.62;
	color: #546982;
}

.contact-modal-benefits {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.44rem;
}

.contact-modal-benefits li {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	font-size: 0.86rem;
	line-height: 1.45;
	color: #435c78;
}

.contact-modal-benefits i {
	color: #24528f;
	font-size: 0.8rem;
}

.contact-modal-whatsapp {
	margin-top: 0.22rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.46rem;
	min-height: 2.72rem;
	padding: 0.62rem 0.94rem;
	border-radius: 0.72rem;
	border: 1px solid rgba(18, 54, 109, 0.2);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 245, 255, 0.95));
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 650;
	color: #184072;
	box-shadow: 0 12px 20px rgba(18, 54, 109, 0.1);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal-whatsapp i {
	font-size: 1rem;
}

.contact-modal-whatsapp:hover,
.contact-modal-whatsapp:focus {
	transform: translateY(-2px);
	border-color: rgba(18, 54, 109, 0.3);
	box-shadow: 0 16px 24px rgba(18, 54, 109, 0.14);
	color: #184072;
}

.contact-modal-response-time {
	margin: 0.1rem 0 0;
	font-size: 0.79rem;
	line-height: 1.5;
	color: #63778f;
}

.contact-modal-form-wrap {
	padding: clamp(1.2rem, 2.5vw, 2rem);
	display: grid;
	align-content: start;
	gap: 0.82rem;
}

.contact-modal-form-title {
	margin: 0;
	font-size: 1.24rem;
	line-height: 1.2;
	font-weight: 670;
	color: #122948;
}

.contact-modal-form-intro {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.56;
	color: #556a83;
}

.contact-modal-form {
	display: grid;
	gap: 0.72rem;
}

.contact-modal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.58rem;
}

.contact-modal-field {
	position: relative;
	display: grid;
	gap: 0.18rem;
}

.contact-modal-field input,
.contact-modal-field select,
.contact-modal-field textarea {
	width: 100%;
	min-height: 2.78rem;
	padding: 1rem 0.76rem 0.42rem;
	border: 1px solid rgba(18, 54, 109, 0.15);
	border-radius: 0.66rem;
	background: rgba(255, 255, 255, 0.94);
	font-size: 0.9rem;
	line-height: 1.42;
	color: #1c334f;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-modal-field select {
	appearance: none;
	-webkit-appearance: none;
	padding-top: 1.15rem;
	background-image: linear-gradient(45deg, transparent 50%, rgba(18, 54, 109, 0.55) 50%), linear-gradient(135deg, rgba(18, 54, 109, 0.55) 50%, transparent 50%);
	background-position: calc(100% - 16px) calc(50% + 2px), calc(100% - 11px) calc(50% + 2px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.contact-modal-field textarea {
	min-height: 110px;
	resize: vertical;
	padding-top: 1.08rem;
}

.contact-modal-field span {
	position: absolute;
	left: 0.76rem;
	top: 0.9rem;
	font-size: 0.83rem;
	line-height: 1;
	color: #657890;
	pointer-events: none;
	transition: transform 0.18s ease, font-size 0.18s ease, color 0.18s ease, top 0.18s ease;
	background: transparent;
}

.contact-modal-field input:focus,
.contact-modal-field select:focus,
.contact-modal-field textarea:focus {
	border-color: rgba(28, 75, 143, 0.36);
	box-shadow: 0 0 0 3px rgba(28, 75, 143, 0.08);
	background: #fff;
}

.contact-modal-field input:focus + span,
.contact-modal-field input:not(:placeholder-shown) + span,
.contact-modal-field textarea:focus + span,
.contact-modal-field textarea:not(:placeholder-shown) + span,
.contact-modal-field select:focus + span,
.contact-modal-field.has-value span {
	top: 0.42rem;
	font-size: 0.67rem;
	color: #2e5f95;
}

.contact-modal-field input.is-invalid,
.contact-modal-field textarea.is-invalid,
.contact-modal-field select.is-invalid {
	border-color: rgba(186, 46, 46, 0.45);
	box-shadow: 0 0 0 3px rgba(186, 46, 46, 0.08);
}

.contact-modal-field-error {
	min-height: 0.9rem;
	font-size: 0.72rem;
	line-height: 1.35;
	color: #a63b3b;
	padding-left: 0.08rem;
}

.contact-modal-field--full {
	grid-column: 1 / -1;
}

.contact-modal-submit-error {
	margin: 0;
	min-height: 1rem;
	font-size: 0.77rem;
	line-height: 1.4;
	color: #a63b3b;
}

.contact-modal-submit {
	min-height: 2.76rem;
	padding: 0.64rem 1rem;
	border-radius: 0.7rem;
	border: 1px solid rgba(28, 75, 143, 0.92);
	background: #1c4b8f;
	color: #fff;
	font-size: 0.89rem;
	font-weight: 650;
	box-shadow: 0 12px 22px rgba(28, 75, 143, 0.24);
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal-submit:hover,
.contact-modal-submit:focus {
	transform: translateY(-2px);
	border-color: #163f79;
	background: #163f79;
	box-shadow: 0 16px 26px rgba(28, 75, 143, 0.28);
	color: #fff;
}

.contact-modal-submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.contact-modal-success {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 0.5rem;
	padding: 0.2rem 0.1rem 0;
}

.contact-modal-success i {
	font-size: 2.05rem;
	color: #1f4d92;
}

.contact-modal-success h4 {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.3;
	color: #132b4a;
}

.contact-modal-success p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.56;
	color: #566983;
}

.site-navbar:not(.is-scrolled) {
	opacity: 0.82;
}

.site-navbar.is-enter-pending:not(.is-enter-visible) {
	opacity: 0;
	transform: translateY(-8px);
}

.site-navbar.is-enter-pending.is-enter-visible {
	transform: translateY(0);
	transition: transform 0.24s ease, opacity 0.24s ease;
}

.hero {
	position: relative;
}

.hero-badge {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(18, 54, 109, 0.16);
	box-shadow: 0 8px 18px rgba(18, 54, 109, 0.08);
	letter-spacing: 0.062em;
}

.hero-title {
	font-weight: 690;
	text-wrap: balance;
	color: #0f2240;
}

.hero-subtitle {
	color: #4f627a;
}

.btn-hero-primary {
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
	box-shadow: 0 12px 24px rgba(28, 75, 143, 0.24);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
	transform: translateY(-2px);
	filter: brightness(0.95);
	box-shadow: 0 18px 30px rgba(22, 59, 111, 0.28);
}

.btn-hero-secondary {
	background-color: rgba(255, 255, 255, 0.92);
	border-color: rgba(18, 54, 109, 0.2);
	box-shadow: 0 10px 20px rgba(17, 36, 61, 0.08);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
	transform: translateY(-2px);
	background-color: #fff;
	border-color: rgba(18, 54, 109, 0.28);
	box-shadow: 0 15px 25px rgba(17, 36, 61, 0.11);
}

.hero-shot {
	border-radius: 8px;
	border: 1px solid rgba(18, 54, 109, 0.08);
	box-shadow:
		0 42px 76px rgba(18, 54, 109, 0.1),
		0 12px 24px rgba(18, 54, 109, 0.06),
		0 -1px 0 rgba(255, 255, 255, 0.72) inset;
	background: transparent;
	transform: translateY(-2px);
	overflow: visible;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero-shot::before {
	z-index: -2;
	width: 72%;
	height: 52%;
	right: -10%;
	top: 10%;
	inset: auto;
	border-radius: 999px;
	background: radial-gradient(64% 64% at 50% 50%, rgba(28, 75, 143, 0.14), rgba(28, 75, 143, 0));
	opacity: 1;
}

.hero-shot::after {
	inset: auto 12% -18px;
	height: 36px;
	background: radial-gradient(82% 100% at 50% 50%, rgba(18, 54, 109, 0.22), rgba(18, 54, 109, 0));
	opacity: 0.42;
}

.hero-shot:hover,
.hero-shot:focus-within {
	transform: translateY(-2px) scale(1.01);
	box-shadow:
		0 50px 84px rgba(18, 54, 109, 0.115),
		0 16px 30px rgba(18, 54, 109, 0.075),
		0 -1px 0 rgba(255, 255, 255, 0.75) inset;
	filter: saturate(1.02);
}

.hero-shot-inner {
	min-height: 0;
	margin: 0;
	padding: 0;
	border-radius: 8px;
	border-color: rgba(18, 54, 109, 0.12);
	background: transparent;
	position: relative;
	overflow: hidden;
}

.hero-shot-image {
	width: 100%;
	height: auto;
	min-height: 0;
	display: block;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
}

.hero-op-cards {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
}

.hero-op-card {
	position: absolute;
	width: min(220px, 38vw);
	min-width: 170px;
	padding: 0.62rem 0.68rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(18, 54, 109, 0.09);
	border-radius: 16px;
	box-shadow: 0 16px 30px rgba(18, 54, 109, 0.11);
	backdrop-filter: blur(2px);
	will-change: transform;
}

.hero-op-card--request {
	top: -16px;
	right: -22px;
	animation: hero-float-1 7.4s ease-in-out infinite alternate;
}

.hero-op-card--os {
	left: -20px;
	bottom: 16px;
	animation: hero-float-2 8.6s ease-in-out infinite alternate;
}

.hero-op-card--preventive {
	right: -30px;
	top: 48%;
	animation: hero-float-3 9.5s ease-in-out infinite alternate;
}

.hero-op-card-title {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.28;
	color: #14325d;
}

.hero-op-card-subtitle {
	margin: 0.2rem 0 0;
	font-size: 0.78rem;
	line-height: 1.34;
	color: #53667f;
}

.hero-op-card-meta {
	margin-top: 0.42rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem;
}

.hero-op-card-time {
	font-size: 0.74rem;
	font-weight: 600;
	color: #4f6078;
}

.hero-op-card-badge {
	padding: 0.15rem 0.4rem;
	border-radius: 999px;
	font-size: 0.67rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
}

.hero-op-card-badge.is-blue {
	background-color: rgba(28, 75, 143, 0.16);
	border-color: rgba(28, 75, 143, 0.2);
	color: #1b4a8d;
}

.hero-op-card-badge.is-green {
	background-color: rgba(30, 130, 92, 0.14);
	border-color: rgba(30, 130, 92, 0.2);
	color: #1d7b56;
}

.hero-op-card-badge.is-ice {
	background-color: rgba(72, 131, 212, 0.12);
	border-color: rgba(72, 131, 212, 0.2);
	color: #376da8;
}

@keyframes hero-float-1 {
	0% { transform: translateY(0); }
	100% { transform: translateY(-7px); }
}

@keyframes hero-float-2 {
	0% { transform: translateY(-2px); }
	100% { transform: translateY(5px); }
}

@keyframes hero-float-3 {
	0% { transform: translateY(3px); }
	100% { transform: translateY(-4px); }
}

.hero.is-anim-ready .hero-badge,
.hero.is-anim-ready .hero-title,
.hero.is-anim-ready .hero-subtitle,
.hero.is-anim-ready .hero-actions,
.hero.is-anim-ready .hero-shot,
.hero.is-anim-ready .hero-op-card {
	opacity: 0;
	transform: translateY(10px);
	filter: blur(2px);
	transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.hero.is-anim-ready .hero-badge { transition-delay: 0.1s; }
.hero.is-anim-ready .hero-title { transition-delay: 0.2s; }
.hero.is-anim-ready .hero-subtitle { transition-delay: 0.32s; }
.hero.is-anim-ready .hero-actions { transition-delay: 0.44s; }
.hero.is-anim-ready .hero-shot { transition-delay: 0.58s; }
.hero.is-anim-ready .hero-op-card { transition-delay: 0.7s; }

.hero.is-anim-ready.is-revealed .hero-badge,
.hero.is-anim-ready.is-revealed .hero-title,
.hero.is-anim-ready.is-revealed .hero-subtitle,
.hero.is-anim-ready.is-revealed .hero-actions,
.hero.is-anim-ready.is-revealed .hero-shot,
.hero.is-anim-ready.is-revealed .hero-op-card {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
	.hero-op-card {
		animation: none;
	}

	.hero.is-anim-ready .hero-badge,
	.hero.is-anim-ready .hero-title,
	.hero.is-anim-ready .hero-subtitle,
	.hero.is-anim-ready .hero-actions,
	.hero.is-anim-ready .hero-shot,
	.hero.is-anim-ready .hero-op-card {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}
}
