:root {
	--ink: #0d1b2a;
	--slate: #1b263b;
	--teal: #0fa3b1;
	--mint: #b5e2fa;
	--warm: #f7a072;
	--gold: #ffcf56;
	--paper: #f4f7fb;
	--white: #ffffff;
	--muted: #51606f;
	--ring: rgba(15, 163, 177, 0.24);
	--border: #dbe4ed;
	--shadow-sm: 0 10px 24px rgba(13, 27, 42, 0.08);
	--shadow-md: 0 24px 55px rgba(13, 27, 42, 0.16);
	--radius: 18px;
	--container: 1180px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 85% 12%, rgba(181, 226, 250, 0.55) 0, rgba(181, 226, 250, 0) 34%),
		radial-gradient(circle at 5% 28%, rgba(247, 160, 114, 0.28) 0, rgba(247, 160, 114, 0) 26%),
		var(--paper);
	line-height: 1.55;
	overflow-x: hidden;
}

h1,
h2,
h3 {
	font-family: "Archivo Black", Impact, sans-serif;
	letter-spacing: 0.01em;
	line-height: 1.05;
}

img {
	width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(244, 247, 251, 0.93);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(219, 228, 237, 0.95);
}

.nav {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-weight: 800;
	color: var(--slate);
}

.brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-family: "Archivo Black", Impact, sans-serif;
	color: var(--white);
	background: linear-gradient(145deg, var(--teal), var(--warm));
	transform: rotate(-6deg);
	box-shadow: var(--shadow-sm);
}

.brand-text strong {
	color: var(--teal);
}

.menu {
	position: absolute;
	top: 76px;
	left: 0;
	right: 0;
	background: var(--paper);
	border-bottom: 1px solid var(--border);
	padding: 0.8rem 1rem 1rem;
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	box-shadow: var(--shadow-md);
}

.menu.open {
	display: flex;
}

.menu a {
	padding: 0.8rem;
	border-radius: 10px;
	font-weight: 700;
}

.menu a:hover {
	background: var(--white);
}

.menu-toggle {
	width: 44px;
	height: 44px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	display: grid;
	gap: 4px;
	place-content: center;
}

.menu-toggle span {
	width: 18px;
	height: 2px;
	background: var(--slate);
	border-radius: 99px;
	transition: 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.nav-cta {
	display: none;
}

.btn {
	min-height: 50px;
	border-radius: 999px;
	padding: 0.8rem 1.2rem;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-solid {
	color: var(--white);
	background: linear-gradient(145deg, var(--teal), #0b7e89);
	box-shadow: 0 12px 25px rgba(15, 163, 177, 0.3);
}

.btn-outline {
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--slate);
}

.btn-warm {
	background: linear-gradient(145deg, var(--warm), var(--gold));
	color: #45230e;
}

section {
	padding: 5rem 0;
}

.hero {
	position: relative;
	padding: 5.25rem 0 4.5rem;
}

.hero-noise {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(13, 27, 42, 0.04) 1px, transparent 1px);
	background-size: 14px 14px;
	mask-image: linear-gradient(to bottom, black, transparent 85%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	gap: 2.2rem;
	position: relative;
	z-index: 1;
}

.eyebrow {
	display: inline-block;
	padding: 0.38rem 0.85rem;
	border-radius: 999px;
	background: #d8f6fa;
	color: #0b5f68;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.hero-copy h1 {
	font-size: clamp(2.4rem, 11vw, 5.25rem);
	margin-bottom: 1rem;
}

.hero-sub {
	color: var(--muted);
	max-width: 60ch;
	margin: 0 auto 1.4rem;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0 auto;
	max-width: 420px;
}

.hero-trust {
	margin-top: 1.2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	justify-content: center;
}

.hero-trust span {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--muted);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.42rem 0.72rem;
}

.hero-card {
	background: linear-gradient(165deg, #f8fdff, #ffffff);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 1.5rem;
	box-shadow: var(--shadow-md);
}

.hero-card h2 {
	font-size: clamp(1.4rem, 6vw, 2.1rem);
}

.hero-card p {
	color: var(--muted);
	margin: 0.65rem 0 1rem;
}

.range-label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

input[type="range"] {
	width: 100%;
	accent-color: var(--teal);
}

.estimate-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0.65rem 0;
}

.estimate-row strong {
	color: var(--teal);
	font-size: 1.5rem;
}

.estimate-meter {
	width: 100%;
	height: 10px;
	border-radius: 999px;
	background: #ebf0f6;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.estimate-fill {
	width: 50%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--teal), var(--warm));
	transition: width 0.25s ease;
}

.hero-card small {
	color: var(--muted);
	font-size: 0.78rem;
}

.stats {
	padding-top: 0;
}

.stats-grid {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: repeat(2, 1fr);
}

.stat {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1rem;
	text-align: center;
}

.stat-num {
	font-family: "Archivo Black", Impact, sans-serif;
	color: var(--teal);
	font-size: clamp(1.5rem, 6vw, 2.4rem);
}

.stat-label {
	color: var(--muted);
	font-weight: 700;
	font-size: 0.9rem;
}

