html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
	background: #f4f6f8;
	color: #1f2933;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.site-header {
	position: absolute;
	z-index: 20;
	top: 0;
	right: 0;
	left: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	padding: 18px 24px;
	background: #ffffff;
	border-bottom: 1px solid #d9e2ec;
}

.site-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: #102a43;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
}

.site-logo-icon {
	display: block;
	width: 2.65rem;
	height: 2.65rem;
	object-fit: contain;
	filter: drop-shadow(0 3px 6px rgba(16, 42, 67, 0.14));
}

.menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: background 160ms ease, transform 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
	background: #eef5fb;
	transform: scale(1.03);
}

.menu-toggle-line {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: #102a43;
	border-radius: 999px;
	transition: opacity 160ms ease, transform 160ms ease;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0, 0, 0, 0);
}

.site-nav {
	position: absolute;
	top: 100%;
	right: 24px;
	left: 24px;
	display: none;
	flex-direction: column;
	gap: 10px;
	padding: 14px;
	background: #ffffff;
	border: 1px solid #d9e2ec;
	border-radius: 6px;
	box-shadow: 0 16px 32px rgba(16, 42, 67, 0.16);
}

.site-nav.is-open {
	display: flex;
}

.site-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: #334e68;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-decoration: none;
}

.site-nav a:not(.nav-button)::after {
	position: absolute;
	right: 50%;
	bottom: 7px;
	left: 50%;
	height: 2px;
	background: #0f609b;
	border-radius: 999px;
	content: "";
	transition: right 180ms ease, left 180ms ease;
}

.site-nav a:not(.nav-button):hover::after,
.site-nav a:not(.nav-button):focus::after {
	right: 0;
	left: 0;
}

.site-nav a:hover,
.site-nav a:focus {
	color: #0f609b;
}

.nav-button {
	position: relative;
	z-index: 1;
	justify-content: center;
	padding: 0 18px;
	color: #ffffff !important;
	background: transparent;
	border-radius: 6px;
	isolation: isolate;
}

.nav-button::before {
	position: absolute;
	z-index: -2;
	top: 58%;
	left: 100%;
	width: 180px;
	height: 80px;
	background:
		radial-gradient(circle at 18% 58%, #dbeafe 0 19px, transparent 20px),
		radial-gradient(circle at 36% 47%, #dbeafe 0 30px, transparent 31px),
		radial-gradient(circle at 59% 55%, #dbeafe 0 31px, transparent 32px),
		radial-gradient(circle at 80% 48%, #dbeafe 0 20px, transparent 21px);
	content: "";
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.nav-button::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: #16a34a;
	border-radius: 6px;
	content: "";
	transition: inset 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-button:hover,
.nav-button:focus {
	color: #ffffff !important;
}

.nav-button:hover::after,
.nav-button:focus::after {
	inset: -2px -4px;
	background: #15803d;
	box-shadow: 0 10px 22px rgba(21, 128, 61, 0.24);
}

main {
	margin: 0;
}

h1 {
	margin: 0 0 16px;
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1;
}

h2 {
	margin: 0;
	color: #102a43;
	font-size: 2.15rem;
	font-weight: 800;
	line-height: 1.08;
}

h3 {
	margin: 0;
	color: #102a43;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.22;
}

p {
	margin: 0;
	line-height: 1.7;
}

#hero {
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 129px 24px 48px;
	background:
		linear-gradient(rgba(16, 42, 67, 0.58), rgba(16, 42, 67, 0.68)),
		url("/assets/hero-house-hawaii-average.png") center / cover no-repeat;
}

#hero::before {
	position: absolute;
	inset: 0;
	background: rgba(16, 42, 67, 0.18);
	backdrop-filter: blur(1.5px);
	pointer-events: none;
	content: "";
}

#hero>* {
	position: relative;
	z-index: 1;
}

.hero-content {
	width: 100%;
	max-width: 720px;
	color: #ffffff;
	text-align: center;
}

.hero-content h3 {
	max-width: 560px;
	margin: 0 auto;
	color: #e6edf3;
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.7;
}

.hero-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 520px;
	margin: 24px auto 0;
}

.hero-proof {
	display: grid;
	gap: 0.25rem;
	width: fit-content;
	padding-left: 1.25rem;
	margin-top: 2rem;
	margin-right: auto;
	margin-left: auto;
	color: #e6edf3;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
}

.address-field {
	position: relative;
	width: 100%;
}

.hero-form input[type="text"] {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	color: #102a43;
	background: #ffffff;
	border: 1px solid #bcccdc;
	border-radius: 6px;
	font: inherit;
	box-sizing: border-box;
}

.hero-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #9fb3c8;
	opacity: 1;
}

