/*
Theme Name: Haul Factor
Author: Haul Factor
Version: 1.0.0
*/

/* =========================
   Haul Factor Header
========================= */

.hf-header {
	background: #ffffff;
	border-bottom: 1px solid #eef1f4;
}

.hf-header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.hf-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.hf-logo img {
	display: block;
	width: 170px;
	height: auto;
}

.hf-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.hf-nav a {
	color: #03002e;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.hf-nav a:hover {
	color: #1ab67b;
}

.hf-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1ab67b;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	padding: 14px 22px;
	border-radius: 999px;
	white-space: nowrap;
	transition: 0.2s ease;
}

.hf-header-cta:hover {
	background: #159a68;
	transform: translateY(-1px);
}
/* =========================
   Homepage Hero
========================= */
/* =========================
   Homepage Hero
========================= */

.hf-hero {
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.90) 25%,
            rgba(255, 255, 255, 0.55) 40%,
            rgba(255, 255, 255, 0) 55%
        ),
        url("assets/images/home-desktop.png");

    background-size: 100% 100%;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hf-hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 54%) minmax(0, 46%);
	min-height: 610px;
}

.hf-hero-content {
	padding: 72px 52px 92px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hf-hero-content h1 {
	margin: 0 0 24px;
	max-width: 620px;
	font-size: clamp(54px, 4.6vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.8px;
	color: #03002e;
	font-weight: 800;
}

.hf-hero-content h1 span {
	color: #1ab67b;
}

.hf-hero-content p {
	max-width: 555px;
	margin: 0 0 30px;
	font-size: 17px;
	line-height: 1.65;
	color: #3f4657;
}

.hf-primary-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 16px 30px;
	background: #1ab67b;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	border-radius: 999px;
	font-size: 15px;
	line-height: 1;
	transition: 0.2s ease;
}

.hf-primary-cta:hover {
	background: #159a68;
	transform: translateY(-1px);
}

.hf-hero-note {
	margin-top: 17px;
	font-size: 13px;
	color: #667080;
}

.hf-hero-mobile-image {
	display: none;
}

/* =========================
   Hero Trust Row
========================= */

.hf-trust-row {
	max-width: 1280px;
	margin: -55px auto 42px;
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #ffffff;
	border: 1px solid #e9edf1;
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(3, 0, 46, 0.09);
	overflow: hidden;
}

.hf-trust-card {
	min-height: 190px;
	padding: 30px 28px 26px;
	text-align: center;
	border-right: 1px solid #e9edf1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.hf-trust-card:last-child {
	border-right: 0;
}

.hf-trust-icon {
	width: 46px;
	height: 46px;
	margin: 0 auto 16px;
	border: 2px solid #1ab67b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1ab67b;
	font-weight: 800;
	font-size: 19px;
	flex-shrink: 0;
}

.hf-trust-card h3 {
	margin: 0 0 10px;
	color: #03002e;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 800;
}

.hf-trust-card p {
	max-width: 220px;
	margin: 0;
	color: #5f6675;
	font-size: 13px;
	line-height: 1.55;
}@media (max-width: 1050px) {

	.hf-hero-inner {
		grid-template-columns: minmax(0, 58%) minmax(0, 42%);
	}

	.hf-hero-content {
		padding: 55px 30px 85px 24px;
	}

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

	.hf-trust-row {
		max-width: calc(100% - 48px);
	}
}

@media (max-width: 820px) {

	.hf-hero {
		background:
			linear-gradient(
				180deg,
				#ffffff 0%,
				#ffffff 52%,
				rgba(255, 255, 255, 0.88) 66%,
				rgba(255, 255, 255, 0.2) 100%
			),
			url("assets/images/home-mobile.png");
		background-size: cover;
		background-position: center bottom;
		background-repeat: no-repeat;
	}

	.hf-hero-inner {
		grid-template-columns: 1fr;
		min-height: 650px;
	}

	.hf-hero-content {
		padding: 48px 24px 270px;
	}

	.hf-hero-content h1 {
		max-width: 600px;
		font-size: 52px;
	}

	.hf-trust-row {
		grid-template-columns: repeat(2, 1fr);
		margin: 24px;
		max-width: none;
	}

	.hf-trust-card:nth-child(2) {
		border-right: 0;
	}
}

@media (max-width: 560px) {

	.hf-hero {
		background: #ffffff;
	}

	.hf-hero-content h1 {
		font-size: 43px;
		line-height: 1.04;
		letter-spacing: -1.8px;
	}

	.hf-hero-content p {
		font-size: 15px;
	}

	.hf-hero-inner {
		min-height: 0;
	}

	.hf-hero-content {
		padding: 42px 20px 0;
	}

	.hf-hero-mobile-image {
		position: relative;
		display: block;
		width: 100%;
		height: clamp(260px, 74vw, 330px);
		margin: 24px 0 0;
		overflow: hidden;
		background: #ffffff;
		border: 1px solid #e8edf2;
		border-radius: 16px;
		box-shadow: 0 10px 30px rgba(3, 0, 46, 0.05);
	}

	.hf-hero-mobile-image::after {
		content: "";
		position: absolute;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 30px;
		pointer-events: none;
		bottom: 0;
		background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	}

	.hf-hero-mobile-image img {
		display: block;
		width: 100%;
		height: 100%;
		border-radius: inherit;
		object-fit: cover;
		object-position: center center;
	}

	.hf-shield-standard {
		padding-top: 32px;
	}

	.hf-shield-standard .hf-container {
		box-sizing: border-box;
		padding-left: 20px;
		padding-right: 20px;
	}

	.hf-trust-row {
		grid-template-columns: 1fr;
		margin: 18px;
	}

	.hf-trust-card {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid #e9edf1;
	}

	.hf-trust-card:last-child {
		border-bottom: 0;
	}
}/* =========================
   One Rule Section
========================= */

.hf-rule-section {
	background: #03002e;
	color: #ffffff;
	padding: 58px 24px;
}

.hf-rule-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 40px;
	align-items: center;
}

.hf-rule-icon {
	width: 100px;
	height: 120px;
	border: 5px solid #1ab67b;
	border-radius: 48% 48% 55% 55%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1ab67b;
	font-size: 44px;
	font-weight: 800;
}

.hf-rule-content h2 {
	margin: 0 0 14px;
	font-size: 38px;
	line-height: 1.1;
	color: #ffffff;
}

.hf-rule-content h2 span {
	color: #1ab67b;
}

.hf-rule-content p {
	max-width: 780px;
	margin: 0 0 14px;
	font-size: 18px;
	line-height: 1.6;
	color: #e8ebf2;
}

.hf-rule-content strong {
	display: block;
	margin-bottom: 18px;
}

.hf-rule-content a {
	color: #1ab67b;
	font-weight: 700;
	text-decoration: none;
}


/* =========================
   Screening Cards
========================= */

.hf-screening-section {
	padding: 80px 24px;
	background: #ffffff;
}

.hf-section-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 42px;
}

.hf-section-heading span {
	color: #1ab67b;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
}

.hf-section-heading h2 {
	margin: 8px 0 10px;
	font-size: 42px;
	line-height: 1.1;
	color: #03002e;
}

.hf-section-heading p {
	margin: 0;
	color: #5f6675;
	font-size: 17px;
}

.hf-screening-grid {
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.hf-screening-card {
	border: 1px solid #e8edf2;
	border-radius: 16px;
	padding: 30px 26px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(3, 0, 46, 0.05);
}

.hf-screening-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #e9f8f2;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 20px;
}

.hf-screening-card h3 {
	margin: 0 0 18px;
	font-size: 20px;
	color: #03002e;
}

.hf-screening-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hf-screening-card li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #5f6675;
}

.hf-screening-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #1ab67b;
	font-weight: 700;
}

@media (max-width: 1000px) {
	.hf-screening-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hf-rule-inner {
		grid-template-columns: 100px 1fr;
	}
}

@media (max-width: 640px) {
	.hf-rule-inner {
		grid-template-columns: 1fr;
	}

	.hf-rule-icon {
		width: 80px;
		height: 95px;
	}

	.hf-rule-content h2 {
		font-size: 32px;
	}

	.hf-screening-grid {
		grid-template-columns: 1fr;
	}

	.hf-section-heading h2 {
		font-size: 34px;
	}
}
/* =========================
   How It Works
========================= */

.hf-how-section {
	padding: 90px 24px;
	background: #f6f8fa;
}

.hf-how-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.hf-how-card {
	background: #ffffff;
	padding: 34px;
	border-radius: 16px;
	border: 1px solid #e8edf2;
}

.hf-how-number {
	font-size: 42px;
	font-weight: 800;
	color: #1ab67b;
	line-height: 1;
	margin-bottom: 24px;
}

.hf-how-card h3 {
	margin: 0 0 14px;
	font-size: 22px;
	color: #03002e;
	line-height: 1.25;
}

.hf-how-card p {
	margin: 0;
	color: #5f6675;
	line-height: 1.65;
}

.hf-center-link {
	text-align: center;
	margin-top: 32px;
}

.hf-center-link a {
	color: #1ab67b;
	font-weight: 700;
	text-decoration: none;
}


/* =========================
   Built For
========================= */

.hf-built-section {
	padding: 90px 24px;
	background: #ffffff;
}

.hf-built-inner {
	max-width: 1250px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 70px;
	align-items: center;
}

.hf-eyebrow {
	display: block;
	color: #1ab67b;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.hf-built-copy h2 {
	margin: 0 0 18px;
	font-size: 44px;
	line-height: 1.08;
	color: #03002e;
}

.hf-built-copy p {
	margin: 0 0 26px;
	color: #5f6675;
	font-size: 17px;
	line-height: 1.7;
}

.hf-built-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.hf-built-card {
	background: #f6f8fa;
	border-radius: 16px;
	padding: 28px;
	border: 1px solid #edf0f4;
}

.hf-built-card span {
	display: block;
	color: #1ab67b;
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 14px;
}

.hf-built-card h3 {
	margin: 0 0 10px;
	color: #03002e;
	font-size: 20px;
}

.hf-built-card p {
	margin: 0;
	color: #5f6675;
	font-size: 14px;
	line-height: 1.6;
}


/* =========================
   Final CTA
========================= */

.hf-final-cta {
	background: #1ab67b;
	padding: 62px 24px;
}

.hf-final-cta-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.hf-final-cta h2 {
	margin: 0 0 12px;
	font-size: 38px;
	line-height: 1.1;
	color: #ffffff;
}

.hf-final-cta p {
	margin: 0;
	max-width: 750px;
	color: #ecfff8;
	font-size: 16px;
	line-height: 1.6;
}

.hf-eyebrow-light {
	color: #d8fff0;
}

.hf-final-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #03002e;
	color: #ffffff;
	text-decoration: none;
	padding: 16px 28px;
	border-radius: 999px;
	font-weight: 700;
}


/* Responsive */

@media (max-width: 900px) {
	.hf-how-grid {
		grid-template-columns: 1fr;
	}

	.hf-built-inner {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.hf-final-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.hf-built-grid {
		grid-template-columns: 1fr;
	}

	.hf-built-copy h2,
	.hf-final-cta h2 {
		font-size: 32px;
	}
}
/* =========================
   Free Always
========================= */

.hf-free-section {
	padding: 70px 24px;
	background: #f6f8fa;
}

.hf-free-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.hf-free-inner h2 {
	margin: 0 0 14px;
	font-size: 38px;
	line-height: 1.1;
	color: #03002e;
}

.hf-free-inner p {
	max-width: 750px;
	margin: 0;
	color: #5f6675;
	font-size: 17px;
	line-height: 1.7;
}

.hf-outline-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 2px solid #1ab67b;
	color: #1ab67b;
	text-decoration: none;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 700;
}

.hf-outline-button:hover {
	background: #1ab67b;
	color: #ffffff;
}


/* =========================
   FAQ Preview
========================= */

.hf-faq-preview {
	padding: 90px 24px;
	background: #ffffff;
}

.hf-faq-list {
	max-width: 900px;
	margin: 0 auto;
	border-top: 1px solid #e8edf2;
}

.hf-faq-item {
	border-bottom: 1px solid #e8edf2;
	padding: 0;
}

.hf-faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 24px 48px 24px 0;
	font-size: 18px;
	font-weight: 700;
	color: #03002e;
	position: relative;
}

.hf-faq-item summary::-webkit-details-marker {
	display: none;
}

.hf-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	color: #1ab67b;
	font-size: 26px;
	font-weight: 500;
}

.hf-faq-item[open] summary::after {
	content: "−";
}

.hf-faq-item p {
	margin: 0;
	padding: 0 50px 24px 0;
	color: #5f6675;
	font-size: 16px;
	line-height: 1.7;
}

@media (max-width: 700px) {
	.hf-free-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.hf-free-inner h2 {
		font-size: 32px;
	}
}

/* =========================
   Footer CTA + Footer
========================= */

.hf-footer-cta {
	background: #1ab67b;
	padding: 46px 24px;
}

.hf-footer-cta-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.hf-footer-cta h2 {
	margin: 0 0 8px;
	color: #ffffff;
	font-size: 34px;
	line-height: 1.12;
	font-weight: 800;
}

.hf-footer-cta p {
	margin: 0;
	color: #ecfff8;
	font-size: 16px;
	line-height: 1.55;
}

.hf-footer-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #ffffff;
	color: #03002e;
	text-decoration: none;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	padding: 16px 28px;
	border-radius: 999px;
	box-shadow: 0 12px 24px rgba(3, 0, 46, 0.14);
}

.hf-footer-cta-button:hover {
	background: #03002e;
	color: #ffffff;
}

.hf-footer {
	background: #03002e;
	color: #ffffff;
	padding: 60px 24px 40px;
}

.hf-footer-inner {
	max-width: 1240px;
	margin: 0 auto;
}

.hf-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.9fr 1.08fr 1fr;
	gap: 0;
}

.hf-footer-brand,
.hf-footer-col {
	padding: 0 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hf-footer-brand {
	padding-left: 0;
	border-left: 0;
}

.hf-footer-logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
}

.hf-footer-logo img {
	display: block;
	width: 170px;
	height: auto;
}

.hf-footer-brand p,
.hf-footer-contact-row p,
.hf-footer-bottom p {
	margin: 0;
}

.hf-footer-brand p {
	max-width: 300px;
	color: #c6ced8;
	font-size: 14px;
	line-height: 1.65;
}

.hf-footer-social {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 22px;
}

.hf-footer-social a {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.hf-footer-social a:hover {
	border-color: #1ab67b;
	background: #1ab67b;
	color: #ffffff;
}

.hf-footer h3 {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 800;
}

.hf-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hf-footer li {
	margin-bottom: 11px;
	line-height: 1.3;
}

.hf-footer a {
	color: #d7dde5;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.35;
}

.hf-footer a:hover {
	color: #1ab67b;
}

.hf-footer-contact-row {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 10px;
	align-items: start;
	margin-bottom: 16px;
	color: #d7dde5;
	font-size: 14px;
	line-height: 1.45;
}

.hf-footer-contact-row span {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(26, 182, 123, 0.5);
	border-radius: 50%;
	color: #1ab67b;
	font-size: 13px;
	font-weight: 800;
}

.hf-footer-contact-row p {
	color: #d7dde5;
	font-size: 14px;
	line-height: 1.45;
}

.hf-footer-bottom {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	color: #aeb8c4;
	font-size: 13px;
}

.hf-footer-legal {
	display: flex;
	align-items: center;
	gap: 24px;
}

.hf-footer-bottom a {
	color: #aeb8c4;
	font-size: 13px;
}

@media (max-width: 980px) {
	.hf-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 34px;
	}

	.hf-footer-brand,
	.hf-footer-col {
		padding: 0 28px 0 0;
		border-left: 0;
	}

	.hf-footer-col:nth-child(2),
	.hf-footer-col:nth-child(4) {
		padding-left: 28px;
		border-left: 1px solid rgba(255, 255, 255, 0.12);
	}
}

