.home-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: 660px;
	overflow: hidden;
	background:
		linear-gradient(105deg, rgba(8, 31, 43, 0.9), rgba(12, 116, 113, 0.74) 54%, rgba(244, 182, 61, 0.22)),
		url("/images/home-hero-house-01.webp") center center / cover no-repeat;
}

.home-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 110px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
	pointer-events: none;
}

.home-hero-inner {
	position: relative;
	z-index: 1;
	width: calc(100% - 32px);
	max-width: 1140px;
	margin: 0 auto;
	padding: 72px 0 128px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(350px, 420px);
	gap: 48px;
	align-items: start;
}

.home-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	color: #f8dd9b;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.home-eyebrow::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 3px;
	border-radius: 99px;
	background: #f4b63d;
}

.home-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: 64px;
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: 0;
}

.home-lede {
	max-width: 650px;
	margin: 22px 0 28px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 19px;
	line-height: 1.58;
}

.home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.home-primary-link {
	color: #0f5e5d;
	font-weight: 800;
}

.home-trust-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 660px;
	margin-top: 28px;
}

.home-trust-row span {
	min-height: 54px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-weight: 800;
	backdrop-filter: blur(8px);
}

.home-quote-panel {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 24px 72px rgba(5, 24, 35, 0.32);
}

.home-quote-panel::before {
	content: "";
	display: block;
	height: 5px;
	margin: -24px -24px 22px;
	border-radius: 8px 8px 0 0;
	background: linear-gradient(90deg, #0f766e, #f4b63d, #dc6b57);
}

.home-panel-head h2 {
	margin: 0;
	color: #13202b;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.15;
}

.home-panel-head p {
	margin: 9px 0 20px;
	color: #5c6975;
	font-size: 14px;
	line-height: 1.45;
}

.home-quote-panel label {
	display: block;
	margin-bottom: 7px;
	color: #5c6975;
	font-size: 13px;
	font-weight: 800;
}

.home-quote-panel .form-control {
	min-height: 48px;
	margin-bottom: 14px;
	border-color: #d8e2e6;
	border-radius: 8px;
}

.home-quote-panel .form-control:focus {
	border-color: #0f766e;
	box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.16);
}

.home-quote-panel button {
	min-height: 50px;
	margin-top: 4px;
	border-radius: 8px;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(220, 53, 69, 0.2);
}

.home-panel-note {
	margin: 14px 0 0;
	color: #6b7785;
	font-size: 12px;
	line-height: 1.45;
}

.home-content {
	position: relative;
	z-index: 2;
	width: calc(100% - 32px);
	max-width: 1140px;
	margin: -70px auto 0;
}

.home-offer-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.home-offer-card {
	min-height: 226px;
	border: 1px solid #d8e2e6;
	border-top: 4px solid #0f766e;
	border-radius: 8px;
	background: #fff;
	padding: 22px;
	box-shadow: 0 14px 42px rgba(18, 32, 43, 0.08);
}

.home-offer-card:nth-child(2) {
	border-top-color: #f4b63d;
}

.home-offer-card:nth-child(3) {
	border-top-color: #dc6b57;
}

.home-offer-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 8px;
	color: #fff;
	background: #26384c;
	font-size: 18px;
}

.home-offer-card:nth-child(2) .home-offer-icon {
	background: #0f766e;
}

.home-offer-card:nth-child(3) .home-offer-icon {
	background: #dc6b57;
}

.home-offer-card h3 {
	margin: 0;
	color: #13202b;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.18;
}

.home-offer-card p {
	margin: 10px 0 18px;
	color: #5c6975;
	line-height: 1.55;
}

.home-offer-card a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	border: 1px solid #d8e2e6;
	border-radius: 8px;
	padding: 0 13px;
	text-decoration: none;
	color: #13202b;
	background: #f4f8f7;
	font-weight: 800;
}

.home-offer-card a:hover {
	border-color: #0f766e;
	color: #115e59;
}

.home-section {
	padding: 58px 0 40px;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 42px;
	align-items: start;
}

.home-section h2,
.home-resource-band h2 {
	margin: 0;
	color: #13202b;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: 0;
}

.home-section p,
.home-resource-band p {
	margin: 14px 0 0;
	color: #5c6975;
	font-size: 17px;
	line-height: 1.65;
}

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

.home-feature {
	border-top: 3px solid #f4b63d;
	padding: 14px 0 0;
}

.home-feature strong {
	display: block;
	margin-bottom: 5px;
	color: #13202b;
}

.home-feature span {
	color: #5c6975;
	line-height: 1.55;
}

.home-resource-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	gap: 28px;
	align-items: center;
	margin-bottom: 54px;
	padding: 28px;
	border: 1px solid #d8e2e6;
	border-radius: 8px;
	background: linear-gradient(135deg, #f5fbfa, #ffffff);
}

.home-resource-links {
	display: grid;
	gap: 10px;
}

.home-resource-links a {
	display: flex;
	align-items: center;
	min-height: 48px;
	border: 1px solid #d8e2e6;
	border-radius: 8px;
	padding: 0 14px;
	color: #13202b;
	background: #fff;
	font-weight: 800;
	text-decoration: none;
}

.home-resource-links a:hover {
	border-color: #0f766e;
	color: #115e59;
}

@media (max-width: 991.98px) {
	.home-hero {
		min-height: auto;
		background-position: center top;
	}

	.home-hero-inner {
		grid-template-columns: 1fr;
		padding-top: 44px;
		gap: 28px;
	}

	.home-hero h1 {
		font-size: 52px;
	}

	.home-section h2,
	.home-resource-band h2 {
		font-size: 34px;
	}

	.home-offer-row,
	.home-section,
	.home-feature-grid,
	.home-resource-band {
		grid-template-columns: 1fr;
	}

	.home-content {
		margin-top: -58px;
	}
}

@media (max-width: 575.98px) {
	.home-hero {
		left: 50%;
		width: 100vw;
		max-width: 100vw;
		margin-left: -50vw;
		margin-right: 0;
		background:
			linear-gradient(180deg, rgba(8, 31, 43, 0.92), rgba(12, 116, 113, 0.82)),
			url("/images/home-hero-house-01.webp") center top / cover no-repeat;
	}

	.home-hero-inner,
	.home-content {
		width: calc(100vw - 24px);
		max-width: calc(100vw - 24px);
	}

	.home-hero-inner {
		margin-left: auto;
		margin-right: auto;
		padding-top: 34px;
		padding-bottom: 96px;
		gap: 22px;
	}

	.home-hero h1 {
		max-width: 100%;
		font-size: 34px;
		line-height: 1.06;
	}

	.home-hero-copy,
	.home-quote-panel {
		width: calc(100vw - 24px);
		min-width: 0;
		max-width: calc(100vw - 24px);
	}

	.home-hero h1,
	.home-lede {
		width: calc(100vw - 24px);
		max-width: 100%;
		white-space: normal;
		overflow-wrap: break-word;
	}

	.home-lede {
		font-size: 16px;
		line-height: 1.55;
	}

	.home-hero-actions .btn {
		width: 100%;
	}

	.home-trust-row {
		grid-template-columns: 1fr;
	}

	.home-quote-panel {
		padding: 20px;
	}

	.home-quote-panel::before {
		margin: -20px -20px 18px;
	}

	.home-offer-card {
		min-height: 0;
	}

	.home-resource-band {
		padding: 20px;
	}
}
