:root {
	--navy: #09243d;
	--blue: #0f6fbf;
	--light-blue: #eaf6ff;
	
	--gold: #f5b942;
	--text: #243447;
	--muted: #65758b;
	--white: #ffffff;
	--border: #d9e6f2;
	--shadow: 0 18px 55px rgba(9, 36, 61, 0.14);
	--radius: 22px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", Arial, sans-serif;
	color: var(--text);
	background: #f7fbff;
	line-height: 1.6;
}

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

.container {
	width: min(1160px, calc(100% - 36px));
	margin: 0 auto;
}

.top-bar {
	background: var(--navy);
	color: var(--white);
	font-size: 0.92rem;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 10px 0;
	flex-wrap: wrap;
}

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

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

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.35rem;
	color: var(--navy);
}

.logo-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--blue), #42b6ff);
	color: var(--white);
	box-shadow: 0 10px 28px rgba(15, 111, 191, 0.3);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 24px;
	color: var(--text);
	font-weight: 600;
	font-size: 0.95rem;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	padding: 13px 21px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
	background: var(--blue);
	color: var(--white);
	box-shadow: 0 14px 30px rgba(15, 111, 191, 0.28);
}

.btn-primary:hover {
	background: #095fA8;
}

.btn-secondary {
	background: var(--white);
	color: var(--blue);
	border: 1px solid var(--border);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 62px;
	background:
		radial-gradient(circle at 85% 10%, rgba(66, 182, 255, 0.24), transparent 32%),
		linear-gradient(135deg, #ffffff 0%, #edf8ff 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 42px;
	align-items: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--light-blue);
	color: var(--blue);
	font-weight: 800;
	font-size: 0.9rem;
	margin-bottom: 18px;
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.85rem);
	line-height: 1.04;
	letter-spacing: -0.055em;
	color: var(--navy);
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.14rem;
	color: var(--muted);
	max-width: 650px;
	margin-bottom: 28px;
}

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

.trust-row {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	color: var(--text);
	font-weight: 700;
	font-size: 0.95rem;
}

.trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.check {
	color: var(--blue);
	font-weight: 900;
}

.hero-card {
	background: var(--white);
	border-radius: 32px;
	box-shadow: var(--shadow);
	padding: 26px;
	border: 1px solid var(--border);
}

.before-after {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 18px;
}

.surface-card {
	min-height: 220px;
	border-radius: 24px;
	padding: 18px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: end;
	color: var(--white);
	font-weight: 800;
}

.surface-card.before {
	background:
		linear-gradient(180deg, rgba(9, 36, 61, 0.1), rgba(9, 36, 61, 0.78)),
		repeating-linear-gradient(45deg, #cad4da, #cad4da 12px, #aab7bf 12px, #aab7bf 24px);
}

.surface-card.after {
	background:
		linear-gradient(180deg, rgba(15, 111, 191, 0.03), rgba(15, 111, 191, 0.42)),
		radial-gradient(circle at 25% 20%, #ffffff, #e7f7ff 38%, #9edcff);
}

.surface-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.surface-card span {
	position: relative;
	z-index: 1;
}

.surface-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(9, 36, 61, 0.65));
	z-index: 0;
}

.quote-mini {
	background: var(--navy);
	color: var(--white);
	border-radius: 24px;
	padding: 22px;
}

.quote-mini h3 {
	font-size: 1.28rem;
	margin-bottom: 6px;
}

.quote-mini p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 16px;
	font-size: 0.95rem;
}

.stats-section {
	padding: 54px 0;
	background: var(--white);
}

.stats-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 28px;
}

.stats-header h2,
.section-heading h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	line-height: 1.1;
	color: var(--navy);
	letter-spacing: -0.04em;
}

.stats-header p,
.section-heading p {
	color: var(--muted);
	margin-top: 12px;
	font-size: 1.05rem;
}

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

.stat-card {
	background: #f8fcff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	text-align: center;
	box-shadow: 0 8px 26px rgba(9, 36, 61, 0.06);
}

.stat-number {
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 900;
	color: var(--blue);
	line-height: 1;
}