@media (max-width: 700px) {
	.hf-footer-cta-inner,
	.hf-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.hf-footer-cta h2 {
		font-size: 30px;
	}

	.hf-footer {
		padding-top: 48px;
	}

	.hf-footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.hf-footer-brand,
	.hf-footer-col,
	.hf-footer-col:nth-child(2),
	.hf-footer-col:nth-child(4) {
		padding: 0;
		border-left: 0;
	}

	.hf-footer-legal {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
/* =====================================================
   ABOUT PAGE
===================================================== */


/* Hero */

.hf-about-hero {
	background: #ffffff;
	padding: 38px 24px 0;
}

.hf-about-hero-inner {
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 44% 56%;
	align-items: stretch;
}

.hf-about-hero-copy {
	padding: 65px 55px 65px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hf-about-hero-copy h1 {
	margin: 8px 0 24px;
	max-width: 560px;
	font-size: clamp(52px, 4.8vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.7px;
	color: #03002e;
	font-weight: 800;
}

.hf-about-hero-copy h1 span {
	color: #1ab67b;
}

.hf-about-hero-copy p {
	max-width: 560px;
	margin: 0 0 18px;
	color: #4c5465;
	font-size: 17px;
	line-height: 1.7;
}

.hf-about-hero-copy .hf-primary-cta {
	margin-top: 14px;
}

.hf-about-hero-image {
	min-height: 540px;
	border-radius: 20px 0 0 20px;
	overflow: hidden;
}

.hf-about-hero-image img {
    width: 130%;
    height: 100%;
    min-height: 540px;
    display: block;
    object-fit: contain;
    object-position: left center;
    transform: translateX(-12%);
}



/* Trust strip */

.hf-about-trust {
	padding: 32px 24px 0;
	background: #ffffff;
}

.hf-about-trust-inner {
	max-width: 1250px;
	margin: 0 auto;
	background: #03002e;
	border-radius: 18px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 42px 20px;
}

.hf-about-trust-item {
	text-align: center;
	padding: 0 26px;
	border-right: 1px solid rgba(255,255,255,.18);
}

.hf-about-trust-item:last-child {
	border-right: 0;
}

.hf-about-trust-icon {
	width: 48px;
	height: 48px;
	border: 2px solid #1ab67b;
	border-radius: 50%;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 20px;
	font-weight: 800;
}

.hf-about-trust-item h3 {
	color: #ffffff;
	font-size: 18px;
	margin: 0 0 9px;
}

.hf-about-trust-item p {
	color: #c9ccda;
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}


/* Story */

.hf-about-story {
	padding: 100px 24px;
	background: #ffffff;
}

.hf-about-story-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 75px;
	align-items: center;
}

.hf-about-story-copy h2 {
	margin: 8px 0 22px;
	font-size: 43px;
	line-height: 1.1;
	letter-spacing: -1.4px;
	color: #03002e;
}

.hf-about-story-copy p {
	color: #5f6675;
	font-size: 16px;
	line-height: 1.75;
	margin: 0 0 18px;
}

.hf-about-story-panel {
	min-height: 440px;
	padding: 50px;
	border-radius: 20px;
	display: flex;
	align-items: flex-end;

	background:
		linear-gradient(
			135deg,
			rgba(3,0,46,.97),
			rgba(3,0,46,.84)
		);
}

.hf-about-story-panel-content span {
	color: #1ab67b;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
}

.hf-about-story-panel-content h3 {
	margin: 10px 0 24px;
	color: #ffffff;
	font-size: 34px;
	line-height: 1.1;
}

.hf-about-story-panel-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 26px;
}

.hf-about-story-panel-content li {
	color: #e9eaf0;
	padding: 8px 0 8px 27px;
	position: relative;
}

.hf-about-story-panel-content li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #1ab67b;
	font-weight: 800;
}

.hf-about-story-panel-content a {
	color: #1ab67b;
	font-weight: 700;
	text-decoration: none;
}


/* Values */

.hf-about-values {
	background: #f6f8fa;
	padding: 90px 24px;
}

.hf-about-values-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 22px;
}

.hf-about-value-card {
	background: #ffffff;
	border: 1px solid #e7ebef;
	border-radius: 16px;
	padding: 34px 28px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(3,0,46,.04);
}

.hf-about-value-icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #e8f8f2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1ab67b;
	font-size: 25px;
	font-weight: 800;
}

.hf-about-value-card h3 {
	margin: 0 0 10px;
	color: #03002e;
	font-size: 19px;
}

.hf-about-value-card p {
	margin: 0;
	color: #5f6675;
	font-size: 14px;
	line-height: 1.65;
}


/* Promise */

.hf-about-promise {
	padding: 85px 24px;
	background: #ffffff;
}

.hf-about-promise-inner {
	max-width: 1200px;
	margin: 0 auto;
	background: #f6f8fa;
	border-radius: 20px;
	padding: 55px 60px;
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 55px;
	align-items: center;
}

.hf-about-promise-shield {
	width: 125px;
	height: 145px;
	border: 6px solid #1ab67b;
	border-radius: 47% 47% 55% 55%;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	font-weight: 800;
}

.hf-about-promise-copy h2 {
	margin: 8px 0 15px;
	font-size: 38px;
	color: #03002e;
	line-height: 1.1;
}

.hf-about-promise-copy h2 span {
	color: #1ab67b;
}

.hf-about-promise-copy > p {
	max-width: 760px;
	color: #5f6675;
	line-height: 1.7;
}

.hf-about-promise-points {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 12px 30px;
	color: #03002e;
	font-size: 14px;
	font-weight: 600;
}

.hf-about-promise-points div::first-letter {
	color: #1ab67b;
}


/* Tablet */

@media (max-width: 950px) {

	.hf-about-hero-inner {
		grid-template-columns: 1fr;
	}

	.hf-about-hero-copy {
		padding: 50px 0 45px;
	}

	.hf-about-hero-image {
		min-height: 430px;
		border-radius: 18px;
	}

	.hf-about-hero-image img {
		min-height: 430px;
	}

	.hf-about-trust-inner {
		grid-template-columns: repeat(2,1fr);
		gap: 35px 0;
	}

	.hf-about-trust-item:nth-child(2) {
		border-right: 0;
	}

	.hf-about-story-inner {
		grid-template-columns: 1fr;
	}

	.hf-about-values-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.hf-about-promise-inner {
		grid-template-columns: 120px 1fr;
	}
}


/* Mobile */

@media (max-width: 600px) {
	.hf-about-promise-shield {
    display: none;
}
.hf-about-promise-copy {
    padding-left: 20px;
    padding-right: 20px;
}

	.hf-about-hero {
		padding: 20px 18px 0;
	}

	.hf-about-hero-copy h1 {
		font-size: 44px;
		letter-spacing: -1.5px;
	}

	.hf-about-hero-copy p {
		font-size: 15px;
	}

	.hf-about-hero-image {
		min-height: 320px;
	}

	.hf-about-hero-image img {
		min-height: 320px;
	}

	.hf-about-trust {
		padding-left: 18px;
		padding-right: 18px;
	}

	.hf-about-trust-inner {
		grid-template-columns: 1fr;
	}

	.hf-about-trust-item {
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.15);
		padding: 25px;
	}

	.hf-about-trust-item:last-child {
		border-bottom: 0;
	}

	.hf-about-story,
	.hf-about-values,
	.hf-about-promise {
		padding: 65px 18px;
	}

	.hf-about-story-copy h2 {
		font-size: 34px;
	}

	.hf-about-story-panel {
		padding: 32px;
		min-height: 380px;
	}

	.hf-about-values-grid {
		grid-template-columns: 1fr;
	}

	.hf-about-promise-inner {
		grid-template-columns: 1fr;
		padding: 35px 28px;
	}

	.hf-about-promise-copy h2 {
		font-size: 31px;
	}

	.hf-about-promise-points {
		grid-template-columns: 1fr;
	}
	.hf-about-hero-image {
    display: none;
}
}
/* =====================================================
   HOW WE SCREEN LENDERS
===================================================== */

/* Hero */

.hf-screen-hero {
	padding: 80px 24px;
	background: #f6f8fa;
}

.hf-screen-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	gap: 75px;
	align-items: center;
}

.hf-screen-hero-copy h1 {
	max-width: 680px;
	margin: 8px 0 24px;
	font-size: clamp(52px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.5px;
	color: #03002e;
}

.hf-screen-hero-copy h1 span {
	color: #1ab67b;
}

.hf-screen-hero-copy p {
	max-width: 600px;
	margin: 0 0 28px;
	color: #5f6675;
	font-size: 18px;
	line-height: 1.7;
}


/* Navy hero card */

.hf-screen-hero-panel {
	background: #03002e;
	border-radius: 22px;
	padding: 48px;
	box-shadow: 0 24px 60px rgba(3,0,46,.15);
}

.hf-panel-label {
	color: #1ab67b;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.2px;
}

.hf-screen-hero-panel h2 {
	color: #ffffff;
	margin: 10px 0 28px;
	font-size: 34px;
	line-height: 1.15;
}

.hf-panel-checks {
	display: grid;
	gap: 13px;
	color: #e8eaf0;
	font-size: 15px;
}

.hf-panel-checks div {
	border-top: 1px solid rgba(255,255,255,.13);
	padding-top: 13px;
}


/* Intro */

.hf-screen-intro {
	padding: 90px 24px 55px;
	background: #ffffff;
}

.hf-screen-intro-inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hf-screen-intro h2 {
	margin: 8px 0 16px;
	color: #03002e;
	font-size: 44px;
	line-height: 1.1;
}

.hf-screen-intro p {
	color: #5f6675;
	font-size: 17px;
	line-height: 1.7;
}


/* Cards */

.hf-screen-checks {
	padding: 20px 24px 100px;
	background: #ffffff;
}

.hf-screen-check-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 26px;
}

.hf-screen-check-card {
	padding: 38px;
	border: 1px solid #e5eaee;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 35px rgba(3,0,46,.045);
}

.hf-screen-card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.hf-screen-number {
	color: #dce1e6;
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
}

.hf-screen-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #e8f8f2;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	font-weight: 800;
}

.hf-screen-check-card h2 {
	margin: 0 0 12px;
	color: #03002e;
	font-size: 27px;
}

.hf-screen-check-card > p {
	color: #5f6675;
	line-height: 1.65;
	margin: 0 0 22px;
}

.hf-screen-check-card h3 {
	color: #03002e;
	font-size: 14px;
	margin: 0 0 13px;
}

.hf-screen-check-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 25px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 11px 20px;
}

.hf-screen-check-card li {
	position: relative;
	padding-left: 22px;
	color: #5f6675;
	font-size: 14px;
}

.hf-screen-check-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #1ab67b;
	font-weight: 800;
}

.hf-screen-warning {
	background: #f6f8fa;
	border-left: 3px solid #1ab67b;
	padding: 15px 18px;
	color: #5f6675;
	font-size: 13px;
	line-height: 1.55;
}

.hf-screen-warning strong {
	color: #03002e;
}


/* Standard */

.hf-screen-standard {
	background: #f6f8fa;
	padding: 90px 24px;
}

.hf-screen-standard-inner {
	max-width: 1150px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 80px;
	align-items: center;
}

.hf-screen-standard-copy h2 {
	margin: 8px 0 17px;
	font-size: 40px;
	line-height: 1.1;
	color: #03002e;
}

.hf-screen-standard-copy p {
	color: #5f6675;
	line-height: 1.7;
	margin: 0 0 25px;
}

.hf-screen-pass-list {
	background: #ffffff;
	border-radius: 18px;
	padding: 12px 35px;
	border: 1px solid #e6eaee;
}

.hf-screen-pass-list > div {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 15px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid #e9edf1;
}

.hf-screen-pass-list > div:last-child {
	border-bottom: 0;
}

.hf-screen-pass-list span {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #e8f8f2;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.hf-screen-pass-list p {
	margin: 0;
	color: #5f6675;
	font-size: 14px;
	line-height: 1.5;
}

.hf-screen-pass-list strong {
	color: #03002e;
}


/* Responsive */

