:root {
	--blue: #235096;
	--blue-2: #1b3f78;
	--blue-3: #edf3ff;
	--yellow: #fcb040;
	--yellow-2: #d68917;
	--yellow-3: #fff4df;
	--ink: #141821;
	--muted: #687080;
	--line: #e6e9ef;
	--soft: #f7f8fb;
	--white: #fff;
	--shadow: 0 22px 70px rgba(20, 24, 33, .12);
	--radius: 24px;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, Montserrat, Arial, sans-serif;
	color: var(--ink);
	background: linear-gradient(180deg, #fff 0%, #f7f8fb 42%, #fff 100%);
	font-weight: 650
}

.wrap {
	width: min(1180px, calc(100% - 36px));
	margin: auto
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line)
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0
}

.nav img {
	width: 168px;
	height: auto;
	display: block
}

.navlinks {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end
}

.navlinks a {
	color: var(--blue);
	text-decoration: none;
	font-weight: 900;
	font-size: 13px;
	padding: 10px 13px;
	border-radius: 999px;
	border: 1px solid transparent
}

.navlinks a:hover {
	border-color: #dce5f7;
	background: var(--blue-3)
}

.hero {
	padding: 64px 0 34px;
	text-align: center;
	position: relative;
	overflow: hidden
}

.hero:before {
	content: "";
	position: absolute;
	inset: -120px auto auto 50%;
	width: 640px;
	height: 640px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(35, 80, 150, .15), transparent 68%);
	pointer-events: none
}

.logo-card {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 28px;
	padding: 28px 38px;
	box-shadow: var(--shadow);
	border: 1px solid var(--line)
}

.logo-card img {
	width: min(330px, 80vw)
}

h1 {
	font-size: clamp(34px, 5vw, 70px);
	line-height: .98;
	margin: 34px 0 14px;
	letter-spacing: -2.5px;
	color: var(--blue);
	font-weight: 1000
}

.lead {
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.48;
	color: #303744;
	max-width: 910px;
	margin: 0 auto;
	font-weight: 800
}

.lead strong {
	color: var(--yellow-2)
}

.cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 0;
	border-radius: 999px;
	padding: 15px 22px;
	text-decoration: none;
	font-weight: 1000;
	box-shadow: 0 14px 28px rgba(35, 80, 150, .16)
}

.btn.primary {
	background: var(--blue);
	color: #fff
}

.btn.secondary {
	background: var(--yellow);
	color: #171717
}

.section {
	padding: 42px 0
}

.section-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px
}

.section-title h2 {
	font-size: clamp(28px, 3.5vw, 48px);
	line-height: 1;
	margin: 0;
	color: var(--ink);
	letter-spacing: -1.4px
}

.section-title p {
	max-width: 520px;
	color: var(--muted);
	line-height: 1.55;
	margin: 0;
	font-weight: 750
}

.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: 0 12px 34px rgba(20, 24, 33, .07);
	position: relative;
	overflow: hidden
}

.card:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 6px;
	background: var(--blue)
}

.card.yellow:before {
	background: var(--yellow)
}

.icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: var(--blue-3);
	color: var(--blue);
	margin-bottom: 16px
}

.yellow .icon {
	background: var(--yellow-3);
	color: var(--yellow-2)
}

.icon svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round
}

.card h3 {
	margin: 0 0 10px;
	font-size: 20px;
	color: var(--blue);
	letter-spacing: -.3px
}

.card p {
	margin: 0;
	color: #525b69;
	line-height: 1.5;
	font-weight: 700;
	font-size: 15px
}

.wide {
	grid-column: span 2
}

.note {
	background: linear-gradient(135deg, var(--blue), var(--blue-2));
	color: white;
	border-radius: 30px;
	padding: 32px;
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 20px;
	align-items: center
}

.note h2 {
	margin: 0 0 12px;
	font-size: 34px;
	letter-spacing: -1px
}

.note p {
	margin: 0;
	color: rgba(255, 255, 255, .86);
	line-height: 1.55
}

.note .phone {
	background: #fff;
	color: var(--blue);
	padding: 20px;
	border-radius: 20px;
	font-size: 24px;
	font-weight: 1000;
	text-align: center
}

.timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	counter-reset: s
}

.step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 22px;
	position: relative
}

.step:before {
	counter-increment: s;
	content: counter(s);
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--yellow);
	font-weight: 1000;
	margin-bottom: 14px
}

.step h3 {
	margin: 0 0 7px;
	color: var(--blue)
}

.step p {
	margin: 0;
	color: #5b6370;
	line-height: 1.45;
	font-size: 14px
}

.footer-info {
	margin-top: 35px;
	background: #11151d;
	color: #fff;
	border-radius: 30px 30px 0 0;
	padding: 30px
}

.footer-info strong {
	color: var(--yellow)
}

.footer {
	background: #0b0f16;
	color: #aeb5c2;
	padding: 24px 0
}

.footer a {
	color: #fff
}

.page-head {
	padding: 44px 0
}

.page-head h1 {
	margin-top: 0
}

.table {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(20, 24, 33, .07)
}

.row {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 0;
	border-bottom: 1px solid var(--line)
}

.row:last-child {
	border-bottom: 0
}

.row div {
	padding: 20px
}

.row .left {
	background: var(--blue-3);
	color: var(--blue);
	font-weight: 1000
}

.pill-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap
}

.pill {
	background: #fff;
	border: 1px solid #dce5f7;
	color: var(--blue);
	padding: 9px 13px;
	border-radius: 999px;
	font-weight: 900
}

.tree {
	display: grid;
	gap: 14px
}

.branch {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 8px solid var(--blue);
	border-radius: 20px;
	padding: 18px
}

.branch h3 {
	margin: 0 0 10px;
	color: var(--blue)
}

.branch ul {
	margin: 0;
	padding-left: 20px;
	color: #525b69;
	line-height: 1.7
}

.highlight {
	background: var(--yellow-3);
	border-left-color: var(--yellow)
}

.mini {
	font-size: 13px;
	color: var(--muted)
}

@media(max-width:920px) {
	.grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.timeline,
	.note {
		grid-template-columns: 1fr
	}

	.row {
		grid-template-columns: 1fr
	}

	.nav {
		align-items: flex-start;
		flex-direction: column
	}

	.navlinks {
		justify-content: flex-start
	}

	.wide {
		grid-column: span 1
	}
}

@media(max-width:560px) {
	.grid {
		grid-template-columns: 1fr
	}

	.hero {
		padding-top: 34px
	}

	.card {
		padding: 20px
	}

	.section-title {
		display: block
	}

	.footer-info {
		border-radius: 24px 24px 0 0
	}

	.nav img {
		width: 140px
	}
}

.project-warning {
	background: var(--yellow);
	color: #151515;
	text-align: center;
	padding: 13px 18px;
	font-weight: 1000;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.project-warning strong {
	color: var(--blue)
}

r