:root {
	--bg: #f4f7fb;
	--surface: #ffffff;
	--surface-alt: #edf3fa;
	--text: #172033;
	--muted: #5f6f86;
	--line: #d6dfeb;
	--brand: #0a5bd8;
	--brand-deep: #093a8a;
	--accent: #14b8a6;
	--shadow: 0 20px 40px rgba(12, 33, 74, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", "Helvetica Neue", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(20, 184, 166, 0.16), transparent 28%),
		linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
	color: var(--text);
	line-height: 1.6;
}

a {
	color: inherit;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 18px 5vw;
	background: rgba(248, 251, 255, 0.92);
	border-bottom: 1px solid rgba(214, 223, 235, 0.75);
	backdrop-filter: blur(14px);
}

.brand {
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.nav-links a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
	color: var(--brand);
}

.hero,
.section-block,
.services,
.footer {
	padding-left: 5vw;
	padding-right: 5vw;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
	gap: 32px;
	align-items: stretch;
	padding-top: 72px;
	padding-bottom: 56px;
	overflow: hidden;
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(8px);
}

.hero::before {
	width: 340px;
	height: 340px;
	top: -90px;
	left: -110px;
	background: radial-gradient(circle, rgba(20, 184, 166, 0.18) 0%, rgba(20, 184, 166, 0) 72%);
}

.hero::after {
	width: 300px;
	height: 300px;
	right: -70px;
	bottom: -100px;
	background: radial-gradient(circle, rgba(10, 91, 216, 0.16) 0%, rgba(10, 91, 216, 0) 74%);
}

.hero-copy,
.hero-panel,
.service-card,
.timeline-item,
.policy-grid article,
.contact-card,
.highlight-strip {
	background: var(--surface);
	border: 1px solid rgba(214, 223, 235, 0.9);
	border-radius: 24px;
	box-shadow: var(--shadow);
}

.hero-copy {
	position: relative;
	padding: 40px;
	overflow: hidden;
}

.hero-copy::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(10, 91, 216, 0.03), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98));
	pointer-events: none;
}

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

.hero-panel {
	position: relative;
	padding: 40px 36px;
	background: linear-gradient(180deg, #0e3f95 0%, #0a5bd8 100%);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	gap: 24px;
	overflow: hidden;
}

.hero-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 34%),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 32%);
	pointer-events: none;
}

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

.eyebrow {
	margin: 0 0 10px;
	color: var(--brand);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-panel .eyebrow,
.hero-panel h2,
.hero-panel li,
.hero-panel p {
	color: #ffffff;
}

.hero h1,
.section-heading h2,
.highlight-strip h2 {
	margin: 0;
	line-height: 1.1;
}

.hero h1 {
	max-width: 11ch;
	font-size: clamp(2.4rem, 4vw, 4.6rem);
}

.lead {
	max-width: 62ch;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 1.06rem;
}

.lead::after {
	content: "";
	display: block;
	width: 92px;
	height: 1px;
	margin-top: 22px;
	background: linear-gradient(90deg, rgba(10, 91, 216, 0.45), rgba(10, 91, 216, 0));
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--brand);
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 12px 24px rgba(10, 91, 216, 0.18);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
	background: var(--brand-deep);
	box-shadow: 0 16px 28px rgba(10, 91, 216, 0.22);
}

.btn-secondary {
	background: transparent;
	color: var(--brand);
	border: 1px solid rgba(10, 91, 216, 0.2);
	box-shadow: none;
}

.hero-panel h2,
.service-card h3,
.timeline-item h3,
.policy-grid h3,
.contact-card h3 {
	margin-top: 0;
	margin-bottom: 10px;
}

.hero-panel h2 {
	font-size: clamp(2.2rem, 2.8vw, 3rem);
	margin-bottom: 0;
}

.service-card ul,
.highlight-strip ul,
.contact-card ul {
	margin: 0;
	padding-left: 18px;
}

.model-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	flex: 1;
}

.model-item {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.model-label {
	display: block;
	margin-bottom: 10px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.model-item p {
	margin: 0;
	font-size: 1.22rem;
	font-weight: 600;
	line-height: 1.45;
	color: #ffffff;
}

.section-block,
.services {
	padding-top: 28px;
	padding-bottom: 28px;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 24px;
}

.section-heading h2 {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.section-heading p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

.service-grid,
.policy-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.service-card,
.timeline-item,
.policy-grid article {
	padding: 26px;
}

.service-card p,
.timeline-item p,
.policy-grid p,
.contact-card p,
.highlight-strip li,
.service-card li,
.contact-card li {
	color: var(--muted);
}

.process .timeline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.timeline-item span {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--surface-alt);
	color: var(--brand);
	font-weight: 700;
}

.highlight-strip {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 24px;
	align-items: center;
	padding: 28px;
	background: linear-gradient(135deg, rgba(10, 91, 216, 0.06), rgba(20, 184, 166, 0.08));
}

.contact-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	padding: 28px;
}

.footer {
	padding-top: 32px;
	padding-bottom: 48px;
	text-align: center;
	color: var(--muted);
}

.footer p {
	margin: 0;
}

.footer p + p {
	margin-top: 8px;
}

@media (max-width: 1024px) {
	.hero,
	.highlight-strip,
	.process .timeline,
	.service-grid,
	.policy-grid,
	.contact-card {
		grid-template-columns: 1fr;
	}

	.model-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.topbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero {
		padding-top: 40px;
	}

	.hero-copy,
	.hero-panel,
	.service-card,
	.timeline-item,
	.policy-grid article,
	.contact-card,
	.highlight-strip {
		border-radius: 18px;
	}

	.hero-copy,
	.hero-panel,
	.service-card,
	.timeline-item,
	.policy-grid article,
	.contact-card,
	.highlight-strip {
		padding: 22px;
	}

	.hero h1 {
		max-width: none;
	}

	.nav-links {
		gap: 12px;
	}
}