.stat-plus {
	color: var(--blue);
}

.stat-card p {
	margin-top: 8px;
	color: var(--navy);
	font-weight: 800;
}

.section {
	padding: 78px 0;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 32px;
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

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

.service-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: 0 12px 35px rgba(9, 36, 61, 0.08);
}

.icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: var(--light-blue);
	color: var(--blue);
	font-size: 1.55rem;
	margin-bottom: 18px;
}

.service-card h3,
.reason-card h3,
.review-card h3,
.faq-item h3 {
	color: var(--navy);
	margin-bottom: 9px;
	font-size: 1.22rem;
}

.service-card p,
.reason-card p,
.review-card p,
.faq-item p {
	color: var(--muted);
}

.reason-wrap {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 30px;
	align-items: start;
}

.reason-panel {
	background: var(--navy);
	color: var(--white);
	border-radius: 30px;
	padding: 34px;
	position: sticky;
	top: 100px;
}

.reason-panel h2 {
	font-size: clamp(2rem, 4vw, 3.15rem);
	line-height: 1.08;
	letter-spacing: -0.045em;
	margin-bottom: 14px;
}

.reason-panel p {
	color: rgba(255, 255, 255, 0.74);
	margin-bottom: 22px;
}

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

.reason-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: 0 12px 35px rgba(9, 36, 61, 0.08);
}

.reviews {
	background: linear-gradient(135deg, var(--navy), #0e4f82);
	color: var(--white);
}

.reviews .section-heading h2,
.reviews .section-heading p {
	color: var(--white);
}

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

.review-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	padding: 26px;
	backdrop-filter: blur(10px);
}

.stars {
	color: var(--gold);
	font-size: 1.2rem;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.review-card h3 {
	color: var(--white);
}

.review-card p {
	color: rgba(255, 255, 255, 0.78);
}

.quote-section {
	background: var(--white);
}

.quote-grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 30px;
	align-items: start;
}

.contact-card,
.form-card {
	background: #f8fcff;
	border: 1px solid var(--border);
	border-radius: 30px;
	padding: 30px;
	box-shadow: 0 12px 35px rgba(9, 36, 61, 0.08);
}

.contact-list {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.contact-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 15px;
	background: var(--white);
	border-radius: 18px;
	border: 1px solid var(--border);
}

form {
	display: grid;
	gap: 14px;
}

label {
	font-weight: 800;
	color: var(--navy);
	font-size: 0.92rem;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 14px 15px;
	font: inherit;
	outline: none;
	background: var(--white);
	color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(15, 111, 191, 0.12);
}

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

textarea {
	min-height: 130px;
	resize: vertical;
}

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

.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
}

.areas {
	background: #f0f8ff;
}

.area-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.area-pills span {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 10px 16px;
	font-weight: 800;
	color: var(--navy);
}

.footer {
	background: var(--navy);
	color: var(--white);
	padding: 34px 0;
}

.footer-grid {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	align-items: center;
}

.footer p {
	color: rgba(255, 255, 255, 0.68);
}

.mobile-menu-button {
	display: none;
	background: transparent;
	border: 0;
	font-size: 1.8rem;
	color: var(--navy);
	cursor: pointer;
}

.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 960px) {
	.hero-grid,
	.reason-wrap,
	.quote-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid,
	.service-grid,
	.review-grid,
	.faq-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.reason-panel {
		position: static;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 74px;
		left: 18px;
		right: 18px;
		flex-direction: column;
		align-items: stretch;
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: 22px;
		padding: 18px;
		box-shadow: var(--shadow);
	}

	.nav-links.open {
		display: flex;
	}

	.mobile-menu-button {
		display: block;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 26px, 1160px);
	}

	.top-bar .container {
		justify-content: center;
		text-align: center;
	}

	.hero {
		padding: 48px 0 42px;
	}

	.before-after,
	.stats-grid,
	.service-grid,
	.reason-grid,
	.review-grid,
	.form-row,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.surface-card {
		min-height: 160px;
	}

	.section {
		padding: 58px 0;
	}
}

.footer-logo-text {
	color: var(--white);
}