@media (max-width: 900px) {

	.hf-screen-hero-inner,
	.hf-screen-standard-inner {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.hf-screen-check-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {

	.hf-screen-hero {
		padding: 55px 18px;
	}

	.hf-screen-hero-copy h1 {
		font-size: 44px;
	}

	.hf-screen-hero-panel {
		padding: 32px 27px;
	}

	.hf-screen-intro {
		padding: 65px 18px 40px;
	}

	.hf-screen-intro h2 {
		font-size: 34px;
	}

	.hf-screen-checks {
		padding: 10px 18px 65px;
	}

	.hf-screen-check-card {
		padding: 28px 24px;
	}

	.hf-screen-check-card ul {
		grid-template-columns: 1fr;
	}

	.hf-screen-standard {
		padding: 65px 18px;
	}

	.hf-screen-standard-copy h2 {
		font-size: 33px;
	}
}
/* =====================================================
   HOW IT WORKS PAGE
===================================================== */

/* Hero */

.hf-hiw-hero {
	background: #f6f8fa;
	padding: 95px 24px 105px;
	text-align: center;
}

.hf-hiw-hero-inner {
	max-width: 920px;
	margin: 0 auto;
}

.hf-hiw-hero h1 {
	margin: 10px 0 24px;
	font-size: clamp(52px, 5.5vw, 76px);
	line-height: 1.02;
	letter-spacing: -2.8px;
	color: #03002e;
}

.hf-hiw-hero h1 span {
	color: #1ab67b;
}

.hf-hiw-hero p {
	max-width: 720px;
	margin: 0 auto 28px;
	font-size: 18px;
	line-height: 1.7;
	color: #5f6675;
}

.hf-hiw-hero .hf-primary-cta {
	margin: 0 auto;
}

.hf-hiw-hero-note {
	margin-top: 18px;
	color: #697080;
	font-size: 13px;
}


/* Process */

.hf-hiw-process {
	padding: 95px 24px;
	background: #ffffff;
}

.hf-hiw-steps {
	max-width: 1100px;
	margin: 50px auto 0;
	display: grid;
	gap: 28px;
}

.hf-hiw-step {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 40px;
	padding: 45px 50px;
	border: 1px solid #e6eaee;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 10px 35px rgba(3,0,46,.04);
}

.hf-hiw-step-number {
	color: #1ab67b;
	font-size: 60px;
	font-weight: 800;
	line-height: 1;
}

.hf-hiw-step-content > span {
	color: #1ab67b;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
}

.hf-hiw-step-content h2 {
	margin: 8px 0 15px;
	color: #03002e;
	font-size: 31px;
	line-height: 1.15;
}

.hf-hiw-step-content p {
	max-width: 720px;
	color: #5f6675;
	line-height: 1.7;
}

.hf-hiw-step-content ul {
	list-style: none;
	padding: 0;
	margin: 22px 0;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 11px 25px;
}

.hf-hiw-step-content li {
	position: relative;
	padding-left: 22px;
	color: #5f6675;
	font-size: 14px;
}

.hf-hiw-step-content li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #1ab67b;
	font-weight: 800;
}

.hf-hiw-step-content strong {
	color: #03002e;
	font-size: 14px;
}

.hf-hiw-step-content a {
	color: #1ab67b;
	font-weight: 700;
	text-decoration: none;
}


/* Dark middle step */

.hf-hiw-step-dark {
	background: #03002e;
	border-color: #03002e;
}

.hf-hiw-step-dark .hf-hiw-step-content h2,
.hf-hiw-step-dark .hf-hiw-step-content strong {
	color: #ffffff;
}

.hf-hiw-step-dark .hf-hiw-step-content p,
.hf-hiw-step-dark .hf-hiw-step-content li {
	color: #d2d4de;
}


/* Difference */

.hf-hiw-difference {
	padding: 95px 24px;
	background: #f6f8fa;
}

.hf-hiw-difference-inner {
	max-width: 1150px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr .9fr;
	gap: 80px;
	align-items: center;
}

.hf-hiw-difference-copy h2 {
	margin: 8px 0 20px;
	font-size: 42px;
	line-height: 1.1;
	color: #03002e;
}

.hf-hiw-difference-copy p {
	color: #5f6675;
	font-size: 16px;
	line-height: 1.7;
}

.hf-hiw-compare {
	background: #ffffff;
	border: 1px solid #e5eaee;
	border-radius: 20px;
	padding: 28px 35px;
	box-shadow: 0 15px 40px rgba(3,0,46,.05);
}

.hf-hiw-compare-row {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	align-items: center;
}

.hf-hiw-compare-row > span {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 800;
}

.hf-hiw-bad > span {
	background: #f6eaea;
	color: #b84a4a;
}

.hf-hiw-good > span {
	background: #e8f8f2;
	color: #1ab67b;
}

.hf-hiw-compare-row strong {
	color: #03002e;
}

.hf-hiw-compare-row p {
	margin: 3px 0 0;
	color: #5f6675;
	font-size: 13px;
}

.hf-hiw-compare-arrow {
	padding: 12px 0 12px 15px;
	color: #b4bac3;
}


/* After referral */

.hf-hiw-after {
	padding: 95px 24px;
	background: #ffffff;
}

.hf-hiw-after-grid {
	max-width: 1100px;
	margin: 45px auto 0;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 25px;
}

.hf-hiw-after-card {
	padding: 32px;
	border-radius: 16px;
	background: #f6f8fa;
	border: 1px solid #e8ecef;
}

.hf-hiw-after-card > div {
	color: #1ab67b;
	font-weight: 800;
	font-size: 14px;
	margin-bottom: 18px;
}

.hf-hiw-after-card h3 {
	margin: 0 0 10px;
	color: #03002e;
	font-size: 20px;
}

.hf-hiw-after-card p {
	margin: 0;
	color: #5f6675;
	font-size: 14px;
	line-height: 1.65;
}


/* Free */

.hf-hiw-free {
	padding: 75px 24px;
	background: #f6f8fa;
}

.hf-hiw-free-inner {
	max-width: 950px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 35px;
	align-items: center;
}

.hf-hiw-free-icon {
	width: 85px;
	height: 85px;
	border-radius: 50%;
	background: #1ab67b;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
	font-weight: 800;
}

.hf-hiw-free h2 {
	margin: 7px 0 10px;
	color: #03002e;
	font-size: 34px;
}

.hf-hiw-free p {
	margin: 0;
	color: #5f6675;
	line-height: 1.7;
}


/* Responsive */

@media (max-width: 850px) {

	.hf-hiw-difference-inner {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.hf-hiw-after-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {

	.hf-hiw-hero {
		padding: 65px 18px 75px;
	}

	.hf-hiw-hero h1 {
		font-size: 43px;
		letter-spacing: -1.5px;
	}

	.hf-hiw-process,
	.hf-hiw-difference,
	.hf-hiw-after {
		padding: 65px 18px;
	}

	.hf-hiw-step {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 30px 25px;
	}

	.hf-hiw-step-number {
		font-size: 45px;
	}

	.hf-hiw-step-content ul {
		grid-template-columns: 1fr;
	}

	.hf-hiw-difference-copy h2 {
		font-size: 34px;
	}

	.hf-hiw-free {
		padding: 60px 18px;
	}

	.hf-hiw-free-inner {
		grid-template-columns: 1fr;
	}

	.hf-hiw-free h2 {
		font-size: 30px;
	}

	.hf-hiw-step,
	.hf-hiw-step-content,
	.hf-hiw-step-content p,
	.hf-hiw-step-content strong,
	.hf-hiw-difference-copy,
	.hf-hiw-after-card,
	.hf-hiw-free-inner {
		text-align: center;
	}

	.hf-hiw-step {
		justify-items: center;
		box-sizing: border-box;
	}

	.hf-hiw-step-number,
	.hf-hiw-after-card > div,
	.hf-hiw-free-icon {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.hf-hiw-step-content ul {
		justify-items: center;
		text-align: left;
	}

	.hf-hiw-step-content p,
	.hf-hiw-free p {
		margin-left: auto;
		margin-right: auto;
	}

	.hf-hiw-compare-row {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.hf-hiw-compare-arrow {
		padding-left: 0;
		text-align: center;
	}

	.hf-hiw-free-inner {
		justify-items: center;
	}
}
/* =====================================================
   WHAT MAKES US DIFFERENT
===================================================== */


/* Hero */

.hf-diff-hero {
	padding: 90px 24px;
	background: #ffffff;
}

.hf-diff-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 80px;
	align-items: center;
}

.hf-diff-hero-copy h1 {
	margin: 8px 0 24px;
	max-width: 700px;
	font-size: clamp(52px, 5vw, 74px);
	line-height: 1.02;
	letter-spacing: -2.8px;
	color: #03002e;
}

.hf-diff-hero-copy h1 span {
	display: block;
	color: #1ab67b;
}

.hf-diff-hero-copy p {
	max-width: 610px;
	margin: 0 0 16px;
	color: #5f6675;
	font-size: 17px;
	line-height: 1.7;
}

.hf-diff-hero-copy .hf-primary-cta {
	margin-top: 14px;
}

.hf-diff-hero-card {
	background: #03002e;
	border-radius: 22px;
	padding: 50px;
	box-shadow: 0 25px 60px rgba(3,0,46,.15);
}

.hf-diff-hero-card h2 {
	margin: 10px 0 28px;
	color: #ffffff;
	font-size: 35px;
	line-height: 1.15;
}

.hf-diff-hero-points {
	display: grid;
	gap: 15px;
}

.hf-diff-hero-points div {
	padding: 14px 0;
	border-top: 1px solid rgba(255,255,255,.15);
	color: #e7e9ef;
	font-size: 15px;
}


/* Risks */

.hf-diff-why {
	padding: 95px 24px;
	background: #f6f8fa;
}

.hf-diff-risk-grid {
	max-width: 1200px;
	margin: 45px auto 0;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 22px;
}

.hf-diff-risk-card {
	padding: 32px 28px;
	background: #ffffff;
	border: 1px solid #e6eaee;
	border-radius: 16px;
}

.hf-diff-risk-icon {
	width: 52px;
	height: 52px;
	background: #e8f8f2;
	border-radius: 50%;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 20px;
}

.hf-diff-risk-card h3 {
	margin: 0 0 11px;
	color: #03002e;
	font-size: 20px;
}

.hf-diff-risk-card p {
	margin: 0;
	color: #5f6675;
	font-size: 14px;
	line-height: 1.65;
}


/* Comparison */

.hf-diff-comparison {
	padding: 95px 24px;
	background: #ffffff;
}

.hf-diff-table {
	max-width: 1050px;
	margin: 45px auto 0;
	border: 1px solid #e5eaee;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(3,0,46,.05);
}

.hf-diff-table-row {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr;
}

.hf-diff-table-row > div {
	padding: 18px 24px;
	border-bottom: 1px solid #e8ecf0;
}

.hf-diff-table-row > div + div {
	border-left: 1px solid #e8ecf0;
}

.hf-diff-table-row:last-child > div {
	border-bottom: 0;
}

.hf-diff-table-head {
	background: #03002e;
	color: #ffffff;
	font-weight: 700;
}

.hf-diff-table-head > div {
	border-color: rgba(255,255,255,.12);
}

.hf-diff-no {
	color: #7c8492;
}

.hf-diff-yes {
	color: #128d61;
	font-weight: 700;
	background: #f2fbf7;
}


/* Promises */

.hf-diff-promises {
	padding: 95px 24px;
	background: #f6f8fa;
}

.hf-diff-promise-grid {
	max-width: 1200px;
	margin: 45px auto 0;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 24px;
}

.hf-diff-promise {
	padding: 36px;
	background: #ffffff;
	border: 1px solid #e6eaee;
	border-radius: 18px;
}

.hf-diff-promise > span {
	display: block;
	color: #1ab67b;
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 17px;
}

.hf-diff-promise h3 {
	margin: 0 0 12px;
	color: #03002e;
	font-size: 23px;
}

.hf-diff-promise p {
	margin: 0;
	color: #5f6675;
	line-height: 1.7;
}


/* Rule */

.hf-diff-rule {
	padding: 90px 24px;
	background: #ffffff;
}

.hf-diff-rule-inner {
	max-width: 1050px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 50px;
	align-items: center;
	background: #03002e;
	border-radius: 22px;
	padding: 55px 60px;
}

.hf-diff-rule-icon {
	width: 105px;
	height: 125px;
	border: 5px solid #1ab67b;
	border-radius: 48% 48% 55% 55%;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	font-weight: 800;
}

.hf-diff-rule .hf-eyebrow {
	color: #1ab67b;
}

.hf-diff-rule h2 {
	margin: 8px 0 16px;
	color: #ffffff;
	font-size: 38px;
	line-height: 1.1;
}

.hf-diff-rule h2 span {
	color: #1ab67b;
}

.hf-diff-rule p {
	max-width: 700px;
	margin: 0 0 24px;
	color: #d3d6df;
	line-height: 1.7;
}

.hf-diff-rule .hf-outline-button {
	border-color: #1ab67b;
	color: #1ab67b;
}


/* Responsive */

@media (max-width: 950px) {

	.hf-diff-hero-inner {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.hf-diff-risk-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.hf-diff-rule-inner {
		grid-template-columns: 110px 1fr;
	}
}

@media (max-width: 700px) {

	.hf-diff-table {
		overflow-x: auto;
	}

	.hf-diff-table-row {
		min-width: 720px;
	}

	.hf-diff-promise-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {

	.hf-diff-hero,
	.hf-diff-why,
	.hf-diff-comparison,
	.hf-diff-promises,
	.hf-diff-rule {
		padding: 65px 18px;
	}

	.hf-diff-hero-copy h1 {
		font-size: 43px;
		letter-spacing: -1.5px;
	}

	.hf-diff-hero-card {
		padding: 32px 27px;
	}

	.hf-diff-risk-grid {
		grid-template-columns: 1fr;
	}

	.hf-diff-rule-inner {
		grid-template-columns: 1fr;
		padding: 35px 28px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hf-diff-rule h2 {
		font-size: 31px;
	}

	.hf-diff-rule .hf-outline-button {
		display: inline-flex;
		width: auto;
		max-width: 100%;
		box-sizing: border-box;
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		white-space: normal;
		overflow-wrap: anywhere;
		text-align: center;
	}
}
/* =====================================================
   FAQ PAGE
===================================================== */


/* Hero */

.hf-faq-hero {
	padding: 95px 24px;
	background: #f6f8fa;
	text-align: center;
}

.hf-faq-hero-inner {
	max-width: 850px;
	margin: 0 auto;
}

.hf-faq-hero h1 {
	margin: 8px 0 22px;
	font-size: clamp(52px, 5.5vw, 74px);
	line-height: 1.02;
	letter-spacing: -2.7px;
	color: #03002e;
}

.hf-faq-hero h1 span {
	color: #1ab67b;
}

.hf-faq-hero p {
	max-width: 650px;
	margin: 0 auto 28px;
	color: #5f6675;
	font-size: 17px;
	line-height: 1.7;
}

.hf-faq-hero .hf-primary-cta {
	margin: 0 auto;
}


/* Main */

.hf-faq-main {
	padding: 90px 24px;
	background: #ffffff;
}

.hf-faq-layout {
	max-width: 1150px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0,1fr) 330px;
	gap: 65px;
	align-items: start;
}

.hf-faq-content > h2 {
	margin: 8px 0 34px;
	font-size: 42px;
	line-height: 1.1;
	color: #03002e;
}


/* Accordion */

.hf-faq-accordion {
	border-top: 1px solid #e6eaee;
}

.hf-faq-full-item {
	border-bottom: 1px solid #e6eaee;
}

.hf-faq-full-item summary {
	cursor: pointer;
	list-style: none;
	position: relative;
	padding: 25px 52px 25px 0;
	color: #03002e;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.hf-faq-full-item summary::-webkit-details-marker {
	display: none;
}

.hf-faq-full-item summary::after {
	content: "+";
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #e8f8f2;
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 500;
}

.hf-faq-full-item[open] summary::after {
	content: "−";
}

.hf-faq-full-item p {
	margin: 0;
	padding: 0 50px 25px 0;
	color: #5f6675;
	font-size: 15px;
	line-height: 1.75;
}


/* Side Card */

.hf-faq-side-card {
	position: sticky;
	top: 30px;
	background: #03002e;
	color: #ffffff;
	border-radius: 20px;
	padding: 36px 32px;
}

.hf-faq-side-card h3 {
	margin: 8px 0 13px;
	color: #ffffff;
	font-size: 28px;
	line-height: 1.15;
}

.hf-faq-side-card p {
	margin: 0 0 22px;
	color: #cfd2dc;
	font-size: 14px;
	line-height: 1.65;
}

.hf-faq-contact-btn {
	display: inline-flex;
	color: #1ab67b;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
}

.hf-faq-side-divider {
	height: 1px;
	background: rgba(255,255,255,.15);
	margin: 28px 0;
}

.hf-faq-side-card strong {
	display: block;
	margin-bottom: 17px;
	font-size: 15px;
}

.hf-faq-side-card .hf-primary-cta {
	width: 100%;
	box-sizing: border-box;
}


/* Responsive */

@media (max-width: 850px) {

	.hf-faq-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.hf-faq-side-card {
		position: static;
	}
}

@media (max-width: 600px) {

	.hf-faq-hero {
		padding: 65px 18px;
	}

	.hf-faq-hero h1 {
		font-size: 43px;
		letter-spacing: -1.5px;
	}

	.hf-faq-main {
		padding: 65px 18px;
	}

	.hf-faq-content > h2 {
		font-size: 33px;
	}

	.hf-faq-full-item summary {
		font-size: 16px;
		padding-right: 45px;
	}

	.hf-faq-full-item p {
		padding-right: 0;
	}

	.hf-faq-side-card {
		padding: 30px 25px;
	}
}
/* =====================================================
   CONTACT PAGE
===================================================== */

.hf-contact-hero {
	padding: 90px 24px;
	background: #f6f8fa;
}

.hf-contact-hero-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 80px;
	align-items: center;
}

.hf-contact-hero-copy h1 {
	margin: 8px 0 22px;
	font-size: clamp(52px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.6px;
	color: #03002e;
}

.hf-contact-hero-copy h1 span {
	display: block;
	color: #1ab67b;
}

.hf-contact-hero-copy p {
	max-width: 590px;
	margin: 0;
	color: #5f6675;
	font-size: 17px;
	line-height: 1.7;
}

.hf-contact-hero-card {
	background: #03002e;
	border-radius: 22px;
	padding: 45px;
}

.hf-contact-hero-card h2 {
	margin: 9px 0 14px;
	color: #ffffff;
	font-size: 33px;
	line-height: 1.15;
}

.hf-contact-hero-card p {
	margin: 0 0 25px;
	color: #ced2dc;
	line-height: 1.7;
}


/* Contact main */

.hf-contact-main {
	padding: 95px 24px;
	background: #ffffff;
}

.hf-contact-layout {
	max-width: 1150px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0,1fr) 340px;
	gap: 65px;
	align-items: start;
}

.hf-contact-form-wrap h2 {
	margin: 8px 0 12px;
	color: #03002e;
	font-size: 42px;
}

.hf-contact-form-wrap > p {
	color: #5f6675;
	margin: 0 0 32px;
}

.hf-contact-form {
	display: grid;
	gap: 22px;
}

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

.hf-form-field {
	display: grid;
	gap: 8px;
}

.hf-form-field label {
	font-size: 14px;
	font-weight: 700;
	color: #03002e;
}

.hf-form-field input,
.hf-form-field textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #dfe4e9;
	border-radius: 10px;
	padding: 14px 16px;
	font: inherit;
	color: #03002e;
	background: #ffffff;
	outline: none;
}

.hf-form-field input:focus,
.hf-form-field textarea:focus {
	border-color: #1ab67b;
	box-shadow: 0 0 0 3px rgba(26,182,123,.1);
}

.hf-form-field textarea {
	resize: vertical;
}

.hf-contact-submit {
	width: fit-content;
	border: 0;
	border-radius: 999px;
	background: #1ab67b;
	color: #ffffff;
	padding: 15px 28px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.hf-contact-form-note {
	margin-top: 16px !important;
	font-size: 12px;
	color: #8a909b !important;
}


/* Info */

.hf-contact-info {
	background: #03002e;
	border-radius: 20px;
	padding: 36px 32px;
}

.hf-contact-info h3 {
	margin: 8px 0 12px;
	color: #ffffff;
	font-size: 28px;
}

.hf-contact-info > p {
	color: #ced2dc;
	font-size: 14px;
	line-height: 1.65;
}

.hf-contact-info-list {
	margin-top: 28px;
	display: grid;
	gap: 24px;
}

.hf-contact-info-item {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	align-items: center;
}

.hf-contact-info-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(26,182,123,.15);
	color: #1ab67b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.hf-contact-info-item strong {
	display: block;
	color: #ffffff;
	font-size: 14px;
}

.hf-contact-info-item span {
	display: block;
	color: #bfc4cf;
	font-size: 13px;
	margin-top: 3px;
}

.hf-contact-divider {
	height: 1px;
	background: rgba(255,255,255,.15);
	margin: 30px 0;
}

.hf-contact-info h4 {
	margin: 0 0 8px;
	color: #ffffff;
}

.hf-contact-side-cta {
	display: inline-flex;
	margin-top: 8px;
	color: #1ab67b;
	text-decoration: none;
	font-weight: 700;
}


/* Process */

.hf-contact-process {
	padding: 90px 24px;
	background: #f6f8fa;
}

.hf-contact-process-grid {
	max-width: 1050px;
	margin: 45px auto 0;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
}

.hf-contact-process-grid > div {
	background: #ffffff;
	border: 1px solid #e6eaee;
	border-radius: 16px;
	padding: 30px;
}

.hf-contact-process-grid span {
	color: #1ab67b;
	font-size: 14px;
	font-weight: 800;
}

.hf-contact-process-grid h3 {
	margin: 15px 0 8px;
	color: #03002e;
	font-size: 20px;
}

.hf-contact-process-grid p {
	margin: 0;
	color: #5f6675;
	font-size: 14px;
	line-height: 1.6;
}


/* Responsive */

@media (max-width: 900px) {
	.hf-contact-hero-inner,
	.hf-contact-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.hf-contact-process-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hf-contact-hero,
	.hf-contact-main,
	.hf-contact-process {
		padding: 65px 18px;
	}

	.hf-contact-hero-copy h1 {
		font-size: 43px;
		letter-spacing: -1.5px;
	}

	.hf-contact-hero-card {
		padding: 32px 27px;
	}

	.hf-form-row {
		grid-template-columns: 1fr;
	}

	.hf-contact-form-wrap h2 {
		font-size: 34px;
	}

	.hf-contact-info {
		padding: 30px 25px;
	}
}
/* =====================================================
   BLOG
===================================================== */

.hf-blog-hero {
	padding: 95px 24px 80px;
	background: #f6f8fa;
	text-align: center;
}

.hf-blog-hero-inner {
	max-width: 850px;
	margin: 0 auto;
}

.hf-blog-hero h1 {
	margin: 8px 0 20px;
	font-size: clamp(52px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.5px;
	color: #03002e;
}

.hf-blog-hero h1 span {
	color: #1ab67b;
}

.hf-blog-hero p {
	max-width: 680px;
	margin: 0 auto;
	color: #5f6675;
	font-size: 17px;
	line-height: 1.7;
}

.hf-blog-content {
	padding: 85px 24px 100px;
}

.hf-blog-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 28px;
}

.hf-blog-card {
	background: #ffffff;
	border: 1px solid #e6eaee;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(3,0,46,.04);
}

.hf-blog-card-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.hf-blog-card-body {
	padding: 24px;
}

.hf-blog-category {
	color: #1ab67b;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .8px;
}

.hf-blog-card-title {
	margin: 10px 0 12px;
	font-size: 22px;
	line-height: 1.25;
}

.hf-blog-card-title a {
	color: #03002e;
	text-decoration: none;
}

.hf-blog-card-title a:hover {
	color: #1ab67b;
}

.hf-blog-excerpt {
	color: #5f6675;
	font-size: 14px;
	line-height: 1.65;
}

.hf-blog-date {
	margin-top: 18px;
	color: #8b919c;
	font-size: 12px;
}

.hf-blog-pagination {
	margin-top: 50px;
}


/* Single Post */

.hf-single-header {
	max-width: 900px;
	margin: 0 auto;
	padding: 90px 24px 40px;
	text-align: center;
}

.hf-single-category {
	color: #1ab67b;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.hf-single-title {
	margin: 12px 0 18px;
	font-size: clamp(44px, 5vw, 68px);
	line-height: 1.05;
	letter-spacing: -2px;
	color: #03002e;
}

.hf-single-meta {
	justify-content: center;
	gap: 18px;
	color: #7f8794;
	font-size: 13px;
}

.hf-single-featured {
	max-width: 1100px;
	margin: 0 auto 50px;
	padding: 0 24px;
}

.hf-single-featured img {
	width: 100%;
	border-radius: 18px;
	display: block;
}

.hf-single-content {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 24px 80px;
	font-size: 17px;
	line-height: 1.8;
	color: #3f4657;
}

.hf-single-content h2,
.hf-single-content h3 {
	color: #03002e;
}

.hf-single-cta {
	max-width: 1050px;
	margin: 0 auto 90px;
	padding: 45px 50px;
	border-radius: 20px;
	background: #f6f8fa;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.hf-single-cta h2 {
	margin: 8px 0 10px;
	color: #03002e;
	font-size: 34px;
}

.hf-single-cta p {
	margin: 0;
	color: #5f6675;
}

@media (max-width: 900px) {
	.hf-blog-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media (max-width: 650px) {
	.hf-blog-grid {
		grid-template-columns: 1fr;
	}

	.hf-blog-hero {
		padding: 65px 18px;
	}

	.hf-blog-hero h1 {
		font-size: 43px;
	}

	.hf-blog-content {
		padding: 60px 18px 70px;
	}

	.hf-single-header {
		padding: 65px 18px 30px;
	}

	.hf-single-title {
		font-size: 42px;
	}

	.hf-single-content {
		padding: 0 18px 60px;
		font-size: 16px;
	}

	.hf-single-cta {
		margin: 0 18px 65px;
		padding: 32px 26px;
		flex-direction: column;
		align-items: flex-start;
	}
}

.hf-nav {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-left: auto;
}

.hf-nav > a,
.hf-dropdown-trigger {
	color: #03002e;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
}

.hf-nav-dropdown {
	position: relative;
}

.hf-dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hf-dropdown-caret {
    color: #1ab67b;
    font-size: 25px;
    font-weight: 700;
    margin-left: 4px;
}

.hf-dropdown-toggle {
	display: none;
}

.hf-dropdown-toggle span {
	color: #1ab67b;
	font-size: 14px;
	transition: transform 0.2s ease;
}

.hf-dropdown-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: 0;
	min-width: 170px;
	background: #ffffff;
	padding: 10px 0;
	border-radius: 8px;
	box-shadow: 0 12px 35px rgba(3, 0, 46, 0.12);

	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);

	transition: all 0.2s ease;
	z-index: 100;
}

.hf-dropdown-menu a {
	display: block;
	padding: 11px 18px;
	color: #03002e;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.hf-dropdown-menu a:hover {
	background: #f6f8fa;
	color: #1ab67b;
}

.hf-nav-dropdown:hover .hf-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* ==================================================
   FOOTER REFINEMENTS
================================================== */

.hf-footer {
	background: #03002e;
	color: #ffffff;
}

.hf-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 55px 24px 0;
}

.hf-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.25fr 1fr;
	gap: 55px;
	align-items: start;
}


/* Logo */

.hf-footer-logo {
	display: inline-block;
	margin-bottom: 20px;
}

.hf-footer-logo img {
	display: block;
	width: 190px;
	height: auto;
	object-fit: contain;
}


/* Brand */

.hf-footer-brand-copy {
	max-width: 260px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.7;
}


/* Column headings */

.hf-footer-col h3 {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
}


/* Footer links */

.hf-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hf-footer-col li {
	margin-bottom: 10px;
}

.hf-footer-col a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
	font-size: 13px;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.hf-footer-col a:hover {
	color: #19c37d;
}


/* Contact */

.hf-footer-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.76);
}

