:root {
	--navy: #0f1b2a;
	--midnight: #08111c;
	--sky: #e0f2ff;
	--aqua: #2cb1bc;
	--sand: #f4ede0;
	--white: #ffffff;
	--text: #1f2a37;
	--muted: #5b728a;
	--radius: 18px;
	--shadow: 0 20px 40px rgba(15, 27, 42, 0.15);
	--container: min(1120px, 92vw);
	--font: "Outfit", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: linear-gradient(180deg, var(--sky) 0%, var(--white) 42%, var(--sand) 100%);
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block;
	border-radius: calc(var(--radius) - 6px);
}

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.section {
	padding: 5rem 0;
}

.section.alt {
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(6px);
}

.site-header {
	background: rgba(8, 17, 28, 0.92);
	color: var(--white);
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 12px 30px rgba(8, 17, 28, 0.35);
}

.header-content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1rem 0;
}

.brand {
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav {
	display: flex;
	gap: 1.25rem;
}

.nav a {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
}

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

.cta {
	margin-left: auto;
	padding: 0.75rem 1.4rem;
	border-radius: 999px;
	background: var(--aqua);
	color: var(--navy);
	font-weight: 600;
}

.hero {
	padding: 6rem 0 4rem;
}

.hero-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	align-items: center;
}

.hero-copy h1 {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	margin-bottom: 1rem;
	line-height: 1.15;
	color: var(--midnight);
}

.hero-copy p {
	max-width: 560px;
	color: var(--muted);
}

.eyebrow {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--aqua);
	margin-bottom: 0.75rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.8rem;
	border-radius: 999px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.btn.primary {
	background: var(--navy);
	color: var(--white);
	box-shadow: var(--shadow);
}

.btn.ghost {
	border: 1px solid rgba(15, 27, 42, 0.4);
	color: var(--navy);
	background: rgba(255, 255, 255, 0.7);
}

.card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 1.8rem;
	box-shadow: var(--shadow);
}

.caption {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	color: var(--muted);
}

h2 {
	font-size: clamp(2rem, 3vw, 2.75rem);
	margin-bottom: 1rem;
	color: var(--midnight);
}

.lead {
	font-size: 1.1rem;
	color: var(--muted);
	margin-bottom: 2.5rem;
	max-width: 640px;
}

.service-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card ul {
	padding-left: 1.2rem;
	display: grid;
	gap: 0.75rem;
	color: var(--muted);
}

.note {
	margin-top: 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy);
}

.split {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
}

.checks {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 0.8rem;
	color: var(--muted);
}

.checks li::before {
	content: "✔";
	margin-right: 0.6rem;
	color: var(--aqua);
	font-weight: 700;
}

.stats {
	display: grid;
	gap: 1.5rem;
	text-align: center;
}

.stat {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--navy);
	display: block;
}

.label {
	font-size: 0.95rem;
	color: var(--muted);
}

.timeline {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-step {
	background: rgba(255, 255, 255, 0.88);
	border-radius: var(--radius);
	padding: 1.8rem 1.5rem 1.5rem;
	position: relative;
	box-shadow: var(--shadow);
}

.step-number {
	position: absolute;
	top: -18px;
	left: 24px;
	background: var(--aqua);
	color: var(--navy);
	border-radius: 999px;
	padding: 0.4rem 1rem;
	font-weight: 700;
}

.timeline-step p {
	color: var(--muted);
	margin: 0.75rem 0 0;
}

.testimonials .testimonial-grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.quote blockquote {
	margin: 0;
	font-style: italic;
	color: var(--midnight);
}

.quote figcaption {
	margin-top: 1rem;
	color: var(--muted);
	font-weight: 600;
}

.contact {
	background: radial-gradient(circle at top left, rgba(44, 177, 188, 0.14), transparent 55%);
}

.contact-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	align-items: start;
}

.contact-list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 0.8rem;
	color: var(--muted);
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	margin-top: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	border: 1px solid rgba(15, 27, 42, 0.15);
	font-family: inherit;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.92);
}

.contact-form button {
	margin-top: 0.5rem;
}

.site-footer {
	background: var(--midnight);
	color: rgba(255, 255, 255, 0.78);
	padding: 2.5rem 0;
}

.footer-content {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	align-items: center;
}

.footer-links {
	display: flex;
	gap: 1.4rem;
}

.footer-links a:hover {
	color: var(--white);
}

.legal {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 720px) {
	.header-content {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
	.cta {
		margin-left: 0;
	}
	.hero {
		padding: 3.5rem 0 2.5rem;
	}
	.section {
		padding: 3.5rem 0;
	}
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.card {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 3rem 0 2rem;
	}
	.section {
		padding: 3rem 0;
	}
}
