:root {
	--blue: #345f8d;
	--blue-dark: #173d68;
	--sky: #2492d0;
	--text: #142033;
	--muted: #667085;
	--bg: #f7f9fc;
	--white: #fff;
	--border: #e3e8ef;
	--shadow: 0 20px 50px rgba(16, 24, 40, .10)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--text);
	line-height: 1.6;
	background: var(--white)
}

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

.container {
	width: min(1140px, 92%);
	margin: auto
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border)
}

.nav {
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--blue-dark)
}

.brand img {
	width: 58px;
	height: auto
}

.nav nav {
	display: flex;
	align-items: center;
	gap: 24px;
	font-weight: 600;
	color: #334155
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	color: white;
	border-radius: 999px;
	padding: 13px 22px;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(52, 95, 141, .20)
}

.btn:hover {
	background: var(--blue-dark)
}

.btn-outline {
	background: white;
	color: var(--blue);
	border: 1px solid var(--blue);
	box-shadow: none
}

.btn-outline:hover {
	background: #eef6ff;
	color: var(--blue-dark)
}

.btn-small {
	padding: 9px 16px
}

.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #eef6ff 0%, #fff 55%);
	padding: 86px 0
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 48%;
	opacity: .97
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 64px;
	align-items: center
}

.hero-text {
	max-width: 680px
}

.eyebrow {
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 800;
	font-size: .78rem;
	color: var(--sky)
}

.hero .eyebrow {
	
}

.hero h1 {
	color: rgb(0, 128, 192);
	font-size: clamp(2.2rem, 5vw, 4.3rem);
	line-height: 1.05;
	margin: 0 0 22px;
	letter-spacing: -.04em
}

.lead {
	font-size: 1.12rem;
	max-width: 620px;
	margin: 0 0 30px
}

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

.hero-card {
	background: white;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	border-radius: 28px;
	padding: 42px;
	text-align: center
}

.hero-card img {
	width: min(230px, 70%);
	margin-bottom: 24px
}

.hero-card h2 {
	font-size: 1.55rem;
	margin: 0 0 8px
}

.hero-card p {
	color: var(--muted);
	margin: 0
}

.section {
	padding: 86px 0
}

.section-title {
	max-width: 760px;
	margin-bottom: 34px
}

.section h2 {
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 1.12;
	margin: 0 0 16px;
	letter-spacing: -.03em
}

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

.card {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: 22px;
	background: white;
	box-shadow: 0 10px 24px rgba(16, 24, 40, .05)
}

.card span {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #eef6ff;
	color: var(--blue);
	font-weight: 800
}

.card h3 {
	margin: 20px 0 10px;
	font-size: 1.15rem
}

.card p {
	margin: 0;
	color: var(--muted)
}

.softver {
	background: #f8fbff
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center
}

.split p {
	color: var(--muted);
	font-size: 1.03rem
}

.text-link {
	display: inline-block;
	margin-top: 10px;
	color: var(--blue);
	font-weight: 800
}

.feature-list {
	display: grid;
	gap: 16px
}

.feature-list div {
	background: white;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 22px
}

.feature-list strong {
	display: block;
	font-size: 1.07rem;
	margin-bottom: 4px;
	color: var(--blue-dark)
}

.feature-list p {
	margin: 0
}

.muted {
	background: var(--bg)
}

.reverse {
	grid-template-columns: .9fr 1.1fr
}

.quote-box {
	background: var(--blue);
	color: white;
	border-radius: 28px;
	padding: 42px;
	box-shadow: var(--shadow)
}

.quote-box p {
	font-size: 1.55rem;
	line-height: 1.35;
	color: white;
	margin: 0;
	font-weight: 700
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: grid;
	gap: 10px
}

.check-list li {
	position: relative;
	padding-left: 30px;
	color: #334155;
	font-weight: 600
}

.check-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--sky);
	font-weight: 900
}

.contact {
	background: linear-gradient(135deg, var(--blue-dark), var(--blue))
}

.contact-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	background: white;
	border-radius: 30px;
	padding: 44px;
	box-shadow: var(--shadow)
}

.contact-box h2 {
	margin-bottom: 8px
}

.contact-box p {
	margin: 0;
	color: var(--muted)
}

.contact-actions {
	display: grid;
	gap: 14px
}

.contact-item {
	display: block;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 18px 20px;
	font-weight: 800;
	color: var(--blue-dark);
	background: #f8fbff
}

footer {
	padding: 28px 0;
	background: #101828;
	color: #cbd5e1
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap
}

@media (max-width:900px) {
	.nav nav a:not(.btn) {
		display: none
	}

	.hero:before {
		width: 100%;
		clip-path: none
	}

	.hero-grid,
	.split,
	.contact-box {
		grid-template-columns: 1fr
	}

	.hero-card {
		max-width: 520px
	}

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

@media (max-width:620px) {
	.nav {
		height: 68px
	}

	.brand span {
		display: none
	}

	.hero {
		padding: 56px 0
	}

	.section {
		padding: 58px 0
	}

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

	.contact-box {
		padding: 28px
	}

	.footer-inner {
		display: block
	}

	.hero-actions .btn {
		width: 100%
	}
}