:root {
	--bg: #f5f7fb;
	--surface: #ffffff;
	--surface-soft: #eef2f8;
	--text: #1f2937;
	--muted: #5f6b7b;
	--primary: #174ea6;
	--primary-dark: #123d82;
	--border: #d7deea;
	--shadow: 0 14px 40px rgba(12, 24, 50, 0.08);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

.section {
	padding: 84px 0;
}

.muted {
	background: var(--surface-soft);
}

.section-head {
	margin-bottom: 28px;
}

.eyebrow {
	display: inline-block;
	margin: 0 0 10px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
}

h1,
h2,
h3 {
	margin: 0 0 14px;
	line-height: 1.2;
}

p {
	margin: 0 0 14px;
	color: var(--muted);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(10px);
	background: rgba(245, 247, 251, 0.92);
	border-bottom: 1px solid var(--border);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--primary);
	color: #fff;
	font-size: 0.85rem;
}

.nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav a {
	font-weight: 600;
	font-size: 0.95rem;
	color: #2f3a4c;
}

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px 0;
	background: #213246;
}

.hero {
	padding-top: 110px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 30px;
	align-items: center;
}

.hero-content h1 {
	font-size: clamp(2rem, 4.2vw, 3.1rem);
	max-width: 14ch;
}

.hero-text {
	max-width: 54ch;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 20px;
	border-radius: 10px;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
}

.btn-primary:hover {
	background: var(--primary-dark);
}

.btn-secondary {
	background: var(--surface);
	border-color: var(--border);
	color: #243041;
}

.btn-outline {
	background: transparent;
	border-color: var(--border);
	color: #243041;
}

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.hero-stats {
	display: grid;
	gap: 14px;
}

.stat-card {
	padding: 22px;
}

.stat-card strong {
	display: block;
	font-size: 1.35rem;
	margin-bottom: 4px;
	color: #1a2f5a;
}

.grid {
	display: grid;
	gap: 18px;
}

.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.plan-card {
	padding: 24px;
}

.plan-card ul {
	margin: 0 0 20px;
	padding: 0 0 0 18px;
	color: #3f4d60;
}

.plan-card li {
	margin-bottom: 8px;
}

.plan-card .price {
	font-size: 1.9rem;
	font-weight: 800;
	color: #1f2c42;
}

.plan-card .price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--muted);
}

.plan-card.featured {
	border-color: #abc2ec;
}

.badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	background: #dce8fb;
	color: #1d4ea8;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
}

.checks {
	padding: 26px;
}

.checks p {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	color: #334358;
}

.checks p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background: #2f68c7;
}

.contact-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: start;
}

.contact-form {
	padding: 24px;
}

.contact-form label {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: #2f3f56;
	margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	margin-top: 6px;
	padding: 12px 13px;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid #cfe0fb;
	border-color: #93b2e8;
}

.form-status {
	margin-top: 12px;
	min-height: 20px;
	font-size: 0.9rem;
}

.site-footer {
	border-top: 1px solid var(--border);
	background: #f1f4fa;
}

.footer-inner {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 900px) {
	.hero-grid,
	.grid-3,
	.split,
	.contact-wrap {
		grid-template-columns: 1fr;
	}

	.nav {
		position: absolute;
		top: 76px;
		left: 0;
		right: 0;
		padding: 16px 4%;
		background: var(--surface);
		border-bottom: 1px solid var(--border);
		display: none;
		flex-direction: column;
		align-items: flex-start;
	}

	.nav.open {
		display: flex;
	}

	.menu-toggle {
		display: inline-block;
	}
}