.hf-footer-contact-row span {
	color: #19c37d;
	flex-shrink: 0;
}

.hf-footer-contact-row p {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}


/* Social icons */

.hf-footer-social {
	display: flex;
	gap: 10px;
}

.hf-footer-social a {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;

	transition: 0.2s ease;
}

.hf-footer-social a:hover {
	background: #19c37d;
	border-color: #19c37d;
}


/* Zero Hidden Fee Charter */

.hf-footer-disclosure {
	display: flex;
	gap: 18px;
	align-items: flex-start;

	margin-top: 42px;
	padding: 25px 0;

	border-top: 1px solid rgba(255, 255, 255, 0.13);
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hf-footer-disclosure-badge {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid #19c37d;
	border-radius: 50%;

	color: #19c37d;
	font-size: 18px;
	font-weight: 700;
}

.hf-footer-disclosure-content {
	max-width: 1000px;
}

.hf-footer-disclosure-content h3 {
	margin: 0 0 9px;

	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
}

.hf-footer-disclosure-content p {
	margin: 0 0 7px;

	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	line-height: 1.65;
}

.hf-footer-disclosure-content p:last-child {
	margin-bottom: 0;
}

.hf-footer-disclosure-content strong {
	color: #ffffff;
	font-weight: 600;
}


/* Bottom copyright */

.hf-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;

	padding: 22px 0;

	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.hf-footer-bottom p {
	margin: 0;
}

.hf-footer-legal {
	display: flex;
	gap: 25px;
}

.hf-footer-legal a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
}

.hf-footer-legal a:hover {
	color: #ffffff;
}


/* Tablet */

@media (max-width: 900px) {

	.hf-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

}


/* Mobile */

@media (max-width: 600px) {

	.hf-footer-inner {
		padding: 40px 20px 0;
	}

	.hf-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hf-footer-logo img {
		width: 170px;
	}

	.hf-footer-disclosure {
		margin-top: 35px;
	}

	.hf-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

}
.hf-footer {
	padding-top: 0;
}

.hf-footer-inner {
	padding-top: 45px;
}

.hf-footer-grid {
	margin-top: 0;
	padding-top: 0;
}
.hf-footer-bottom {
	border-top: none;
	margin-top: 0;
}
.hf-primary-cta,
.hf-header-cta,
.hf-footer-cta-button,
.hf-final-button,
.hf-contact-submit {
	background: linear-gradient(135deg, #19c37d 0%, #0fae73 55%, #087f5b 100%);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(25, 195, 125, 0.22);
	border: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hf-primary-cta:hover,
.hf-header-cta:hover,
.hf-footer-cta-button:hover,
.hf-final-button:hover,
.hf-contact-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(25, 195, 125, 0.28);
	filter: brightness(1.03);
}

.hf-final-cta .hf-final-button {
	background: #03002e;
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(3, 0, 46, 0.24);
}

.hf-final-cta .hf-final-button:hover {
	background: #12104a;
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(3, 0, 46, 0.3);
}

.hf-footer-cta .hf-footer-cta-button {
	background: #03002e;
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(3, 0, 46, 0.24);
}

.hf-footer-cta .hf-footer-cta-button:hover {
	background: #12104a;
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(3, 0, 46, 0.3);
}
.hf-trust-icon {
	width: 58px;
	height: 58px;
	font-size: 24px;
	font-weight: 900;
	border-width: 2.5px;
	background: #effbf6;
	box-shadow: inset 0 0 0 6px rgba(25, 195, 125, 0.05);
}
.hf-rule-section {
	padding: 72px 24px;
}

.hf-rule-inner {
	max-width: 1050px;
	margin: 0 auto;
	grid-template-columns: 140px minmax(0, 1fr);
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.hf-rule-icon {
	width: 110px;
	height: 132px;
	margin: 0 auto;
	font-size: 48px;
	border-width: 5px;
}

.hf-rule-content {
	max-width: 780px;
}

.hf-rule-content h2 {
	font-size: 42px;
}

@media (max-width: 700px) {
	.hf-rule-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hf-rule-content {
		margin: 0 auto;
	}
}
.hf-screening-section,
.hf-how-section,
.hf-built-section,
.hf-faq-preview {
	padding-top: 100px;
	padding-bottom: 100px;
}

.hf-section-heading {
	max-width: 850px;
	margin-bottom: 52px;
}

.hf-section-heading h2 {
	font-size: 46px;
}

.hf-screening-grid {
	max-width: 1280px;
	gap: 26px;
}

.hf-screening-card {
	padding: 34px 30px;
	min-height: 280px;
}

.hf-how-grid {
	max-width: 1180px;
	gap: 30px;
}

.hf-how-card {
	padding: 38px 34px;
	min-height: 240px;
}

.hf-built-inner {
	max-width: 1280px;
}
.hf-how-grid {
	position: relative;
}

.hf-how-grid::before {
	content: "";
	position: absolute;

	/* Put connecting line through center of cards */
	top: 50%;
	left: 16%;
	right: 16%;

	height: 2px;

	background: linear-gradient(
		to right,
		rgba(25, 195, 125, 0.25),
		#19c37d,
		rgba(25, 195, 125, 0.25)
	);

	transform: translateY(-50%);
	z-index: 0;
}

.hf-how-card {
	position: relative;
	z-index: 1;
}

.hf-how-number {
	position: relative;
	z-index: 2;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #19c37d;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin-bottom: 28px;
}

@media (max-width: 900px) {
	.hf-how-grid::before {
		display: none;
	}
}
.hf-built-card-image {
	position: relative;
	min-height: 310px;
	padding: 0;
	overflow: hidden;
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	border: 0;
}

.hf-built-new {
	background-image: url("assets/images/home-image.png");
}

.hf-built-established {
	background-image: url("assets/images/home-image.png");
	background-position: 35% center;
}

.hf-built-fleet {
	background-image: url("assets/images/home-image.png");
	background-position: 70% center;
}

.hf-built-burned {
	background-image: url("assets/images/home-image.png");
	background-position: 85% center;
}

.hf-built-card-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	padding: 55px 22px 22px;

	background: linear-gradient(
		to top,
		rgba(3, 0, 46, 0.98) 0%,
		rgba(3, 0, 46, 0.88) 50%,
		rgba(3, 0, 46, 0) 100%
	);
}

.hf-built-card-overlay span {
	color: #1ab67b;
	font-size: 12px;
	font-weight: 800;
}

.hf-built-card-overlay h3 {
	margin: 8px 0 7px;
	color: #ffffff;
	font-size: 19px;
}

.hf-built-card-overlay p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	line-height: 1.5;
}
/* =========================
   Homepage Testimonial Strip
========================= */