.hero-button {
	min-height: 48px;
	padding: 0 18px;
	color: #ffffff;
	background: #16a34a;
	border: 0;
	border-radius: 6px;
	font: inherit;
	font-size: 0.96rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
	cursor: pointer;
	transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-button:hover,
.hero-button:focus {
	background: #15803d;
	box-shadow: 0 10px 22px rgba(21, 128, 61, 0.24);
	transform: scale(1.035);
}

.address-suggestions {
	position: absolute;
	z-index: 10;
	top: calc(100% + 6px);
	right: 0;
	left: 0;
	display: none;
	max-height: 240px;
	margin: 0;
	padding: 6px;
	overflow-y: auto;
	text-align: left;
	list-style: none;
	background: #ffffff;
	border: 1px solid #bcccdc;
	border-radius: 6px;
	box-shadow: 0 16px 32px rgba(16, 42, 67, 0.18);
}

.address-suggestions.is-open {
	display: block;
}

.address-suggestions button {
	display: block;
	width: 100%;
	padding: 10px 12px;
	color: #102a43;
	text-align: left;
	background: transparent;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	font: inherit;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.address-suggestions button:hover,
.address-suggestions button:focus {
	background: #eef5fb;
	color: #0f609b;
	transform: scale(1.01);
}

.content-section {
	padding: 72px 24px;
}

.section-light {
	background: #ffffff;
}

.section-dark {
	position: relative;
	overflow: hidden;
	color: #ffffff;
	background:
		linear-gradient(rgba(16, 42, 67, 0.58), rgba(16, 42, 67, 0.68)),
		url("/assets/section-house-hawaii-angle.png") center 24% / cover no-repeat;
}

.section-dark::before {
	position: absolute;
	inset: 0;
	background: rgba(16, 42, 67, 0.18);
	backdrop-filter: blur(1.5px);
	content: "";
}

.section-dark>* {
	position: relative;
	z-index: 1;
}

.section-dark h2 {
	color: #ffffff;
}

.section-dark .section-heading p {
	color: #d9e2ec;
}

.section-dark .section-cta-button {
	color: #ffffff;
	background: #16a34a;
}

.section-dark .section-cta-button:hover,
.section-dark .section-cta-button:focus {
	background: #15803d;
}

.section-inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}

.section-inner-narrow {
	max-width: 840px;
}

.section-heading {
	position: relative;
	max-width: 640px;
	margin: 0 auto 32px;
	text-align: center;
}

.section-light .section-heading::before,
.section-light .section-cta::before {
	position: absolute;
	z-index: 0;
	width: 180px;
	height: 80px;
	background:
		radial-gradient(circle at 20% 53%, #dbeafe 0 21px, transparent 22px),
		radial-gradient(circle at 41% 43%, #dbeafe 0 33px, transparent 34px),
		radial-gradient(circle at 64% 57%, #dbeafe 0 26px, transparent 27px),
		radial-gradient(circle at 82% 51%, #dbeafe 0 18px, transparent 19px);
	content: "";
	pointer-events: none;
}

.section-light .section-cta::before {
	background:
		radial-gradient(circle at 18% 50%, #dbeafe 0 18px, transparent 19px),
		radial-gradient(circle at 38% 58%, #dbeafe 0 29px, transparent 30px),
		radial-gradient(circle at 58% 45%, #dbeafe 0 32px, transparent 33px),
		radial-gradient(circle at 79% 57%, #dbeafe 0 22px, transparent 23px);
}

.section-light .section-heading::before {
	top: -34px;
	left: 50%;
	transform: translateX(-75%);
}

.section-light .section-heading>*,
.section-light .section-cta>* {
	position: relative;
	z-index: 1;
}

.section-heading p {
	margin-top: 14px;
	color: #52606d;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.75;
}

.content-list {
	display: grid;
	gap: 10px;
	max-width: 640px;
	margin: 28px auto 0;
	padding-left: 1.25rem;
	color: #52606d;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.7;
}

.section-cta {
	position: relative;
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.section-light .section-cta::before {
	top: 75%;
	left: 50%;
	transform: translate(10%, -28%);
}

.section-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 48px;
	padding: 0 20px;
	color: #ffffff;
	background: #16a34a;
	border-radius: 6px;
	font-size: 0.96rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-decoration: none;
	transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.section-cta-button:hover,
.section-cta-button:focus {
	background: #15803d;
	box-shadow: 0 10px 22px rgba(21, 128, 61, 0.24);
	transform: scale(1.035);
}

.feature-grid {
	position: relative;
	display: grid;
	gap: 16px;
}

.feature-grid::before,
.feature-grid::after {
	position: absolute;
	z-index: 0;
	width: 180px;
	height: 80px;
	content: "";
	pointer-events: none;
}

.feature-grid::before {
	top: -52px;
	left: -76px;
	background:
		radial-gradient(circle at 19% 55%, #dbeafe 0 20px, transparent 21px),
		radial-gradient(circle at 37% 45%, #dbeafe 0 28px, transparent 29px),
		radial-gradient(circle at 56% 57%, #dbeafe 0 34px, transparent 35px),
		radial-gradient(circle at 81% 51%, #dbeafe 0 19px, transparent 20px);
}

.feature-grid::after {
	right: -76px;
	bottom: -56px;
	background:
		radial-gradient(circle at 21% 48%, #dbeafe 0 18px, transparent 19px),
		radial-gradient(circle at 39% 59%, #dbeafe 0 34px, transparent 35px),
		radial-gradient(circle at 64% 47%, #dbeafe 0 27px, transparent 28px),
		radial-gradient(circle at 82% 56%, #dbeafe 0 21px, transparent 22px);
}

.feature-card {
	position: relative;
	z-index: 1;
	padding: 24px;
	text-align: center;
	background: #f8fafc;
	border: 1px solid #d9e2ec;
	border-radius: 8px;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
	background: #2563eb;
	border-color: #1d4ed8;
	box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
	transform: scale(1.025);
}

.feature-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 16px;
	background: #eef5fb;
	border: 1px solid #d9e2ec;
	border-radius: 8px;
	transition: background 180ms ease, border-color 180ms ease;
}

.feature-card:hover .feature-icon-wrap,
.feature-card:focus-within .feature-icon-wrap {
	background: #ffffff;
	border-color: #bfdbfe;
}

.feature-icon {
	width: 28px;
	height: 28px;
	filter: invert(31%) sepia(49%) saturate(1554%) hue-rotate(179deg) brightness(88%) contrast(89%);
	transition: filter 180ms ease;
}

.feature-card:hover .feature-icon,
.feature-card:focus-within .feature-icon {
	filter: invert(13%) sepia(24%) saturate(1454%) hue-rotate(171deg) brightness(91%) contrast(93%);
}

.feature-card h3,
.step-item h3 {
	transition: color 180ms ease;
}

.feature-card:hover h3,
.feature-card:focus-within h3 {
	color: #ffffff;
}

.feature-card p {
	margin-top: 10px;
	color: #52606d;
	font-size: 0.96rem;
	font-weight: 500;
	line-height: 1.7;
	transition: color 180ms ease;
}

.feature-card:hover p,
.feature-card:focus-within p {
	color: #dbeafe;
}

.steps-list {
	display: grid;
	gap: 16px;
}

.step-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: start;
	padding: 24px;
	text-align: center;
	background: #f8fafc;
	border: 1px solid #d9e2ec;
	border-radius: 8px;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.step-item:hover,
.step-item:focus-within {
	background: #2563eb;
	border-color: #1d4ed8;
	box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
	transform: scale(1.025);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin: 0 auto;
	color: #ffffff;
	background: #0f609b;
	border-radius: 999px;
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1;
	transition: color 180ms ease, background 180ms ease;
}

.step-item:hover .step-number,
.step-item:focus-within .step-number {
	color: #1d4ed8;
	background: #ffffff;
}

.step-item:hover h3,
.step-item:focus-within h3 {
	color: #ffffff;
}

.step-item p {
	margin-top: 8px;
	color: #52606d;
	font-size: 0.96rem;
	font-weight: 500;
	line-height: 1.7;
	transition: color 180ms ease;
}

.step-item:hover p,
.step-item:focus-within p {
	color: #dbeafe;
}

.faq-list {
	display: grid;
	gap: 12px;
	width: 100%;
}

.faq-list details {
	width: 100%;
	box-sizing: border-box;
	padding: 18px 20px;
	background: #f8fafc;
	border: 1px solid #d9e2ec;
	border-radius: 8px;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within,
.faq-list details[open] {
	background: #2563eb;
	border-color: #1d4ed8;
	box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
	transform: scale(1.02);
}

.faq-list summary {
	color: #102a43;
	font-size: 1.03rem;
	font-weight: 800;
	line-height: 1.3;
	cursor: pointer;
	transition: color 180ms ease;
}

.faq-list details:hover summary,
.faq-list details:focus-within summary,
.faq-list details[open] summary {
	color: #ffffff;
}

.faq-list p {
	margin-top: 12px;
	color: #52606d;
	font-size: 0.96rem;
	font-weight: 500;
	line-height: 1.7;
	transition: color 180ms ease;
}

.faq-list details:hover p,
.faq-list details:focus-within p,
.faq-list details[open] p {
	color: #dbeafe;
}

.final-cta {
	position: relative;
	overflow: hidden;
	color: #ffffff;
	background:
		linear-gradient(rgba(16, 42, 67, 0.48), rgba(16, 42, 67, 0.58)),
		url("/assets/hero-house-hawaii-average.png") center 18% / cover no-repeat;
}

.final-cta::before {
	position: absolute;
	inset: 0;
	background: rgba(16, 42, 67, 0.16);
	backdrop-filter: blur(1.5px);
	content: "";
}

.final-cta>* {
	position: relative;
	z-index: 1;
}

.final-cta h2 {
	color: #ffffff;
}

.final-cta p {
	margin-top: 12px;
	color: #d9e2ec;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.75;
}

.final-cta-inner {
	display: grid;
	gap: 24px;
	justify-items: center;
	text-align: center;
}

.section-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 48px;
	padding: 0 20px;
	color: #ffffff;
	background: #16a34a;
	border-radius: 6px;
	font-size: 0.96rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-decoration: none;
	transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.section-button:hover,
.section-button:focus {
	background: #15803d;
	box-shadow: 0 10px 22px rgba(21, 128, 61, 0.24);
	transform: scale(1.035);
}

.contact-header {
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 32px;
}

.contact-page {
	min-height: 100vh;
	box-sizing: border-box;
}

.contact-hero-slice {
	position: relative;
	height: 225px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	box-sizing: border-box;
	padding: 0 24px 24px;
	background:
		linear-gradient(180deg, rgba(16, 42, 67, 0.08), rgba(16, 42, 67, 0.42)),
		url("/assets/section-house-hawaii-angle.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.contact-stepper {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	width: 100%;
	max-width: 720px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-step {
	position: relative;
	display: grid;
	gap: 0.45rem;
	justify-items: center;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.25;
	text-align: center;
}

.contact-step::before {
	position: absolute;
	top: 1rem;
	right: 50%;
	left: -50%;
	height: 2px;
	background: rgba(255, 255, 255, 0.38);
	content: "";
}

.contact-step:first-child::before {
	display: none;
}

.contact-step-dot {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	color: #102a43;
	background: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(16, 42, 67, 0.22);
}

.contact-step.is-complete::before {
	background: #1f8f4d;
}

.contact-step.is-complete,
.contact-step.is-active {
	color: #ffffff;
}

.contact-step.is-complete .contact-step-dot {
	color: #ffffff;
	background: #1f8f4d;
	border-color: #ffffff;
}

.contact-step.is-active .contact-step-dot {
	color: #1f8f4d;
	background: #ffffff;
	border-color: #1f8f4d;
	box-shadow: 0 0 0 4px rgba(31, 143, 77, 0.28), 0 8px 20px rgba(16, 42, 67, 0.22);
}

.contact-step.is-complete.is-active .contact-step-dot {
	color: #ffffff;
	background: #1f8f4d;
	border-color: #ffffff;
}

.contact-section {
	width: 100%;
	max-width: 560px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 48px 24px;
}

.contact-section h1,
.contact-section p {
	text-align: center;
}

.contact-section p {
	color: #52606d;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.75;
}

.contact-section.is-submitted>h1,
.contact-section.is-submitted>p,
.contact-section.is-submitted>.contact-form {
	display: none;
}

.contact-form {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.contact-form label {
	color: #334e68;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.3;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 12px;
	padding: 12px 14px;
	color: #102a43;
	background: #ffffff;
	border: 1px solid #bcccdc;
	border-radius: 6px;
	font: inherit;
	font-weight: 500;
	line-height: 1.5;
}

.contact-form button[type="submit"] {
	min-height: 48px;
	margin-top: 8px;
	padding: 0 18px;
	color: #ffffff;
	background: #1f8f4d;
	border: 0;
	border-radius: 6px;
	font: inherit;
	font-size: 0.96rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
	cursor: pointer;
	transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus {
	background: #166f3b;
	box-shadow: 0 10px 22px rgba(22, 111, 59, 0.24);
	transform: scale(1.035);
}

.contact-form button[type="submit"]:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.contact-success {
	margin-top: 32px;
	padding: 28px 24px;
	text-align: center;
	background: #ffffff;
	border: 1px solid #d9e2ec;
	border-radius: 8px;
	box-shadow: 0 16px 32px rgba(16, 42, 67, 0.12);
}

.contact-success h2 {
	font-size: 1.55rem;
}

.contact-success p {
	margin-top: 10px;
}

.site-footer {
	padding: 36px 24px;
	color: #334e68;
	background: #ffffff;
	border-top: 1px solid #d9e2ec;
}

.site-footer-inner {
	display: grid;
	gap: 22px;
	justify-items: center;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.site-footer-logo {
	color: #102a43;
}

.site-footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	justify-content: center;
}

.site-footer-nav a {
	color: #334e68;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.3;
	text-decoration: none;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus {
	color: #0f609b;
}

.site-footer p {
	color: #52606d;
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.55;
}

.contact-footer {
	padding: 18px 24px;
}

.contact-footer .site-footer-inner {
	gap: 32px;
}

@media (min-width: 720px) {
	.site-header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.site-header-row {
		display: block;
	}

	.menu-toggle {
		display: none;
	}

	.site-nav {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		gap: 24px;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	#hero {
		padding: 145px 48px 64px;
	}

	h1 {
		font-size: 3.6rem;
	}

	h2 {
		font-size: 2.45rem;
	}

	.hero-content h3 {
		font-size: 1.15rem;
	}

	.hero-form {
		flex-direction: row;
	}

	.address-field {
		flex: 1;
	}

	.content-section {
		padding: 96px 48px;
	}

	.contact-hero-slice {
		padding-right: 48px;
		padding-left: 48px;
		background-position: center 35%;
	}

	.contact-step {
		font-size: 0.9rem;
	}

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

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

	.final-cta-inner {
		justify-items: center;
		text-align: center;
	}

	.site-footer {
		padding: 42px 48px;
	}

	.site-footer-inner {
		grid-template-columns: auto 1fr auto;
		align-items: center;
		text-align: left;
	}

	.site-footer-nav {
		justify-content: center;
	}

	.contact-footer {
		padding: 18px 48px;
	}

	.contact-footer .site-footer-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
		gap: 32px;
		text-align: left;
	}
}

@media (min-width: 1024px) {
	.site-header {
		padding-right: 20%;
		padding-left: 20%;
	}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.menu-toggle,
	.nav-button,
	.hero-button,
	.address-suggestions button,
	.feature-card,
	.step-item,
	.faq-list details,
	.section-cta-button,
	.section-button,
	.contact-form button[type="submit"] {
		transition: none;
	}

	.menu-toggle:hover,
	.menu-toggle:focus,
	.nav-button:hover,
	.nav-button:focus,
	.hero-button:hover,
	.hero-button:focus,
	.address-suggestions button:hover,
	.address-suggestions button:focus,
	.feature-card:hover,
	.feature-card:focus-within,
	.step-item:hover,
	.step-item:focus-within,
	.faq-list details:hover,
	.faq-list details:focus-within,
	.faq-list details[open],
	.section-cta-button:hover,
	.section-cta-button:focus,
	.section-button:hover,
	.section-button:focus,
	.contact-form button[type="submit"]:hover,
	.contact-form button[type="submit"]:focus {
		transform: none;
	}
}
