:root {
	--navy: #10233f;
	--navy2: #18355f;
	--white: #fff;
	--bg: #f5f7fa;
	--text: #1a2433;
	--muted: #5c6675;
	--line: #dde3ea;
	--accent: #e9eef6;
	--green: #2d7d46;
	--max: 1160px
}

* {
	box-sizing: border-box
}

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

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

img {
	max-width: 100%;
	display: block
}

.container {
	width: min(var(--max), calc(100% - 32px));
	margin: 0 auto
}

.header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--navy);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .12)
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0
}

.brand {
	font-size: 28px;
	font-weight: 700;
	color: #fff
}

.nav {
	display: flex;
	gap: 20px;
	align-items: center
}

.nav a {
	color: #dfe8f6;
	font-weight: 600
}

.phone-btn,
.btn {
	display: inline-block;
	padding: 14px 22px;
	border-radius: 6px;
	font-weight: 700
}

.phone-btn {
	background: #10233f;
	/*color: var(--navy)*/
}

.btn-primary {
	background: var(--navy);
	cursor: pointer;
	color: #fff
}

.btn-secondary {
	border: 2px solid #fff;
	color: #fff
}

.hero {
	background: linear-gradient(rgba(16, 35, 63, .78), rgba(16, 35, 63, .78)), url('assets/hero-bg.jpg') center/cover no-repeat;
	color: #fff
}

.hero .container {
	padding: 82px 0 76px
}

.hero h1 {
	font-size: clamp(34px, 4.8vw, 58px);
	line-height: 1.08;
	margin: 0;
	max-width: 860px
}

.hero p {
	font-size: 20px;
	max-width: 780px;
	margin: 18px 0 28px;
	color: #eef3fa
}

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

.trustline {
	margin-top: 18px;
	color: #dce5f3;
	font-size: 15px
}

.section {
	padding: 64px 0
}

.section.alt {
	background: var(--bg)
}

h2 {
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.15;
	margin: 0 0 10px
}

h3 {
	font-size: 24px;
	line-height: 1.2;
	margin: 0 0 10px
}

.lead {
	font-size: 18px;
	color: var(--muted)
}

.narrow {
	max-width: 820px;
	margin: 0 auto
}

.problem-list {
	margin: 24px 0 0;
	padding-left: 24px
}

.problem-list li {
	margin: 10px 0;
	font-size: 18px
}

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

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

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden
}

.card-body {
	padding: 24px
}

.card img {
	height: 220px;
	width: 100%;
	object-fit: cover
}

.tag {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--navy2);
	font-weight: 700
}

.benefits {
	padding-left: 20px;
	margin: 16px 0 0
}

.benefits li {
	margin: 8px 0
}

.checklist {
	list-style: none;
	padding: 0;
	margin: 28px 0 0
}

.checklist li {
	margin: 14px 0;
	padding-left: 34px;
	position: relative;
	font-size: 18px
}

.checklist li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 700
}

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

.gallery img {
	height: 220px;
	object-fit: cover;
	border-radius: 8px
}

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

.review {
	background: var(--bg);
	padding: 24px;
	border-radius: 8px
}

.stars {
	color: #e0a419;
	font-size: 20px;
	letter-spacing: 2px
}

.cta {
	background: var(--navy);
	color: #fff
}

.cta-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 28px;
	align-items: start
}

.form-box {
	background: #fff;
	color: var(--text);
	padding: 26px;
	border-radius: 8px
}

.field {
	display: block;
	margin-bottom: 14px
}

.field label {
	display: block;
	font-weight: 700;
	margin-bottom: 6px
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 6px;
	font: inherit
}

.field textarea {
	min-height: 120px;
	resize: vertical
}

.area-list {
	font-size: 18px
}

.footer {
	background: var(--navy);
	color: #dbe5f3;
	padding: 28px 0;
	text-align: center
}

.breadcrumbs {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 20px
}

.page-hero {
	background: var(--bg);
	padding: 42px 0
}

.page-hero h1 {
	font-size: 44px;
	line-height: 1.12;
	margin: 0 0 12px
}

.service-layout {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 28px;
	align-items: start
}

.side-card {
	background: var(--bg);
	padding: 22px;
	border-radius: 8px;
	border: 1px solid var(--line)
}

@media (max-width:900px) {

	.grid-3,
	.reviews,
	.gallery,
	.grid-2,
	.cta-grid,
	.service-layout {
		grid-template-columns: 1fr
	}

	.nav .hide-sm {
		display: none
	}

	.hero .container {
		padding: 66px 0 58px
	}

	.page-hero h1 {
		font-size: 34px
	}
}