:root {
	--dark: #06131b;
	--navy: #0a1a28;
	--lime: #8ee31f;
	--lime-2: #6ed21b;
	--text: #14202b;
	--muted: #667482;
	--line: #dfe7ee;
	--card: #ffffff;
	--shadow: 0 18px 48px rgba(9, 26, 40, .12);
	--font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
}
* { box-sizing: border-box; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
body { margin: 0; font-family: var(--font); color: var(--text); background: #f8fbfd; }
a { color: inherit; text-decoration: none; }
.container { width: min(1340px, calc(100% - 64px)); margin: 0 auto; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(5, 15, 23, .98);
	border-bottom: 1px solid rgba(255,255,255,.08);
	backdrop-filter: blur(14px);
}
.nav {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}
.logo { display: flex; align-items: center; gap: 12px; min-width: 190px; color: #fff; font-weight: 900; }
.logo img { width: 158px; height: 44px; object-fit: contain; background: #fff; border-radius: 7px; padding: 5px 8px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 34px; color: #fff; font-size: 14px; font-weight: 800; }
.nav-links a { height: 76px; display: grid; place-items: center; border-bottom: 3px solid transparent; opacity: .9; }
.nav-links a.active, .nav-links a:hover { color: var(--lime); border-bottom-color: var(--lime); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 14px; color: #fff; }
.bell { position: relative; width: 38px; height: 38px; display: grid; place-items: center; }
.bell::after { content: "1"; position: absolute; top: 2px; right: 3px; width: 17px; height: 17px; border-radius: 50%; background: #ff3b30; color: #fff; font-size: 10px; display: grid; place-items: center; font-weight: 900; }
.login-btn {
	min-height: 44px;
	padding: 0 24px;
	border-radius: 7px;
	background: linear-gradient(135deg, var(--lime), var(--lime-2));
	color: #102000;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 900;
}

.hero {
	position: relative;
	min-height: 320px;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(5,17,28,.96) 0%, rgba(5,24,39,.84) 52%, rgba(5,24,39,.35) 100%),
		url("img/background.jpg") center 42% / cover no-repeat;
	display: flex;
	align-items: center;
}
.hero h1 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; text-transform: uppercase; }
.hero p { margin: 16px 0 0; max-width: 620px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.86); font-weight: 600; }
.hero-badges { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 34px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 800; }
.hero-badges span { display: inline-flex; align-items: center; gap: 9px; }
.hero-badges i { width: 24px; height: 24px; border-radius: 50%; background: var(--lime-2); color: #fff; display: grid; place-items: center; font-style: normal; }

main { padding: 34px 0 28px; }

.section-title {
	margin: 0 0 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	letter-spacing: -.03em;
	text-transform: uppercase;
}
.title-icon { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--lime-2); color: var(--lime-2); display: grid; place-items: center; font-weight: 900; font-style: normal; }

.about-section { padding: 48px 0; }
.about-lead { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.about-lead p { margin: 0 0 14px; color: var(--muted); font-size: 15.5px; line-height: 1.8; font-weight: 600; }
.about-lead img { width: 100%; height: 340px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.stat-box {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 22px 18px;
	text-align: center;
}
.stat-box strong { display: block; font-size: 30px; letter-spacing: -.03em; color: var(--navy); }
.stat-box span { display: block; margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.feature-box {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 26px 22px;
}
.feature-box .icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--lime), var(--lime-2));
	color: #102000;
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}
.feature-box h3 { margin: 0 0 8px; font-size: 16.5px; letter-spacing: -.02em; }
.feature-box p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; font-weight: 600; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px; }
.info-box {
	border: 1px solid #d8ebd2;
	background: linear-gradient(135deg, #f4fff1, #ffffff);
	border-radius: 10px;
	padding: 22px;
	box-shadow: var(--shadow);
}
.info-box h3 { margin: 0 0 16px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 15px; }
.info-box p, .info-box li { margin: 0; color: #42505e; font-size: 14px; line-height: 1.8; font-weight: 600; }
.info-box ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.info-box li::before { content: "✓"; display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; margin-right: 8px; background: #48aa24; color: #fff; font-size: 11px; }

.about-cta {
	margin: 12px 0 0;
	border-radius: 14px;
	background: linear-gradient(120deg, var(--navy), var(--dark));
	color: #fff;
	padding: 34px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.about-cta h2 { margin: 0 0 6px; font-size: 22px; letter-spacing: -.02em; }
.about-cta p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 600; }
.about-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 22px; border-radius: 8px; font-weight: 900; font-size: 14px; }
.btn-lime { background: linear-gradient(135deg, var(--lime), var(--lime-2)); color: #102000; }
.btn-outline { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }

@media (max-width: 1040px) {
	.nav-links { display: none; }
	.about-lead { grid-template-columns: 1fr; }
	.about-lead img { height: 260px; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.container { width: min(100% - 28px, 1340px); }
	.nav { height: 66px; gap: 12px; }
	.logo img { width: 128px; height: 38px; }
	.bell { display: none; }
	.login-btn { min-height: 38px; padding: 0 12px; font-size: 12px; }
	.hero { min-height: 260px; }
	.hero-badges { gap: 14px; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.feature-grid { grid-template-columns: 1fr; }
	.about-cta { flex-direction: column; align-items: flex-start; }
}