.section-head {
	max-width: 760px;
	margin: 0 auto 2.2rem;
}

.section-head h2 {
	font-size: clamp(1.9rem, 8vw, 3.2rem);
	margin-bottom: 0.8rem;
}

.section-head p {
	color: var(--muted);
}

.services {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(181, 226, 250, 0.14));
}

.card-grid {
	display: grid;
	gap: 0.95rem;
}

.service-card {
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--white);
	padding: 1.4rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
	transform: translateY(-6px) rotate(-0.4deg);
	box-shadow: var(--shadow-md);
}

.service-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.service-card p {
	color: var(--muted);
}

.steps-grid {
	display: grid;
	gap: 1rem;
}

.step {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.4rem;
	box-shadow: var(--shadow-sm);
}

.step span {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	margin-bottom: 0.8rem;
	color: var(--white);
	background: linear-gradient(145deg, var(--slate), var(--teal));
	font-weight: 800;
}

.step h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.step p {
	color: var(--muted);
}

.pricing-grid {
	display: grid;
	gap: 0.85rem;
}

.price-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.2rem;
	text-align: center;
}

.price-card.featured {
	border: 2px solid var(--teal);
	transform: translateY(-2px);
}

.price-card h3 {
	font-size: 1.1rem;
	margin-bottom: 0.35rem;
}

.price {
	font-family: "Archivo Black", Impact, sans-serif;
	color: var(--teal);
	font-size: 1.8rem;
	margin-bottom: 0.35rem;
}

.price-card p:last-child {
	color: var(--muted);
	font-size: 0.9rem;
}

.reviews {
	background: linear-gradient(175deg, #11253f, #0f1c2c);
	color: var(--white);
}

.reviews .section-head p,
.reviews .eyebrow {
	color: rgba(255, 255, 255, 0.82);
}

.reviews .eyebrow {
	background: rgba(255, 255, 255, 0.16);
}

.review-slider {
	position: relative;
	min-height: 160px;
}

.review {
	display: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: var(--radius);
	padding: 1.4rem;
}

.review.active {
	display: block;
	animation: fadeIn 0.35s ease;
}

.review p {
	margin-bottom: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
}

.review h3 {
	font-size: 1rem;
}

.review-controls {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 0.55rem;
}

.dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
}

.dot.active {
	background: var(--gold);
}

.quote {
	background: linear-gradient(165deg, #fff8eb, #f6fafe);
}

.quote-grid {
	display: grid;
	gap: 1.3rem;
}

.quote-copy ul {
	margin-top: 1rem;
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.quote-copy li {
	font-weight: 700;
	color: var(--slate);
}

.quote-form {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.2rem;
	box-shadow: var(--shadow-md);
}

.form-two {
	display: grid;
	gap: 0.9rem;
}

.quote-form label {
	display: grid;
	gap: 0.35rem;
	font-weight: 700;
	color: var(--slate);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	border: 1px solid #cfdbe8;
	border-radius: 12px;
	padding: 0.8rem 0.9rem;
	background: #fbfdff;
	color: var(--ink);
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 4px var(--ring);
}

.quote-form textarea {
	min-height: 120px;
	resize: vertical;
}

.form-message {
	min-height: 1.4rem;
	margin-top: 0.6rem;
	font-weight: 700;
}

.form-message.ok {
	color: #0e7a38;
}

.form-message.error {
	color: #b3261e;
}

.site-footer {
	background: #081421;
	color: rgba(255, 255, 255, 0.88);
	padding: 3.4rem 0 1.2rem;
}

.footer-grid {
	display: grid;
	gap: 1.1rem;
}

.footer-grid h3 {
	font-size: 1rem;
	margin-bottom: 0.4rem;
}

.footer-grid p {
	color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 1.3rem;
	padding-top: 0.95rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.85rem;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 700px) {
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.steps-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.pricing-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.form-two {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

@media (min-width: 980px) {
	.menu-toggle {
		display: none;
	}

	.menu {
		position: static;
		display: flex;
		flex-direction: row;
		background: transparent;
		border: 0;
		box-shadow: none;
		padding: 0;
		margin-left: auto;
		margin-right: 0.5rem;
	}

	.menu a {
		padding: 0.45rem 0.7rem;
	}

	.nav-cta {
		display: inline-flex;
	}

	.hero-grid {
		grid-template-columns: 1.08fr 0.92fr;
		align-items: center;
		gap: 2.6rem;
	}

	.hero-copy,
	.section-head,
	.quote-copy {
		text-align: left;
	}

	.hero-sub,
	.hero-actions {
		margin-left: 0;
	}

	.hero-actions {
		flex-direction: row;
		max-width: none;
	}

	.hero-trust {
		justify-content: flex-start;
	}

	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.card-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.pricing-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.quote-grid {
		grid-template-columns: 0.92fr 1.08fr;
		align-items: center;
	}
}

@media (max-width: 979px) {
	.hero-copy,
	.section-head,
	.quote-copy,
	.site-footer p,
	.site-footer h3,
	.footer-grid {
		text-align: center;
	}

	.quote-copy ul {
		justify-items: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
