:root {
	--primary: #0a2559;
	--primary-2: #123a86;
	--accent: #f97316;
	--success: #14b8a6;

	--bg: #ffffff;
	--fg: #0f172a;
	--muted: #f1f5f9;
	--muted-fg: #64748b;
	--border: #e2e8f0;

	--radius: 14px;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
	--shadow-md: 0 8px 20px rgba(0, 0, 0, .10);
	--shadow-lg: 0 18px 45px rgba(0, 0, 0, .14);
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--fg);
	background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	margin: 0 0 12px 0;
	line-height: 1.15;
}

p {
	margin: 15 0 14px 0;
	line-height: 1.65
}

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

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

ul {
	margin: 0;
	padding-left: 18px
}

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

.section {
	padding: 80px 0
}

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

.center {
	text-align: center
}

.muted {
	color: var(--muted-fg)
}

.small {
	font-size: .92rem
}

.tiny {
	font-size: .82rem
}

.w-full {
	width: 100%
}

.gap-lg {
	gap: 44px
}

.gap-md {
	gap: 18px
}

.grid {
	display: grid;
	gap: 22px
}

.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-contact {
	grid-template-columns: 1fr 2fr
}

.align-center {
	align-items: center
}

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

	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}

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

@media (max-width: 620px) {

	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr
	}
}

.pill {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: .85rem;
	margin-bottom: 10px;
}

.pill-primary {
	background: rgba(10, 37, 89, .08);
	color: var(--primary)
}

.pill-accent {
	background: rgba(249, 115, 22, .10);
	color: var(--accent)
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 12px;
	font-weight: 700;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover {
	transform: translateY(-1px)
}

.btn-accent {
	background: var(--accent);
	color: #fff;
	box-shadow: var(--shadow-sm)
}

.btn-accent:hover {
	box-shadow: var(--shadow-md)
}

.btn-outline {
	background: transparent;
	border-color: var(--primary);
	color: var(--primary)
}

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

.btn-outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, .9);
	color: #fff
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, .10)
}

.icon.small svg {
	width: 18px;
	height: 18px
}

.icon svg {
	width: 22px;
	height: 22px
}

.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow-sm);
}

.card h3 {
	margin-top: 8px
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(226, 232, 240, .7);
}

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

.brand-text {
	font-weight: 800;
	font-size: 1.05rem
}

.nav-links {
	display: flex;
	gap: 22px
}

.nav-links a {
	font-weight: 600;
	color: var(--fg)
}

.nav-links a:hover {
	color: var(--primary)
}

.header-cta {
	display: flex
}

.icon-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: #fff;
	cursor: pointer;
}

.icon-btn:hover {
	border-color: rgba(10, 37, 89, .35)
}

.mobile-menu {
	padding: 10px 0 16px 0;
	border-top: 1px solid rgba(226, 232, 240, .7);
}

.mobile-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 12px 0
}

.mobile-links a {
	font-weight: 600
}

.mobile-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0
}

@media (max-width: 980px) {

	.nav-links,
	.header-cta {
		display: none
	}

	.icon-btn {
		display: inline-flex
	}
}

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 37, 89, .92), rgba(10, 37, 89, .72));
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 60px 0
}

.hero-max {
	max-width: 760px
}

.hero h1 {
	color: #fff;
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	margin-bottom: 18px
}

.hero p {
	color: rgba(255, 255, 255, .90);
	font-size: 1.1rem
}

.text-accent {
	color: var(--accent)
}

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

.trust-badges {
	background: var(--muted);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 44px 0;
}

.badges-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.badge {
	display: flex;
	gap: 12px;
	align-items: center
}

.badge-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 37, 89, .08);
	color: var(--primary);
}

.badge-rating {
	font-weight: 800;
	font-size: 1.35rem
}

.badge-label {
	font-weight: 700;
	font-size: .95rem
}

.badge-count {
	color: var(--muted-fg);
	font-size: .82rem
}

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

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