.hf-testimonial-strip {
	background: #03002e;
	padding: 44px 24px;
}

.hf-testimonial-inner {
	max-width: 1280px;
	margin: 0 auto;

	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1fr;
	align-items: center;
}

.hf-testimonial-quote {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding-right: 45px;
}

.hf-quote-mark {
	color: #1ab67b;
	font-size: 76px;
	font-weight: 800;
	line-height: 0.8;
}

.hf-testimonial-quote p {
	margin: 0 0 12px;
	max-width: 440px;

	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.55;
}

.hf-testimonial-quote span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
}

.hf-testimonial-stat {
	min-height: 105px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;

	padding: 0 26px;

	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hf-testimonial-icon {
	width: 48px;
	height: 48px;

	border: 2px solid #1ab67b;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 12px;

	color: #1ab67b;
	font-size: 20px;
	font-weight: 800;
}

.hf-testimonial-stat p {
	margin: 0;

	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

@media (max-width: 900px) {

	.hf-testimonial-inner {
		grid-template-columns: 1fr 1fr;
		gap: 35px 0;
	}

	.hf-testimonial-stat:nth-child(3) {
		border-left: 0;
	}
}

@media (max-width: 600px) {

	.hf-testimonial-inner {
		grid-template-columns: 1fr;
	}

	.hf-testimonial-quote {
		padding-right: 0;
		padding-bottom: 30px;
	}

	.hf-testimonial-stat {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
		padding: 25px 0;
	}
}
.hf-testimonial-heading {
	max-width: 1280px;
	margin: 0 auto 38px;
	text-align: center;
}

.hf-testimonial-heading span {
	display: block;
	margin-bottom: 9px;

	color: #1ab67b;

	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.hf-testimonial-heading h2 {
	max-width: 650px;
	margin: 0 auto;

	color: #ffffff;

	font-size: 34px;
	line-height: 1.2;
	font-weight: 700;
}
.hf-testimonial-slider {
	width: 100%;
	position: relative;
}

.hf-testimonial-slide {
	display: none;
	align-items: flex-start;
	gap: 20px;
}

.hf-testimonial-slide.is-active {
	display: flex;
}

.hf-testimonial-controls {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
	margin-left: 55px;
}

.hf-testimonial-prev,
.hf-testimonial-next {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.3);
	background: transparent;
	color: #ffffff;
	cursor: pointer;
}

.hf-testimonial-prev:hover,
.hf-testimonial-next:hover {
	border-color: #1ab67b;
	color: #1ab67b;
}

.hf-testimonial-dots {
	display: flex;
	gap: 7px;
}

.hf-testimonial-dots button {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.3);
	cursor: pointer;
}

.hf-testimonial-dots button.is-active {
	background: #1ab67b;
}

/* =====================================================
   RESPONSIVE HARDENING
===================================================== */

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

.hf-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid #dfe5ea;
	border-radius: 999px;
	background: #ffffff;
	color: #03002e;
	cursor: pointer;
}

.hf-menu-toggle-bars,
.hf-menu-toggle-bars::before,
.hf-menu-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hf-menu-toggle-bars {
	position: relative;
}

.hf-menu-toggle-bars::before,
.hf-menu-toggle-bars::after {
	position: absolute;
	left: 0;
}

.hf-menu-toggle-bars::before {
	top: -6px;
}

.hf-menu-toggle-bars::after {
	top: 6px;
}

.hf-header.is-menu-open .hf-menu-toggle-bars {
	background: transparent;
}

.hf-header.is-menu-open .hf-menu-toggle-bars::before {
	transform: translateY(6px) rotate(45deg);
}

.hf-header.is-menu-open .hf-menu-toggle-bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

img,
video,
iframe {
	max-width: 100%;
}

.hf-primary-cta,
.hf-header-cta,
.hf-final-button,
.hf-footer-cta-button,
.hf-outline-button,
.hf-contact-submit {
	max-width: 100%;
	text-align: center;
	white-space: normal;
}

.hf-diff-table {
	max-width: 100%;
}

@media (max-width: 1200px) {
	.hf-header-inner {
		gap: 18px;
	}

	.hf-nav {
		gap: 22px;
	}

	.hf-nav > a,
	.hf-dropdown-trigger {
		font-size: 14px;
	}

	.hf-screening-grid,
	.hf-diff-risk-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hf-testimonial-inner {
		grid-template-columns: 1.35fr repeat(3, 1fr);
	}
}

@media (max-width: 1024px) {
	.hf-header-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hf-logo img {
		width: 150px;
	}

	.hf-nav {
		gap: 16px;
	}

	.hf-header-cta {
		padding-left: 18px;
		padding-right: 18px;
	}

	.hf-hero-content h1,
	.hf-about-hero-copy h1,
	.hf-screen-hero-copy h1,
	.hf-hiw-hero h1,
	.hf-diff-hero-copy h1,
	.hf-faq-hero h1,
	.hf-contact-hero-copy h1,
	.hf-blog-hero h1 {
		font-size: clamp(44px, 5vw, 58px);
		letter-spacing: -1.5px;
	}

	.hf-how-grid::before {
		left: 10%;
		right: 10%;
	}
}

