:root {
	--zf-bg: #f4f7fb;
	--zf-surface: #ffffff;
	--zf-surface-alt: #eaf0ff;
	--zf-ink: #102039;
	--zf-ink-soft: #53627b;
	--zf-accent: #2d6df6;
	--zf-accent-deep: #11347d;
	--zf-mint: #dbf5ea;
	--zf-border: rgba(16, 32, 57, 0.1);
	--zf-shadow: 0 24px 80px rgba(17, 52, 125, 0.08);
	--zf-radius: 28px;
}

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

body {
	margin: 0;
	background: radial-gradient(circle at top, #ffffff 0%, var(--zf-bg) 52%, #edf2ff 100%);
	color: var(--zf-ink);
	font-family: 'Manrope', sans-serif;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 99;
	backdrop-filter: blur(18px);
	background: rgba(244, 247, 251, 0.88);
	border-bottom: 1px solid var(--zf-border);
}

.header-inner,
.split-section,
.hero-grid,
.footer-grid {
	display: grid;
	gap: 24px;
	align-items: center;
}

.header-inner {
	grid-template-columns: auto 1fr auto;
	padding: 18px 0;
}

.site-name,
h1,
h2,
h3,
.footer-title {
	font-family: 'Space Grotesk', sans-serif;
}

.site-name {
	font-size: 1.5rem;
	font-weight: 700;
}

.brand-block {
	display: flex;
	flex-direction: column;
}

.brand-subtitle,
.eyebrow,
.service-tagline {
	color: var(--zf-ink-soft);
	font-size: 0.875rem;
}

.main-nav .menu {
	display: flex;
	gap: 24px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: linear-gradient(135deg, var(--zf-accent), #4e88ff);
	color: #fff;
	box-shadow: 0 18px 40px rgba(45, 109, 246, 0.28);
}

.button-secondary {
	background: #fff;
	border: 1px solid var(--zf-border);
}

.hero-section,
.section-block,
.page-content,
.page-hero {
	padding: 88px 0;
}

.hero-grid,
.split-section {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.page-hero h1 {
	font-size: clamp(2.75rem, 6vw, 5rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	margin: 16px 0 18px;
}

.hero-copy p,
.section-heading p,
.prose,
.feature-card p,
.testimonial-card p {
	color: var(--zf-ink-soft);
	font-size: 1.05rem;
}

.hero-panel,
.feature-card,
.stat-card,
.zf-stat-card,
.zf-service-card,
.zf-testimonial-card {
	background: var(--zf-surface);
	border: 1px solid var(--zf-border);
	border-radius: var(--zf-radius);
	box-shadow: var(--zf-shadow);
}

.hero-panel {
	padding: 28px;
	background: linear-gradient(160deg, #16366f, #102039);
	color: #fff;
}

.metric-stack {
	display: grid;
	gap: 18px;
}

.metric-stack article {
	padding: 24px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 22px;
}

.metric-stack strong,
.stat-card strong,
.zf-stat-card strong {
	display: block;
	font-size: 2rem;
	font-family: 'Space Grotesk', sans-serif;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.logo-strip {
	padding-bottom: 24px;
	text-align: center;
	color: var(--zf-ink-soft);
}

.section-heading {
	max-width: 680px;
	margin-bottom: 32px;
}

.section-heading h2 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.05;
	margin: 12px 0 14px;
}

.card-grid,
.stat-grid,
.zf-stats-grid,
.zf-service-grid,
.zf-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.feature-card,
.stat-card,
.zf-stat-card,
.zf-service-card,
.zf-testimonial-card {
	padding: 28px;
}

.feature-card-dark {
	background: linear-gradient(160deg, #102039, #16366f);
	color: #fff;
}

.feature-card-dark .eyebrow,
.feature-card-dark p,
.feature-card-dark a {
	color: rgba(255, 255, 255, 0.82);
}

.tint-block {
	background: linear-gradient(180deg, rgba(219, 245, 234, 0.55), rgba(234, 240, 255, 0.8));
}

.cta-band {
	padding-top: 0;
}

.cta-band .split-section {
	padding: 36px;
	background: linear-gradient(160deg, #102039, #16366f);
	color: #fff;
	border-radius: 32px;
}

.footer-grid {
	grid-template-columns: 1.2fr 1fr 1fr;
	padding: 48px 0;
}

.site-footer {
	border-top: 1px solid var(--zf-border);
	background: rgba(255, 255, 255, 0.7);
}

.footer-title {
	margin: 0 0 8px;
	font-size: 1.15rem;
}

.prose > *:first-child {
	margin-top: 0;
}

.stars {
	letter-spacing: 0.2em;
	color: #f4b740;
	margin-bottom: 12px;
}

@media (max-width: 980px) {
	.header-inner,
	.hero-grid,
	.split-section,
	.footer-grid,
	.card-grid,
	.stat-grid,
	.zf-stats-grid,
	.zf-service-grid,
	.zf-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.main-nav .menu {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.header-inner {
		padding: 16px 0 20px;
	}
}

@media (max-width: 640px) {
	.hero-section,
	.section-block,
	.page-content,
	.page-hero {
		padding: 72px 0;
	}

	.button,
	.hero-actions a {
		width: 100%;
	}
}