.service-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(10, 37, 89, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.features {
	margin: 12px 0 18px 0
}

.features li {
	margin: 6px 0
}

.features li::marker {
	color: var(--accent)
}

.stats-bar {
	margin-top: 42px;
	background: var(--primary);
	color: #fff;
	border-radius: 18px;
	padding: 30px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	text-align: center;
}

.stat-num {
	font-size: 2.3rem;
	font-weight: 900
}

.stat-label {
	opacity: .9
}

.stat-mid {
	border-left: 1px solid rgba(255, 255, 255, .18);
	border-right: 1px solid rgba(255, 255, 255, .18)
}

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

	.stat-mid {
		border: none;
		border-top: 1px solid rgba(255, 255, 255, .18);
		border-bottom: 1px solid rgba(255, 255, 255, .18);
		padding: 14px 0
	}
}

.about-image {
	height: 577px;
	overflow: hidden;
	border-radius: 16px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.about-badge {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	background: rgba(255, 255, 255, .95);
	border-radius: 14px;
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: var(--shadow-md);
}

.about-badge-title {
	font-weight: 900;
	font-size: 1.35rem
}

.about-badge-icon {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(10, 37, 89, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.about-points {
	margin: 20px 0
}

.point {
	display: flex;
	gap: 12px;
	align-items: flex-start
}

.point-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(20, 184, 166, .10);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--success);
}

.point-title {
	font-weight: 800
}

.step-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px
}

.step-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-num {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.cta {
	position: relative;
	background: var(--primary);
	color: #fff;
	padding: 80px 0;
	overflow: hidden;
}

.cta-pattern {
	position: absolute;
	inset: 0;
	opacity: .10;
	background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
	background-size: 40px 40px;
}

.cta-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 980px
}

.cta h2 {
	color: #fff
}

.cta p {
	opacity: .92;
	font-size: 1.1rem
}

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

.cta-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	opacity: .92;
}

.dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--accent);
	margin-right: 8px
}

.faq {
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px
}

.faq-item {
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border);
	padding: 0;
	overflow: hidden;
}

.faq-item summary {
	padding: 18px 18px;
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none
}

.faq-content {
	padding: 0 18px 18px 18px;
	color: var(--muted-fg);
	line-height: 1.65;
}

.stack {
	display: flex;
	flex-direction: column;
	gap: 14px
}

.info-card {
	display: flex;
	gap: 14px;
	align-items: flex-start
}

.info-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(10, 37, 89, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.info-title {
	font-weight: 800;
	margin-bottom: 6px
}

.map-card .map-placeholder {
	aspect-ratio: 16/9;
	border-radius: 12px;
	background: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-card form {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px
}

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

.field label {
	display: block;
	font-weight: 800;
	margin-bottom: 8px
}

.field input,
.field textarea {
	width: 100%;
	padding: 12px 12px;
	border-radius: 12px;
	border: 1px solid var(--border);
	font: inherit;
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.field input:focus,
.field textarea:focus {
	border-color: rgba(10, 37, 89, .45);
	box-shadow: 0 0 0 4px rgba(10, 37, 89, .10);
}

.footer {
	background: var(--fg);
	color: #fff
}

.footer-main {
	padding: 52px 0
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
}

.footer-grid h3 {
	margin: 0 0 10px 0
}

.footer-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px
}

.footer-grid a {
	color: rgba(255, 255, 255, .80)
}

.footer-grid a:hover {
	color: #fff
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px
}

.footer-logo {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.footer-title {
	font-weight: 900;
	font-size: 1.2rem
}

.footer-text {
	color: rgba(255, 255, 255, .78)
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 14px
}

.social-btn {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .10);
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-btn:hover {
	background: rgba(255, 255, 255, .18)
}

.footer-contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .10)
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	color: rgba(255, 255, 255, .62);
	gap: 12px;
}

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

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

	.footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start
	}
}

.link {
	color: var(--primary);
	font-weight: 800
}

.link:hover {
	text-decoration: underline
}

.toast {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: min(360px, calc(100% - 36px));
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	padding: 14px 14px;
	z-index: 100;
}

.toast-title {
	font-weight: 900;
	margin-bottom: 4px
}

.toast-desc {
	color: var(--muted-fg)
}
.h-captcha {
  margin: 16px 0;
}