@media (max-width: 900px) {
	.hf-header-inner {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 12px;
	}

	.hf-logo {
		grid-column: 1;
	}

	.hf-menu-toggle {
		display: inline-flex;
		grid-column: 3;
		justify-self: end;
	}

	.hf-header-cta {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		padding: 12px 16px;
		font-size: 13px;
	}

	.hf-nav {
		grid-column: 1 / -1;
		display: none;
		width: 100%;
		margin: 0;
		padding: 12px 0 4px;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow: visible;
	}

	.hf-header.is-menu-open .hf-nav {
		display: flex;
	}

	.hf-nav > a,
	.hf-dropdown-trigger {
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding: 13px 0;
		border-top: 1px solid #eef1f4;
		font-size: 15px;
		white-space: normal;
	}

	.hf-dropdown-caret {
		display: none;
	}

	.hf-nav-dropdown {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 44px;
		align-items: center;
		width: 100%;
	}

	.hf-dropdown-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 100%;
		min-height: 45px;
		margin: 0;
		padding: 0;
		border: 0;
		border-top: 1px solid #eef1f4;
		background: transparent;
		color: #1ab67b;
		cursor: pointer;
	}

	.hf-nav-dropdown.is-open .hf-dropdown-toggle span {
		transform: rotate(180deg);
	}

	.hf-dropdown-menu {
		grid-column: 1 / -1;
		position: static;
		display: none;
		min-width: 0;
		width: 100%;
		padding: 0 0 8px 14px;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.hf-nav-dropdown.is-open .hf-dropdown-menu {
		display: block;
	}

	.hf-nav-dropdown:hover .hf-dropdown-menu {
		transform: none;
	}

	.hf-dropdown-menu a {
		padding: 10px 0;
	}

	.hf-how-grid::before {
		display: none;
	}

	.hf-hero {
		background-position: 62% bottom;
	}

	.hf-about-hero-inner,
	.hf-screen-hero-inner,
	.hf-screen-rule-inner,
	.hf-hiw-difference-inner,
	.hf-diff-hero-inner,
	.hf-contact-hero-inner,
	.hf-contact-layout,
	.hf-faq-layout {
		grid-template-columns: 1fr;
	}

	.hf-built-inner,
	.hf-final-cta-inner,
	.hf-free-inner,
	.hf-footer-cta-inner,
	.hf-single-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.hf-built-grid,
	.hf-about-trust-inner,
	.hf-about-values-grid,
	.hf-screening-grid,
	.hf-screen-grid,
	.hf-diff-risk-grid,
	.hf-diff-promise-grid,
	.hf-blog-grid,
	.hf-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hf-footer-disclosure {
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.hf-header-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 10px 14px;
		padding: 12px 18px;
	}

	.hf-logo {
		grid-column: 1;
		grid-row: 1;
		min-width: 0;
	}

	.hf-logo img {
		width: 145px;
		max-width: 100%;
	}

	.hf-menu-toggle {
		display: inline-flex;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		flex: 0 0 42px;
	}

	.hf-nav {
		grid-column: 1 / -1;
		grid-row: 2;
		display: none;
		width: 100%;
		margin: 0;
		padding: 8px 0 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow: visible;
	}

	.hf-header.is-menu-open .hf-nav {
		display: flex;
	}

	.hf-nav > a,
	.hf-dropdown-trigger {
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		padding: 11px 0;
		border-top: 1px solid #eef1f4;
		font-size: 15px;
		line-height: 1.25;
		white-space: normal;
	}

	.hf-nav-dropdown {
		width: 100%;
	}

	.hf-dropdown-menu {
		position: static;
		display: none;
		min-width: 0;
		width: 100%;
		padding: 0 0 6px 16px;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.hf-nav-dropdown.is-open .hf-dropdown-menu {
		display: block;
	}

	.hf-dropdown-menu a {
		padding: 9px 0;
		font-size: 14px;
	}

	.hf-header-cta {
		grid-column: 1 / -1;
		grid-row: 3;
		display: none;
		justify-self: center;
		width: auto;
		min-width: 0;
		margin: 10px auto 2px;
		padding: 13px 22px;
		border-radius: 999px;
		font-size: 14px;
		line-height: 1;
	}

	.hf-header.is-menu-open .hf-header-cta {
		display: inline-flex;
	}

	.hf-trust-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: auto;
		max-width: none;
	}

	.hf-testimonial-inner {
		grid-template-columns: 1fr 1fr;
	}

	.hf-testimonial-quote {
		grid-column: 1 / -1;
		padding-right: 0;
	}

	.hf-testimonial-stat {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		padding: 24px 16px;
	}

	.hf-diff-table {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.hf-diff-table-row {
		min-width: 680px;
	}

	.hf-form-row,
	.hf-hiw-step,
	.hf-hiw-step-content ul,
	.hf-hiw-free-inner,
	.hf-contact-process-grid,
	.hf-hiw-after-grid {
		grid-template-columns: 1fr;
	}

	.hf-faq-side-card {
		position: static;
	}
}

@media (max-width: 600px) {
	.hf-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 12px 18px;
	}

	.hf-logo img {
		width: 138px;
	}

	.hf-header-cta {
		grid-column: 1 / -1;
		grid-row: 3;
		justify-self: center;
		width: auto;
	}

	.hf-menu-toggle {
		grid-column: 2;
		grid-row: 1;
	}

	.hf-hero-content,
	.hf-about-hero-copy,
	.hf-screen-hero-copy,
	.hf-hiw-hero,
	.hf-diff-hero-copy,
	.hf-faq-hero,
	.hf-contact-hero-copy,
	.hf-blog-hero,
	.hf-built-copy,
	.hf-free-inner,
	.hf-final-cta-inner,
	.hf-footer-cta-inner,
	.hf-faq-side-card,
	.hf-single-cta {
		text-align: center;
		align-items: center;
	}

	.hf-primary-cta,
	.hf-final-button,
	.hf-footer-cta-button,
	.hf-outline-button {
		margin-left: auto;
		margin-right: auto;
	}

	.hf-hero,
	.hf-about-hero,
	.hf-screen-hero,
	.hf-hiw-hero,
	.hf-diff-hero,
	.hf-faq-hero,
	.hf-contact-hero,
	.hf-blog-hero {
		padding-left: 18px;
		padding-right: 18px;
	}

	.hf-hero {
		background-position: 68% bottom;
	}

	.hf-hero-content h1,
	.hf-about-hero-copy h1,
	.hf-screen-hero-copy h1,
	.hf-hiw-hero h1,
	.hf-diff-hero-copy h1,
	.hf-faq-hero h1,
	.hf-contact-hero-copy h1,
	.hf-blog-hero h1,
	.hf-single-title {
		font-size: 40px;
		line-height: 1.06;
		letter-spacing: -1px;
	}

	.hf-section-heading h2,
	.hf-built-copy h2,
	.hf-final-cta h2,
	.hf-free-inner h2,
	.hf-footer-cta h2,
	.hf-testimonial-heading h2,
	.hf-shield-standard-header h2,
	.hf-contact-form-wrap h2 {
		font-size: 31px;
		line-height: 1.14;
	}

	.hf-trust-row,
	.hf-built-grid,
	.hf-about-trust-inner,
	.hf-about-values-grid,
	.hf-screening-grid,
	.hf-screen-grid,
	.hf-diff-risk-grid,
	.hf-diff-promise-grid,
	.hf-blog-grid,
	.hf-footer-grid,
	.hf-testimonial-inner {
		grid-template-columns: 1fr;
	}

	.hf-trust-row {
		margin-left: 18px;
		margin-right: 18px;
	}

	.hf-built-card-image {
		min-height: 285px;
	}

	.hf-built-card-overlay {
		padding: 48px 20px 20px;
	}

	.hf-footer-disclosure {
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hf-footer-bottom,
	.hf-footer-legal {
		flex-direction: column;
		align-items: flex-start;
	}

	.hf-footer-contact-row {
		min-width: 0;
	}

	.hf-footer-contact-row a,
	.hf-footer-contact-row p,
	.hf-footer-disclosure-content p {
		overflow-wrap: anywhere;
	}

	.hf-single-cta {
		margin-left: 18px;
		margin-right: 18px;
	}
}

@media (max-width: 430px) {
	.hf-hero-content h1,
	.hf-about-hero-copy h1,
	.hf-screen-hero-copy h1,
	.hf-hiw-hero h1,
	.hf-diff-hero-copy h1,
	.hf-faq-hero h1,
	.hf-contact-hero-copy h1,
	.hf-blog-hero h1,
	.hf-single-title {
		font-size: 36px;
	}

	.hf-primary-cta,
	.hf-final-button,
	.hf-footer-cta-button,
	.hf-outline-button,
	.hf-contact-submit {
		width: 100%;
		justify-content: center;
		padding-left: 18px;
		padding-right: 18px;
	}

	.hf-header-cta {
		width: auto;
		max-width: calc(100vw - 36px);
		padding-left: 22px;
		padding-right: 22px;
	}

	.hf-about-hero-image,
	.hf-about-hero-image img {
		min-height: 280px;
	}

	.hf-screen-hero-panel,
	.hf-diff-hero-card,
	.hf-contact-hero-card,
	.hf-faq-side-card {
		padding: 28px 22px;
	}
}

@media (max-width: 390px) {
	.hf-section-heading h2,
	.hf-built-copy h2,
	.hf-final-cta h2,
	.hf-free-inner h2,
	.hf-footer-cta h2,
	.hf-testimonial-heading h2,
	.hf-shield-standard-header h2,
	.hf-contact-form-wrap h2 {
		font-size: 29px;
	}

	.hf-footer-inner {
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (min-width: 561px) and (max-width: 600px) {
	.hf-hero-content {
		padding: 40px 0 230px;
	}
}

@media (max-width: 320px) {
	.hf-header-inner,
	.hf-hero,
	.hf-rule-section,
	.hf-screening-section,
	.hf-how-section,
	.hf-built-section,
	.hf-free-section,
	.hf-faq-preview,
	.hf-footer-cta,
	.hf-footer,
	.hf-about-hero,
	.hf-screen-hero,
	.hf-hiw-hero,
	.hf-diff-hero,
	.hf-faq-hero,
	.hf-contact-hero,
	.hf-blog-hero {
		padding-left: 14px;
		padding-right: 14px;
	}

	.hf-hero-content h1,
	.hf-about-hero-copy h1,
	.hf-screen-hero-copy h1,
	.hf-hiw-hero h1,
	.hf-diff-hero-copy h1,
	.hf-faq-hero h1,
	.hf-contact-hero-copy h1,
	.hf-blog-hero h1,
	.hf-single-title {
		font-size: 32px;
	}

	.hf-built-card-image {
		min-height: 260px;
	}

	.hf-diff-table-row {
		min-width: 620px;
	}
}

@media (max-width: 768px) {
	.hf-header.is-menu-open .hf-header-inner {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 42px;
		grid-template-areas:
			"logo toggle"
			"nav nav"
			"cta cta";
		align-items: center;
		width: 100%;
		max-width: 100%;
		gap: 0 14px;
	}

	.hf-header.is-menu-open .hf-logo {
		grid-area: logo;
		align-self: center;
		min-width: 0;
	}

	.hf-header.is-menu-open .hf-logo img {
		display: block;
		max-width: min(160px, calc(100vw - 96px));
		height: auto;
	}

	.hf-header.is-menu-open .hf-menu-toggle {
		grid-area: toggle;
		align-self: center;
		justify-self: end;
		width: 42px;
		height: 42px;
		margin: 0;
		padding: 0;
		flex: 0 0 42px;
	}

	.hf-header.is-menu-open .hf-nav {
		grid-area: nav;
		display: flex !important;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin: 12px 0 0;
		padding: 0;
		flex: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		overflow: visible;
	}

	.hf-header.is-menu-open .hf-nav > a,
	.hf-header.is-menu-open .hf-dropdown-trigger {
		display: flex;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		align-items: center;
		justify-content: space-between;
		margin: 0;
		padding: 12px 0;
		border-top: 1px solid #eef1f4;
		font-size: 15px;
		line-height: 1.25;
		white-space: normal;
	}

	.hf-header.is-menu-open .hf-nav-dropdown {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.hf-header.is-menu-open .hf-dropdown-menu {
		position: static !important;
		display: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin: 0;
		padding: 0 0 8px 16px;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.hf-header.is-menu-open .hf-nav-dropdown.is-open .hf-dropdown-menu {
		display: block;
	}

	.hf-header.is-menu-open .hf-dropdown-menu a {
		display: block;
		width: 100%;
		max-width: 100%;
		padding: 9px 0;
		font-size: 14px;
		white-space: normal;
	}

	.hf-header.is-menu-open .hf-header-cta {
		grid-area: cta;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		justify-self: center;
		width: auto;
		height: auto;
		min-width: 0;
		max-width: calc(100vw - 36px);
		aspect-ratio: auto;
		margin: 14px auto 2px;
		padding: 13px 24px;
		border-radius: 999px;
		line-height: 1;
		white-space: normal;
	}
}

/* Subtle motion enhancements */
.hf-js .hf-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	will-change: opacity, transform;
}

.hf-js .hf-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hf-trust-card,
.hf-screening-card,
.hf-how-card,
.hf-built-card,
.hf-about-value-card,
.hf-screen-check-card,
.hf-hiw-after-card,
.hf-diff-risk-card,
.hf-faq-side-card,
.hf-blog-card,
.hf-testimonial-stat {
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hf-trust-card:hover,
.hf-screening-card:hover,
.hf-how-card:hover,
.hf-built-card:hover,
.hf-about-value-card:hover,
.hf-screen-check-card:hover,
.hf-hiw-after-card:hover,
.hf-diff-risk-card:hover,
.hf-faq-side-card:hover,
.hf-blog-card:hover,
.hf-testimonial-stat:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px rgba(3, 0, 46, 0.09);
}

.hf-built-card-image {
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hf-built-card-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: inherit;
	background-position: inherit;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform 0.22s ease;
	z-index: 0;
}

.hf-built-card-image:hover::before {
	transform: scale(1.03);
}

.hf-built-card-overlay {
	z-index: 1;
}

.hf-testimonial-slide {
	transition: opacity 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
	.hf-js .hf-reveal,
	.hf-js .hf-reveal.is-visible,
	.hf-trust-card,
	.hf-screening-card,
	.hf-how-card,
	.hf-built-card,
	.hf-about-value-card,
	.hf-screen-check-card,
	.hf-hiw-after-card,
	.hf-diff-risk-card,
	.hf-faq-side-card,
	.hf-blog-card,
	.hf-testimonial-stat,
	.hf-built-card-image,
	.hf-built-card-image::before,
	.hf-testimonial-slide {
		transition: none;
		transform: none;
	}

	.hf-trust-card:hover,
	.hf-screening-card:hover,
	.hf-how-card:hover,
	.hf-built-card:hover,
	.hf-about-value-card:hover,
	.hf-screen-check-card:hover,
	.hf-hiw-after-card:hover,
	.hf-diff-risk-card:hover,
	.hf-faq-side-card:hover,
	.hf-blog-card:hover,
	.hf-testimonial-stat:hover,
	.hf-built-card-image:hover::before,
	.hf-primary-cta:hover,
	.hf-header-cta:hover,
	.hf-footer-cta-button:hover,
	.hf-final-button:hover,
	.hf-contact-submit:hover {
		transform: none;
	}
}
/* Built for Truckers - Card Background Images */

.hf-built-new {
	background-image: url("assets/images/New-Authority.png");
}

.hf-built-established {
	background-image: url("assets/images/Established-Operators.png");
}

.hf-built-fleet {
	background-image: url("assets/images/Fleets-Owners.png");
}

.hf-built-burned {
	background-image: url("assets/images/Been-Burned-Before.png");
}

.hf-built-card-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Final mobile spacing and CTA containment pass */
@media (max-width: 600px) {
	.hf-header-inner,
	.hf-hero-inner,
	.hf-rule-inner,
	.hf-built-inner,
	.hf-final-cta-inner,
	.hf-free-inner,
	.hf-footer-cta-inner,
	.hf-footer-inner,
	.hf-about-hero-inner,
	.hf-about-trust-inner,
	.hf-about-story-inner,
	.hf-about-promise-inner,
	.hf-screen-hero-inner,
	.hf-screen-intro-inner,
	.hf-screen-standard-inner,
	.hf-hiw-hero-inner,
	.hf-hiw-difference-inner,
	.hf-hiw-free-inner,
	.hf-diff-hero-inner,
	.hf-diff-rule-inner,
	.hf-faq-hero-inner,
	.hf-contact-hero-inner,
	.hf-blog-hero-inner,
	.hf-testimonial-inner {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hf-hero,
	.hf-rule-section,
	.hf-screening-section,
	.hf-how-section,
	.hf-built-section,
	.hf-free-section,
	.hf-faq-preview,
	.hf-final-cta,
	.hf-footer-cta,
	.hf-footer,
	.hf-about-hero,
	.hf-about-trust,
	.hf-about-story,
	.hf-about-values,
	.hf-about-promise,
	.hf-screen-hero,
	.hf-screen-intro,
	.hf-screen-checklist,
	.hf-screen-standard,
	.hf-hiw-hero,
	.hf-hiw-steps,
	.hf-hiw-difference,
	.hf-hiw-after,
	.hf-hiw-free,
	.hf-diff-hero,
	.hf-diff-risk,
	.hf-diff-rule,
	.hf-diff-promise,
	.hf-faq-hero,
	.hf-faq-section,
	.hf-contact-hero,
	.hf-contact-main,
	.hf-contact-process,
	.hf-blog-hero,
	.hf-blog-content,
	.hf-single-post {
		box-sizing: border-box;
		padding-left: 18px;
		padding-right: 18px;
	}

	.hf-header-inner,
	.hf-hero-inner,
	.hf-rule-inner,
	.hf-built-inner,
	.hf-final-cta-inner,
	.hf-free-inner,
	.hf-footer-cta-inner,
	.hf-footer-inner,
	.hf-about-hero-inner,
	.hf-about-trust-inner,
	.hf-about-story-inner,
	.hf-about-promise-inner,
	.hf-screen-hero-inner,
	.hf-screen-intro-inner,
	.hf-screen-standard-inner,
	.hf-hiw-hero-inner,
	.hf-hiw-difference-inner,
	.hf-hiw-free-inner,
	.hf-diff-hero-inner,
	.hf-diff-rule-inner,
	.hf-faq-hero-inner,
	.hf-contact-hero-inner,
	.hf-blog-hero-inner {
		padding-left: 0;
		padding-right: 0;
	}

	.hf-header-inner {
		padding-left: 18px;
		padding-right: 18px;
	}

	.hf-trust-row,
	.hf-screening-grid,
	.hf-how-grid,
	.hf-built-grid,
	.hf-about-values-grid,
	.hf-screen-grid,
	.hf-hiw-steps-grid,
	.hf-hiw-after-grid,
	.hf-diff-risk-grid,
	.hf-diff-promise-grid,
	.hf-faq-layout,
	.hf-contact-grid,
	.hf-contact-process-grid,
	.hf-blog-grid,
	.hf-footer-grid {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-left: 0;
		margin-right: 0;
	}

	.hf-trust-card,
	.hf-screening-card,
	.hf-how-card,
	.hf-built-card,
	.hf-about-value-card,
	.hf-screen-check-card,
	.hf-hiw-after-card,
	.hf-diff-risk-card,
	.hf-faq-side-card,
	.hf-blog-card,
	.hf-contact-form-wrap,
	.hf-contact-info-card,
	.hf-contact-side,
	.hf-single-cta {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-left: 0;
		margin-right: 0;
	}

	.hf-hero-content,
	.hf-about-hero-copy,
	.hf-screen-hero-copy,
	.hf-hiw-hero,
	.hf-diff-hero-copy,
	.hf-faq-hero,
	.hf-contact-hero-copy,
	.hf-blog-hero,
	.hf-built-copy,
	.hf-free-inner,
	.hf-final-cta-inner,
	.hf-footer-cta-inner,
	.hf-faq-side-card,
	.hf-single-cta {
		text-align: center;
		align-items: center;
	}

	.hf-primary-cta,
	.hf-header.is-menu-open .hf-header-cta,
	.hf-footer-cta-button,
	.hf-final-button,
	.hf-contact-submit,
	.hf-contact-side-cta {
		display: inline-flex;
		width: fit-content;
		max-width: calc(100% - 36px);
		min-width: 0;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		padding: 14px 24px;
		justify-content: center;
		align-items: center;
		border-radius: 999px;
		white-space: normal;
		text-align: center;
		box-sizing: border-box;
	}

	.hf-footer-cta-inner,
	.hf-final-cta-inner,
	.hf-single-cta,
	.hf-contact-side {
		justify-content: center;
	}

	.hf-footer-bottom,
	.hf-footer-legal,
	.hf-footer-social {
		max-width: 100%;
		box-sizing: border-box;
	}

	.hf-diff-rule .hf-diff-rule-inner {
		padding-left: 28px;
		padding-right: 28px;
	}

	.hf-diff-rule .hf-outline-button {
		display: flex;
		width: fit-content;
		max-width: 100%;
		box-sizing: border-box;
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		white-space: normal;
		overflow-wrap: anywhere;
		text-align: center;
	}
}

/* Real-device mobile cleanup for homepage spacing and overflow */
@media (max-width: 600px) {
	html,
	body {
		max-width: 100%;
		overflow-x: clip;
	}

	.hf-built-section,
	.hf-testimonial-strip,
	.hf-faq-preview,
	.hf-free-section,
	.hf-footer-cta,
	.hf-footer {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding-left: 18px;
		padding-right: 18px;
	}

	.hf-built-inner,
	.hf-built-copy,
	.hf-built-grid,
	.hf-testimonial-heading,
	.hf-testimonial-inner,
	.hf-testimonial-quote,
	.hf-faq-preview .hf-section-heading,
	.hf-faq-list,
	.hf-center-link,
	.hf-free-inner,
	.hf-footer-cta-inner,
	.hf-footer-cta-copy,
	.hf-footer-inner,
	.hf-footer-grid,
	.hf-footer-brand,
	.hf-footer-col,
	.hf-footer-disclosure,
	.hf-footer-bottom {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-left: 0;
		margin-right: 0;
	}

	.hf-built-card,
	.hf-built-card-image,
	.hf-testimonial-stat,
	.hf-faq-item {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hf-free-inner,
	.hf-footer-cta-inner,
	.hf-testimonial-heading,
	.hf-faq-preview .hf-section-heading,
	.hf-center-link {
		text-align: center;
		align-items: center;
		justify-content: center;
	}

	.hf-free-section .hf-outline-button {
		display: inline-flex;
		width: fit-content;
		max-width: calc(100% - 36px);
		min-width: 0;
		margin-left: auto;
		margin-right: auto;
		padding: 14px 24px;
		justify-content: center;
		align-items: center;
		white-space: normal;
		text-align: center;
		box-sizing: border-box;
	}

	.hf-faq-item summary {
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
		padding-right: 42px;
	}

	.hf-faq-item p,
	.hf-testimonial-quote p,
	.hf-footer-disclosure-content p,
	.hf-footer-brand-copy {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.hf-footer-logo,
	.hf-footer-logo img {
		max-width: 100%;
	}
}
@media (max-width: 600px) {
	.hf-contact-page input,
	.hf-contact-page textarea,
	.hf-contact-page select,
	.hf-contact-page button,
	.hf-contact-page .ff-el-form-control {
		font-size: 16px !important;
	}
}
@media (min-width: 901px) {
	.hf-hero-content h1 {
		max-width: 650px;
	}

	.hf-hero-content h1 br:last-of-type {
		display: none;
	}
}
.hf-hero-cta-row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hf-hero-badge {
	width: 72px;
	height: 72px;
	object-fit: contain;
	flex: 0 0 auto;
}

@media (max-width: 600px) {
	.hf-hero-cta-row {
		justify-content: center;
	}

	.hf-hero-badge {
		width: 62px;
		height: 62px;
	}
}
.hf-footer-shield-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.hf-footer-shield-badge {
	width: 52px;
	height: 52px;
	object-fit: contain;
	flex: 0 0 auto;
}

.hf-footer-shield-heading h3 {
	margin: 0;
}

@media (max-width: 600px) {
	.hf-footer-shield-heading {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: 10px;
		margin-bottom: 18px;
	}

	.hf-footer-shield-badge {
		width: 76px;
		height: 76px;
	}

	.hf-footer-shield-heading h3 {
		font-size: 18px;
		line-height: 1.3;
		text-align: center;
	}

	.hf-footer-disclosure-content p {
		line-height: 1.65;
		margin-bottom: 14px;
	}
}
/* ========================================
   WHY HAUL FACTOR EXISTS
======================================== */

.hf-origin-hero {
	padding: 110px 24px 80px;
	text-align: center;
	background: #f7faf9;
}

.hf-origin-hero-inner {
	max-width: 850px;
	margin: 0 auto;
}

.hf-origin-hero h1 {
	margin: 12px 0 14px;
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.05;
}

.hf-origin-subtitle {
	margin: 0;
	font-size: 18px;
}

.hf-origin-story {
	padding: 90px 24px;
}

.hf-origin-story-inner {
	max-width: 780px;
	margin: 0 auto;
}

.hf-origin-story-inner p {
	margin: 0 0 26px;
	font-size: 18px;
	line-height: 1.8;
}

.hf-origin-story-inner h2 {
	margin: 58px 0 22px;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.2;
}

.hf-origin-story-inner blockquote {
	margin: 40px 0;
	padding: 24px 28px;
	border-left: 4px solid #00b074;
	font-size: 21px;
	line-height: 1.6;
}

.hf-origin-closing {
	margin-top: 45px !important;
	font-size: 20px !important;
}

.hf-origin-cta {
	padding: 70px 24px;
	background: #03002e;
}

.hf-origin-cta-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.hf-origin-cta h2 {
	margin: 8px 0 0;
	color: #fff;
	font-size: clamp(28px, 3vw, 40px);
	max-width: 650px;
}


/* Mobile */
@media (max-width: 600px) {

	.hf-origin-hero {
		padding: 75px 20px 55px;
	}

	.hf-origin-story {
		padding: 55px 20px;
	}

	.hf-origin-story-inner p {
		font-size: 16px;
		line-height: 1.75;
	}

	.hf-origin-story-inner h2 {
		margin-top: 42px;
	}

	.hf-origin-story-inner blockquote {
		margin: 32px 0;
		padding: 20px;
		font-size: 18px;
	}

	.hf-origin-cta {
		padding: 55px 20px;
	}

	.hf-origin-cta-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 26px;
	}
}
/* ========================================
   4-POINT FLEET SHIELD STANDARD
======================================== */
/* ========================================
   4-POINT FLEET SHIELD STANDARD
======================================== */

.hf-shield-standard {
    padding: 88px 0;
    background: #ffffff;
}

.hf-shield-standard-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.hf-shield-standard-header .hf-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
}

.hf-shield-standard-header h2 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.1;
    color: #03002e;
    font-weight: 800;
}

.hf-shield-standard-header p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #4a5565;
}

.hf-shield-standard-panel {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 38px 40px;
    background: #03002e;
    border-radius: 28px;
}

.hf-shield-standard-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.hf-shield-standard-badge img {
    width: 150px;
    height: auto;
    display: block;
}

.hf-shield-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hf-shield-standard-card {
    padding: 26px 30px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hf-shield-standard-card:nth-child(2n) {
    border-right: 0;
}

.hf-shield-standard-card:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hf-shield-standard-card::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 14px;
    background: #00B074;
}

.hf-shield-standard-icon {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1;
}

.hf-shield-standard-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.35;
}

.hf-shield-standard-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

/* Mobile */

@media (max-width: 768px) {

    .hf-shield-standard {
        padding: 64px 0;
    }

    .hf-shield-standard-header {
        margin: 0 auto 30px;
        text-align: center;
    }

    .hf-shield-standard-header .hf-eyebrow,
    .hf-shield-standard-header h2,
    .hf-shield-standard-header p {
        text-align: center;
    }

    .hf-shield-standard-header h2 {
        font-size: 31px;
        line-height: 1.14;
    }

    .hf-shield-standard-header p {
        font-size: 16px;
    }

    .hf-shield-standard-panel {
        padding: 26px 18px 28px;
        border-radius: 22px;
    }

    .hf-shield-standard-badge {
        margin-bottom: 24px;
    }

    .hf-shield-standard-badge img {
        width: 125px;
    }

    .hf-shield-standard-grid {
        grid-template-columns: 1fr;
    }

    .hf-shield-standard-card {
        min-height: auto;
        padding: 24px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hf-shield-standard-card:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hf-shield-standard-card:last-child {
        border-bottom: 0;
    }

    .hf-shield-standard-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 390px) {

    .hf-shield-standard-header h2 {
        font-size: 29px;
    }
}
/* ========================================
   4-POINT FLEET SHIELD PAGE
======================================== */

.hf-fleet-shield-page {
    background: #ffffff;
}


/* Hero */

.hf-fleet-shield-hero {
    padding: 80px 24px;
    background: #ffffff;
}

.hf-fleet-shield-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hf-fleet-shield-hero-copy {
    max-width: 680px;
}

.hf-fleet-shield-hero-copy .hf-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.hf-fleet-shield-hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(52px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -2.6px;
    font-weight: 800;
    color: #03002e;
}

.hf-fleet-shield-subtitle {
    margin: 0 0 22px;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
    color: #1ab67b;
}

.hf-fleet-shield-hero-copy > p:not(.hf-fleet-shield-subtitle) {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #5f6675;
}

.hf-fleet-shield-hero-copy > p:last-child {
    margin-bottom: 0;
}

.hf-fleet-shield-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hf-fleet-shield-hero-visual img {
    width: min(100%, 260px);
    height: auto;
    display: block;
}


/* Four Protections Section */

.hf-fleet-shield-points {
    padding: 80px 24px;
    background: #f6f8fa;
}

.hf-fleet-shield-points-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hf-fleet-shield-points .hf-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.hf-fleet-shield-points .hf-section-heading h2 {
    margin: 8px 0 10px;
    font-size: 46px;
    line-height: 1.1;
    color: #03002e;
}

.hf-fleet-shield-points .hf-section-heading p {
    margin: 0;
    color: #5f6675;
    font-size: 17px;
    line-height: 1.65;
}

.hf-fleet-shield-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.hf-fleet-shield-point {
    position: relative;
    padding: 30px 26px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(3, 0, 46, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hf-fleet-shield-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(3, 0, 46, 0.09);
}

.hf-fleet-shield-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 32px;
    padding: 0 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(26, 182, 123, 0.10);
    color: #1ab67b;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hf-fleet-shield-point h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.16;
    color: #03002e;
    font-weight: 800;
}

.hf-fleet-shield-tagline {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
    color: #1ab67b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hf-fleet-shield-detail {
    padding-top: 20px;
    border-top: 1px solid #e8edf2;
}

.hf-fleet-shield-detail + .hf-fleet-shield-detail {
    margin-top: 22px;
}

.hf-fleet-shield-detail h4 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    color: #03002e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hf-fleet-shield-detail p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6675;
}


/* Promise Section */

.hf-fleet-shield-promise {
    padding: 80px 24px;
    background: #ffffff;
}

.hf-fleet-shield-promise-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hf-fleet-shield-promise-inner .hf-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
}

.hf-fleet-shield-promise-inner h2 {
    margin: 8px 0 18px;
    font-size: 46px;
    line-height: 1.1;
    color: #03002e;
    font-weight: 800;
}

.hf-fleet-shield-promise-inner p {
    max-width: 760px;
    margin: 0 auto 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #5f6675;
}

.hf-fleet-shield-promise-inner p:last-child {
    margin-bottom: 0;
}

.hf-fleet-shield-promise-inner a {
    color: #1ab67b;
    font-weight: 700;
    text-decoration: none;
}

.hf-fleet-shield-promise-inner a:hover {
    text-decoration: underline;
}


/* Tablet / Mobile */

@media (max-width: 768px) {

    .hf-fleet-shield-hero {
        padding: 64px 24px 56px;
    }

    .hf-fleet-shield-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hf-fleet-shield-hero-copy {
        max-width: 680px;
        margin: 0 auto;
    }

    .hf-fleet-shield-hero-copy h1 {
        font-size: 40px;
        line-height: 1.06;
        letter-spacing: -1px;
    }

    .hf-fleet-shield-subtitle {
        font-size: 19px;
    }

    .hf-fleet-shield-hero-copy > p:not(.hf-fleet-shield-subtitle) {
        font-size: 16px;
    }

    .hf-fleet-shield-hero-visual img {
        width: 190px;
    }

    .hf-fleet-shield-points {
        padding: 64px 24px;
    }

    .hf-fleet-shield-points .hf-section-heading {
        margin-bottom: 32px;
    }

    .hf-fleet-shield-points .hf-section-heading h2 {
        font-size: 31px;
        line-height: 1.14;
    }

    .hf-fleet-shield-grid {
        grid-template-columns: 1fr;
    }

    .hf-fleet-shield-point {
        padding: 28px 22px;
    }

    .hf-fleet-shield-point h3 {
        font-size: 24px;
    }

    .hf-fleet-shield-promise {
        padding: 64px 24px;
    }

    .hf-fleet-shield-promise-inner h2 {
        font-size: 31px;
        line-height: 1.14;
    }
}


/* Very Small Screens */

@media (max-width: 430px) {

    .hf-fleet-shield-hero-copy h1 {
        font-size: 36px;
    }
}

@media (max-width: 390px) {

    .hf-fleet-shield-points .hf-section-heading h2,
    .hf-fleet-shield-promise-inner h2 {
        font-size: 29px;
    }

    .hf-fleet-shield-point h3 {
        font-size: 23px;
    }
}

@media (max-width: 320px) {

    .hf-fleet-shield-hero-copy h1 {
        font-size: 32px;
    }
}
/* ========================================
   15-MINUTE SPEED-TO-LEAD PAGE
======================================== */

.hf-sla-page {
	background: #ffffff;
}


/* Hero */

.hf-sla-hero {
	padding: 80px 24px;
	background: #ffffff;
}

.hf-sla-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: center;
}

.hf-sla-hero-copy {
	max-width: 680px;
}

.hf-sla-hero-copy .hf-eyebrow {
	display: inline-block;
	margin-bottom: 16px;
}

.hf-sla-hero-copy h1 {
	margin: 0 0 18px;
	font-size: clamp(52px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.6px;
	font-weight: 800;
	color: #03002e;
}

.hf-sla-hero-copy h2 {
	margin: 0 0 22px;
	font-size: 24px;
	line-height: 1.35;
	color: #1ab67b;
	font-weight: 700;
}

.hf-sla-hero-copy > p {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #5f6675;
}


/* Hero Card */

.hf-sla-hero-card {
	background: #03002e;
	border-radius: 22px;
	padding: 48px;
	box-shadow: 0 24px 60px rgba(3, 0, 46, 0.15);
	color: #ffffff;
	text-align: center;
}

.hf-sla-timer {
	display: block;
	font-size: 100px;
	line-height: 0.9;
	font-weight: 800;
	color: #1ab67b;
}

.hf-sla-timer-label {
	display: block;
	margin-top: 12px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #ffffff;
}

.hf-sla-hero-card p {
	margin: 24px auto 0;
	max-width: 360px;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}


/* Problem Section */

.hf-sla-problem {
	padding: 80px 24px;
	background: #f6f8fa;
}

.hf-sla-problem-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.hf-sla-problem .hf-section-heading {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.hf-sla-problem .hf-section-heading h2 {
	margin: 8px 0 10px;
	font-size: 46px;
	line-height: 1.1;
	color: #03002e;
}

.hf-sla-problem-content {
	max-width: 820px;
	margin: 0 auto;
}

.hf-sla-problem-content p {
	margin: 0 0 18px;
	font-size: 17px;
	line-height: 1.7;
	color: #5f6675;
}

.hf-sla-problem-content .hf-sla-lead {
	font-size: 21px;
	line-height: 1.55;
	font-weight: 700;
	color: #03002e;
}

.hf-sla-problem-content ul {
	margin: 22px 0 26px;
	padding-left: 24px;
}

.hf-sla-problem-content li {
	margin-bottom: 12px;
	font-size: 17px;
	line-height: 1.65;
	color: #5f6675;
}


/* Process Section */

.hf-sla-process {
	padding: 80px 24px;
	background: #ffffff;
}

.hf-sla-process-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.hf-sla-process .hf-section-heading {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.hf-sla-process .hf-section-heading h2 {
	margin: 8px 0 10px;
	font-size: 46px;
	line-height: 1.1;
	color: #03002e;
}


/* Process Flow */

.hf-sla-flow {
	max-width: 1100px;
	margin: 0 auto 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.hf-sla-flow span {
	padding: 12px 18px;
	border-radius: 999px;
	background: #f6f8fa;
	border: 1px solid #e8edf2;
	font-size: 14px;
	font-weight: 700;
	color: #03002e;
}

.hf-sla-flow strong {
	color: #1ab67b;
	font-size: 18px;
}


/* Process Cards */

.hf-sla-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.hf-sla-process-card {
	background: #ffffff;
	border: 1px solid #e8edf2;
	border-radius: 16px;
	padding: 30px 26px;
	box-shadow: 0 10px 30px rgba(3, 0, 46, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hf-sla-process-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px rgba(3, 0, 46, 0.09);
}

.hf-sla-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 32px;
	padding: 0 12px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(26, 182, 123, 0.1);
	color: #1ab67b;
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.hf-sla-process-card h3 {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.18;
	font-weight: 800;
	color: #03002e;
}

.hf-sla-process-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #5f6675;
}


/* Responsive */

@media (max-width: 900px) {

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

@media (max-width: 768px) {

	.hf-sla-hero {
		padding: 64px 24px 56px;
	}

	.hf-sla-hero-inner {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}

	.hf-sla-hero-copy {
		margin: 0 auto;
	}

	.hf-sla-hero-copy h1 {
		font-size: 40px;
		line-height: 1.06;
		letter-spacing: -1px;
	}

	.hf-sla-hero-copy h2 {
		font-size: 20px;
	}

	.hf-sla-hero-card {
		max-width: 500px;
		margin: 0 auto;
		padding: 40px 28px;
	}

	.hf-sla-timer {
		font-size: 82px;
	}

	.hf-sla-problem,
	.hf-sla-process {
		padding: 64px 24px;
	}

	.hf-sla-problem .hf-section-heading h2,
	.hf-sla-process .hf-section-heading h2 {
		font-size: 31px;
		line-height: 1.14;
	}

	.hf-sla-flow {
		flex-direction: column;
		gap: 10px;
	}

	.hf-sla-flow strong {
		transform: rotate(90deg);
	}

	.hf-sla-process-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {

	.hf-sla-hero-copy h1 {
		font-size: 36px;
	}

	.hf-sla-timer {
		font-size: 72px;
	}
}

@media (max-width: 390px) {

	.hf-sla-problem .hf-section-heading h2,
	.hf-sla-process .hf-section-heading h2 {
		font-size: 29px;
	}
}

@media (max-width: 320px) {

	.hf-sla-hero-copy h1 {
		font-size: 32px;
	}
}
/* ========================================
   15-MINUTE SPEED-TO-LEAD PAGE
======================================== */

.hf-sla-page {
	background: #ffffff;
}


/* Hero */

.hf-sla-hero {
	padding: 80px 24px;
	background: #ffffff;
}

.hf-sla-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: center;
}

.hf-sla-hero-copy {
	max-width: 680px;
}

.hf-sla-hero-copy .hf-eyebrow {
	display: inline-block;
	margin-bottom: 16px;
}

.hf-sla-hero-copy h1 {
	margin: 0 0 18px;
	font-size: clamp(52px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.6px;
	font-weight: 800;
	color: #03002e;
}

.hf-sla-hero-copy h2 {
	margin: 0 0 22px;
	font-size: 24px;
	line-height: 1.35;
	color: #1ab67b;
	font-weight: 700;
}

.hf-sla-hero-copy > p {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #5f6675;
}


/* Hero Card */

.hf-sla-hero-card {
	background: #03002e;
	border-radius: 22px;
	padding: 48px;
	box-shadow: 0 24px 60px rgba(3, 0, 46, 0.15);
	color: #ffffff;
	text-align: center;
}

.hf-sla-timer {
	display: block;
	font-size: 100px;
	line-height: 0.9;
	font-weight: 800;
	color: #1ab67b;
}

.hf-sla-timer-label {
	display: block;
	margin-top: 12px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #ffffff;
}

.hf-sla-hero-card p {
	margin: 24px auto 0;
	max-width: 360px;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}


/* Problem Section */

.hf-sla-problem {
	padding: 80px 24px;
	background: #f6f8fa;
}

.hf-sla-problem-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.hf-sla-problem .hf-section-heading {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.hf-sla-problem .hf-section-heading h2 {
	margin: 8px 0 10px;
	font-size: 46px;
	line-height: 1.1;
	color: #03002e;
}

.hf-sla-problem-content {
	max-width: 820px;
	margin: 0 auto;
}

.hf-sla-problem-content p {
	margin: 0 0 18px;
	font-size: 17px;
	line-height: 1.7;
	color: #5f6675;
}

.hf-sla-problem-content .hf-sla-lead {
	font-size: 21px;
	line-height: 1.55;
	font-weight: 700;
	color: #03002e;
}

.hf-sla-problem-content ul {
	margin: 22px 0 26px;
	padding-left: 24px;
}

.hf-sla-problem-content li {
	margin-bottom: 12px;
	font-size: 17px;
	line-height: 1.65;
	color: #5f6675;
}


/* Process Section */

.hf-sla-process {
	padding: 80px 24px;
	background: #ffffff;
}

.hf-sla-process-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.hf-sla-process .hf-section-heading {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.hf-sla-process .hf-section-heading h2 {
	margin: 8px 0 10px;
	font-size: 46px;
	line-height: 1.1;
	color: #03002e;
}


/* Process Flow */

.hf-sla-flow {
	max-width: 1100px;
	margin: 0 auto 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.hf-sla-flow span {
	padding: 12px 18px;
	border-radius: 999px;
	background: #f6f8fa;
	border: 1px solid #e8edf2;
	font-size: 14px;
	font-weight: 700;
	color: #03002e;
}

.hf-sla-flow strong {
	color: #1ab67b;
	font-size: 18px;
}


/* Process Cards */

.hf-sla-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.hf-sla-process-card {
	background: #ffffff;
	border: 1px solid #e8edf2;
	border-radius: 16px;
	padding: 30px 26px;
	box-shadow: 0 10px 30px rgba(3, 0, 46, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hf-sla-process-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px rgba(3, 0, 46, 0.09);
}

.hf-sla-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 32px;
	padding: 0 12px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(26, 182, 123, 0.1);
	color: #1ab67b;
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.hf-sla-process-card h3 {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.18;
	font-weight: 800;
	color: #03002e;
}

.hf-sla-process-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #5f6675;
}


/* Responsive */

@media (max-width: 900px) {

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

@media (max-width: 768px) {

	.hf-sla-hero {
		padding: 64px 24px 56px;
	}

	.hf-sla-hero-inner {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}

	.hf-sla-hero-copy {
		margin: 0 auto;
	}

	.hf-sla-hero-copy h1 {
		font-size: 40px;
		line-height: 1.06;
		letter-spacing: -1px;
	}

	.hf-sla-hero-copy h2 {
		font-size: 20px;
	}

	.hf-sla-hero-card {
		max-width: 500px;
		margin: 0 auto;
		padding: 40px 28px;
	}

	.hf-sla-timer {
		font-size: 82px;
	}

	.hf-sla-problem,
	.hf-sla-process {
		padding: 64px 24px;
	}

	.hf-sla-problem .hf-section-heading h2,
	.hf-sla-process .hf-section-heading h2 {
		font-size: 31px;
		line-height: 1.14;
	}

	.hf-sla-flow {
		flex-direction: column;
		gap: 10px;
	}

	.hf-sla-flow strong {
		transform: rotate(90deg);
	}

	.hf-sla-process-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {

	.hf-sla-hero-copy h1 {
		font-size: 36px;
	}

	.hf-sla-timer {
		font-size: 72px;
	}
}

@media (max-width: 390px) {

	.hf-sla-problem .hf-section-heading h2,
	.hf-sla-process .hf-section-heading h2 {
		font-size: 29px;
	}
}

@media (max-width: 320px) {

	.hf-sla-hero-copy h1 {
		font-size: 32px;
	}
}
/* =========================================================
   Contract Fine Print Database
========================================================= */

.hf-exposed-page {
    background: #ffffff;
}

/* Hero */

.hf-exposed-hero {
    padding: 84px 24px 76px;
    background: #ffffff;
}

.hf-exposed-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.hf-exposed-hero h1 {
    margin: 16px 0 20px;
    max-width: 980px;
    font-size: clamp(52px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -2.6px;
    color: #03002e;
    font-weight: 800;
}

.hf-exposed-hero h2 {
    margin: 0 0 22px;
    max-width: 900px;
    font-size: 24px;
    line-height: 1.4;
    color: #1ab67b;
}

.hf-exposed-hero p {
    max-width: 820px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #5f6675;
}


/* Intro */

.hf-exposed-intro {
    padding: 84px 24px;
    background: #f6f8fa;
}

.hf-exposed-intro-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.hf-exposed-intro .hf-section-heading {
    max-width: 800px;
}

.hf-exposed-intro .hf-section-heading h2 {
    margin: 12px 0 22px;
    font-size: 46px;
    line-height: 1.08;
    color: #03002e;
}

.hf-exposed-intro-inner > p {
    max-width: 820px;
    font-size: 18px;
    line-height: 1.75;
    color: #5f6675;
}

.hf-exposed-traps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.hf-exposed-traps article {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(3, 0, 46, 0.05);
}

.hf-exposed-traps article span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 800;
    color: #1ab67b;
}

.hf-exposed-traps article h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.35;
    color: #03002e;
}


/* Library */

.hf-exposed-library {
    padding: 88px 24px;
    background: #ffffff;
}

.hf-exposed-library-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hf-exposed-library .hf-section-heading h2 {
    margin: 12px 0 36px;
    font-size: 46px;
    line-height: 1.08;
    color: #03002e;
}


/* Search */

.hf-exposed-search-wrap {
    margin-bottom: 22px;
}

.hf-exposed-search {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    font-size: 16px;
    color: #03002e;
    background: #ffffff;
    outline: none;
}

.hf-exposed-search:focus {
    border-color: #1ab67b;
}


/* Filters */

.hf-exposed-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.hf-exposed-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #e8edf2;
    border-radius: 999px;
    background: #ffffff;
    color: #03002e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hf-exposed-filter:hover {
    border-color: #1ab67b;
    color: #1ab67b;
}

.hf-exposed-filter.is-active {
    background: #1ab67b;
    border-color: #1ab67b;
    color: #ffffff;
}

/* Audit Cards */

.hf-exposed-results {
    display: grid;
    gap: 26px;
}

.hf-audit-card {
    padding: 34px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(3, 0, 46, 0.05);
}

.hf-audit-card:hover {
    box-shadow: 0 16px 38px rgba(3, 0, 46, 0.09);
}

.hf-audit-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.hf-audit-number {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1ab67b;
}

.hf-audit-card h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
    color: #03002e;
}

.hf-audit-factor {
    margin: 8px 0 0;
    color: #5f6675;
}

.hf-audit-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px 13px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.hf-rating-fail {
    background: #fff1f1;
    color: #c62828;
    border: 1px solid #ffdada;
}

.hf-rating-pass {
    background: #f6f8fa;
    color: #1ab67b;
    border: 1px solid #e8edf2;
}


/* Tags */

.hf-audit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.hf-audit-tags span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f6f8fa;
    color: #5f6675;
    font-size: 12px;
    font-weight: 700;
}


/* Audit Sections */

.hf-audit-section {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #e8edf2;
}

.hf-audit-section h4 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #03002e;
}

.hf-audit-section p,
.hf-audit-section blockquote {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6675;
}

.hf-audit-section blockquote {
    padding: 18px 20px;
    background: #f6f8fa;
    border-left: 4px solid #1ab67b;
    border-radius: 10px;
}

.hf-audit-fix {
    background: #f6f8fa;
    padding: 20px;
    border-radius: 12px;
    border-top: 0;
}


/* No Results */

.hf-exposed-no-results {
    padding: 28px;
    text-align: center;
    color: #5f6675;
    background: #f6f8fa;
    border-radius: 16px;
}


/* Responsive */

/* =========================
   EXPOSED PAGE - RESPONSIVE
========================= */

@media (max-width: 900px) {

    .hf-exposed-traps {
        grid-template-columns: 1fr;
    }

    .hf-audit-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 768px) {

    .hf-exposed-hero,
    .hf-exposed-intro,
    .hf-exposed-library {
        padding: 56px 18px;
    }

    .hf-exposed-hero h1 {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .hf-exposed-intro .hf-section-heading h2,
    .hf-exposed-library .hf-section-heading h2 {
        font-size: 31px;
        line-height: 1.1;
    }

    .hf-exposed-search {
        padding: 14px 16px;
        font-size: 14px;
    }

    .hf-exposed-filters {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        margin-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hf-exposed-filters::-webkit-scrollbar {
        display: none;
    }

    .hf-exposed-filter {
        flex: 0 0 auto;
        min-width: max-content;
        padding: 9px 14px;
        font-size: 13px;
        line-height: 1;
        white-space: nowrap;
    }

    .hf-audit-card {
        padding: 22px 18px;
    }

    .hf-audit-card-header {
        gap: 10px;
        margin-bottom: 14px;
    }

    .hf-audit-number {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .hf-audit-card h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .hf-audit-rating {
        padding: 7px 10px;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    .hf-audit-tags {
        gap: 6px;
        margin-bottom: 16px;
    }

    .hf-audit-tags span {
        padding: 6px 9px;
        font-size: 11px;
    }

    .hf-audit-section {
        margin-top: 16px;
        padding-top: 16px;
    }

    .hf-audit-section h4 {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .hf-audit-section p,
    .hf-audit-section blockquote {
        font-size: 15px;
        line-height: 1.6;
    }

    .hf-audit-section blockquote {
        padding: 14px 15px;
    }

    .hf-audit-fix {
        padding: 16px;
    }
}


@media (max-width: 430px) {

    .hf-exposed-hero,
    .hf-exposed-intro,
    .hf-exposed-library {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hf-exposed-hero h1 {
        font-size: 36px;
    }

    .hf-exposed-library .hf-section-heading {
        margin-bottom: 24px;
    }

    .hf-exposed-library .hf-section-heading h2 {
        font-size: 29px;
    }

    .hf-exposed-search {
        width: 100%;
        padding: 13px 14px;
        font-size: 13px;
    }

    .hf-exposed-filter {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hf-audit-card {
        padding: 20px 16px;
    }

    .hf-audit-card h3 {
        font-size: 22px;
    }

    .hf-audit-rating {
        font-size: 10px;
        padding: 6px 9px;
    }
}


@media (max-width: 390px) {

    .hf-exposed-intro .hf-section-heading h2,
    .hf-exposed-library .hf-section-heading h2 {
        font-size: 28px;
    }
}


@media (max-width: 320px) {

    .hf-exposed-hero h1 {
        font-size: 32px;
    }

    .hf-audit-card h3 {
        font-size: 21px;
    }
}
/* Contract Evidence */

.hf-audit-evidence {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8edf2;
}

.hf-audit-evidence h4 {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    color: #03002e;
}

.hf-audit-evidence-link {
    display: block;
    overflow: hidden;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    background: #f6f8fa;
    cursor: zoom-in;
}

.hf-audit-evidence-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.hf-audit-evidence-note {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #5f6675;
}


/* Contract Evidence Lightbox */

body.hf-lightbox-open {
    overflow: hidden;
}

.hf-audit-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 24px;
    background: rgba(3, 0, 46, 0.88);
}

.hf-audit-lightbox[hidden] {
    display: none;
}

.hf-audit-lightbox-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hf-audit-lightbox-image {
    display: block;
    max-width: 95%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hf-audit-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #03002e;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 600px) {

    @media (max-width: 600px) {

    .hf-audit-card {
        padding: 20px 16px;
    }

    .hf-audit-card-header {
        display: block;
        margin-bottom: 0;
    }

    .hf-audit-number {
        margin-bottom: 8px;
    }

    .hf-audit-card h3 {
        margin-bottom: 14px;
        font-size: 22px;
        line-height: 1.2;
    }

    .hf-audit-rating {
        display: inline-flex;
        align-items: center;
        width: auto;
        margin: 0;
        padding: 7px 10px;
        font-size: 10px;
        line-height: 1;
        vertical-align: middle;
        white-space: nowrap;
    }

    .hf-audit-tags {
        display: inline-flex;
        align-items: center;
        width: auto;
        gap: 6px;
        margin: 0 0 0 6px;
        vertical-align: middle;
    }

    .hf-audit-tags span {
        display: inline-flex;
        align-items: center;
        width: auto;
        margin: 0;
        padding: 7px 10px;
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
    }

    .hf-audit-evidence {
        clear: both;
        margin-top: 18px;
        padding-top: 18px;
    }

    .hf-audit-evidence h4 {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .hf-audit-evidence-image {
        width: 100%;
        height: 220px;
        max-height: none;
        object-fit: cover;
        object-position: top center;
    }

    .hf-audit-evidence-note {
        margin-top: 8px;
        font-size: 11px;
        line-height: 1.4;
    }

    .hf-audit-lightbox {
        padding: 12px;
    }

    .hf-audit-lightbox-image {
        max-width: 100%;
        max-height: 84vh;
    }

    .hf-audit-lightbox-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}
}
/* =========================
   LEGAL PAGES - LOCAL
========================= */

body.page-id-3 .wp-block-post-content,
body.page-id-32 .wp-block-post-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    color: #5f6675;
    font-size: 17px;
    line-height: 1.7;
}

body.page-id-3 .wp-block-post-content h1,
body.page-id-32 .wp-block-post-content h1 {
    margin: 0 0 36px;
    color: #03002e;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -2px;
}

body.page-id-3 .wp-block-post-content h2,
body.page-id-32 .wp-block-post-content h2 {
    margin: 34px 0 12px;
    color: #03002e;
    font-size: 28px;
    line-height: 1.2;
}

body.page-id-3 .wp-block-post-content h3,
body.page-id-32 .wp-block-post-content h3 {
    margin: 26px 0 10px;
    color: #03002e;
    font-size: 21px;
    line-height: 1.3;
}

body.page-id-3 .wp-block-post-content p,
body.page-id-32 .wp-block-post-content p {
    margin: 0 0 16px;
}

body.page-id-3 .wp-block-post-content ul,
body.page-id-3 .wp-block-post-content ol,
body.page-id-32 .wp-block-post-content ul,
body.page-id-32 .wp-block-post-content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

body.page-id-3 .wp-block-post-content li,
body.page-id-32 .wp-block-post-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {

    body.page-id-3 .wp-block-post-content,
    body.page-id-32 .wp-block-post-content {
        padding: 48px 18px 64px;
        font-size: 16px;
        line-height: 1.65;
    }

    body.page-id-3 .wp-block-post-content h1,
    body.page-id-32 .wp-block-post-content h1 {
        font-size: 38px;
        margin-bottom: 28px;
    }

    body.page-id-3 .wp-block-post-content h2,
    body.page-id-32 .wp-block-post-content h2 {
        font-size: 25px;
        margin-top: 28px;
    }
}
@media (max-width: 600px) {
	.hf-screen-standard-copy .hf-primary-cta {
		display: flex;
	}
}