/*
 * Zero Fees Home Buyers — Main Theme CSS
 * Premium design system for the ZFH Buyers real estate website.
 */

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800;900&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
	/* Brand Colors */
	--zfh-blue-50: #eff6ff;
	--zfh-blue-100: #dbeafe;
	--zfh-blue-200: #bfdbfe;
	--zfh-blue-400: #60a5fa;
	--zfh-blue-500: #3b82f6;
	--zfh-blue-600: #2563eb;
	--zfh-blue-700: #1d4ed8;
	--zfh-blue-800: #1e40af;
	--zfh-blue-900: #1e3a8a;

	--zfh-primary: #2563eb;
	--zfh-primary-dark: #1d4ed8;
	--zfh-primary-light: #3b82f6;
	--zfh-accent: #22c55e;
	--zfh-accent-dark: #16a34a;

	/* Neutrals */
	--zfh-navy: #0f172a;
	--zfh-slate: #1e293b;
	--zfh-gray-50: #f8fafc;
	--zfh-gray-100: #f1f5f9;
	--zfh-gray-200: #e2e8f0;
	--zfh-gray-300: #cbd5e1;
	--zfh-gray-400: #94a3b8;
	--zfh-gray-500: #64748b;
	--zfh-gray-600: #475569;
	--zfh-gray-700: #334155;
	--zfh-gray-800: #1e293b;
	--zfh-gray-900: #0f172a;
	--zfh-white: #ffffff;

	/* Typography */
	--zfh-font-heading: 'Poppins', 'Inter', system-ui, sans-serif;
	--zfh-font-body: 'Inter', system-ui, -apple-system, sans-serif;

	/* Font Sizes (fluid) */
	--zfh-text-xs: 0.75rem;
	--zfh-text-sm: 0.875rem;
	--zfh-text-base: 1rem;
	--zfh-text-lg: 1.125rem;
	--zfh-text-xl: 1.25rem;
	--zfh-text-2xl: 1.5rem;
	--zfh-text-3xl: 1.875rem;
	--zfh-text-4xl: 2.25rem;
	--zfh-text-5xl: 3rem;
	--zfh-text-6xl: 3.75rem;

	/* Spacing */
	--zfh-space-1: 0.25rem;
	--zfh-space-2: 0.5rem;
	--zfh-space-3: 0.75rem;
	--zfh-space-4: 1rem;
	--zfh-space-5: 1.25rem;
	--zfh-space-6: 1.5rem;
	--zfh-space-8: 2rem;
	--zfh-space-10: 2.5rem;
	--zfh-space-12: 3rem;
	--zfh-space-16: 4rem;
	--zfh-space-20: 5rem;
	--zfh-space-24: 6rem;
	--zfh-space-32: 8rem;

	/* Border Radius */
	--zfh-radius-sm: 0.375rem;
	--zfh-radius-md: 0.75rem;
	--zfh-radius-lg: 1rem;
	--zfh-radius-xl: 1.5rem;
	--zfh-radius-2xl: 2rem;
	--zfh-radius-full: 9999px;

	/* Shadows */
	--zfh-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--zfh-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--zfh-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--zfh-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--zfh-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--zfh-shadow-glow: 0 0 30px rgba(37, 99, 235, 0.25);

	/* Transitions */
	--zfh-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
	--zfh-transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
	--zfh-transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

	/* Layout */
	--zfh-container-max: 1200px;
	--zfh-container-pad: clamp(1.25rem, 5vw, 2.5rem);
	--zfh-header-height: 80px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--zfh-font-body);
	font-size: var(--zfh-text-base);
	line-height: 1.6;
	color: var(--zfh-gray-700);
	background-color: var(--zfh-navy);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--zfh-transition-fast);
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

ul,
ol {
	list-style: none;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.zfh-container {
	max-width: var(--zfh-container-max);
	margin-inline: auto;
	padding-inline: var(--zfh-container-pad);
	width: 100%;
}

.zfh-section-header {
	text-align: center;
	max-width: 680px;
	margin-inline: auto;
	margin-bottom: var(--zfh-space-16);
}

.zfh-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--zfh-space-2);
	font-family: var(--zfh-font-body);
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--zfh-primary);
	background: var(--zfh-blue-50);
	padding: 0.3rem 1rem;
	border-radius: var(--zfh-radius-full);
	border: 1px solid var(--zfh-blue-200);
	margin-bottom: var(--zfh-space-4);
}

.zfh-section-eyebrow--light {
	color: var(--zfh-blue-200);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

.zfh-section-title {
	font-family: var(--zfh-font-heading);
	font-size: clamp(var(--zfh-text-3xl), 4vw, var(--zfh-text-5xl));
	font-weight: 800;
	line-height: 1.15;
	color: var(--zfh-gray-900);
	letter-spacing: -0.03em;
	margin-bottom: var(--zfh-space-4);
}

.zfh-section-title--light {
	color: var(--zfh-white);
}

.zfh-section-subtitle {
	font-size: var(--zfh-text-lg);
	color: var(--zfh-gray-500);
	line-height: 1.7;
}

.zfh-section-subtitle--light {
	color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.zfh-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--zfh-space-2);
	padding: 0.75rem 1.75rem;
	border-radius: var(--zfh-radius-full);
	font-family: var(--zfh-font-body);
	font-size: var(--zfh-text-base);
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	transition: all var(--zfh-transition-normal);
	border: 2px solid transparent;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.zfh-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0);
	transition: background var(--zfh-transition-fast);
}

.zfh-btn:hover::after {
	background: rgba(255, 255, 255, 0.1);
}

.zfh-btn--primary,
.zfh-btn--primary:visited {
	background: var(--zfh-primary);
	color: lightgreen !important;
	border: 2px solid var(--zfh-primary);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.zfh-btn--primary:hover,
.zfh-btn--primary:focus {
	background: var(--zfh-primary-dark);
	border-color: var(--zfh-primary-dark);
	color: var(--zfh-white) !important;
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.zfh-btn--primary:active {
	transform: translateY(0);
}

.zfh-btn--ghost {
	background: rgba(255, 255, 255, 0.15);
	color: var(--zfh-white);
	border-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(8px);
}

.zfh-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.25);
	color: var(--zfh-white);
	transform: translateY(-2px);
}

.zfh-btn--white {
	background: var(--zfh-white);
	color: var(--zfh-primary);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.zfh-btn--white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	color: var(--zfh-primary-dark);
}

.zfh-btn--outline-white {
	background: transparent;
	color: var(--zfh-white);
	border-color: rgba(255, 255, 255, 0.5);
}

.zfh-btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--zfh-white);
	transform: translateY(-2px);
}

.zfh-btn--lg {
	padding: 1rem 2.25rem;
	font-size: var(--zfh-text-lg);
	border-radius: var(--zfh-radius-full);
}

.zfh-btn--full {
	width: 100%;
	justify-content: center;
}

.zfh-link {
	color: var(--zfh-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--zfh-transition-fast);
}

.zfh-link:hover {
	color: var(--zfh-primary-dark);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
#page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: var(--zfh-white);
}

#content {
	flex: 1;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--zfh-header-height);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: all var(--zfh-transition-normal);
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.site-header.zfh-scrolled {
	height: 68px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.site-header .zfh-container {
	height: 100%;
}

.zfh-header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	gap: var(--zfh-space-4);
}

/* Site Branding */
.site-branding {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-self: start;
}

.site-branding .custom-logo {
	max-height: 48px;
	width: auto;
	object-fit: contain;
	display: block;
	transition: transform var(--zfh-transition-normal);
}

.site-header.zfh-scrolled .custom-logo {
	max-height: 40px;
}

.site-branding a:hover .custom-logo {
	transform: scale(1.02);
}

.site-title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-xl);
	font-weight: 800;
	color: var(--zfh-navy);
	letter-spacing: -0.02em;
	line-height: 1;
}

.site-description {
	display: none;
}

/* Navigation */
.main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-1);
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation ul li {
	position: relative;
}

.main-navigation ul li a {
	display: block;
	padding: 0.5rem 0.875rem;
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	color: var(--zfh-gray-700);
	border-radius: var(--zfh-radius-sm);
	transition: all var(--zfh-transition-fast);
	text-decoration: none;
	white-space: nowrap;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item>a,
.main-navigation ul li.current_page_item>a {
	color: var(--zfh-primary);
	background: var(--zfh-blue-50);
}

.main-navigation ul li.current_page_item>a,
.main-navigation ul li.current-menu-item>a {
	color: var(--zfh-primary);
}

/* Header CTA */
.zfh-header-cta {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-3);
	flex-shrink: 0;
	justify-self: end;
}

.zfh-header-phone {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-2);
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	color: var(--zfh-gray-700);
	text-decoration: none;
	transition: color var(--zfh-transition-fast);
}

.zfh-header-phone:hover {
	color: var(--zfh-primary);
}

.zfh-header-phone svg {
	color: var(--zfh-primary);
}

/* Hamburger */
#zfh-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	border: none;
	background: var(--zfh-gray-100);
	border-radius: var(--zfh-radius-sm);
	cursor: pointer;
	gap: 5px;
	transition: background var(--zfh-transition-fast);
}

#zfh-menu-toggle:hover {
	background: var(--zfh-gray-200);
}

#zfh-menu-toggle .bar {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--zfh-gray-700);
	border-radius: 2px;
	transition: all var(--zfh-transition-normal);
}

#zfh-menu-toggle.toggled .bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

#zfh-menu-toggle.toggled .bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

#zfh-menu-toggle.toggled .bar:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.zfh-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: var(--zfh-header-height);
}

.zfh-hero__bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/hero-home.jpg');
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	transform: scale(1.05);
	transition: transform 8s ease-out;
}

.zfh-hero__bg.loaded {
	transform: scale(1);
}

.zfh-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg,
			rgba(10, 20, 50, 0.88) 0%,
			rgba(15, 30, 70, 0.75) 45%,
			rgba(10, 20, 50, 0.45) 100%);
}

.zfh-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: var(--zfh-space-20);
}

.zfh-hero__inner {
	display: grid;
	grid-template-columns: 1fr minmax(380px, 420px);
	gap: var(--zfh-space-16);
	align-items: center;
}

.zfh-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--zfh-space-2);
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--zfh-blue-300, #93c5fd);
	margin-bottom: var(--zfh-space-5);
}

.zfh-hero__eyebrow svg {
	color: #fbbf24;
}

.zfh-hero__title {
	font-family: var(--zfh-font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	color: var(--zfh-white);
	letter-spacing: -0.04em;
	margin-bottom: var(--zfh-space-6);
}

.zfh-hero__title-accent {
	background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.zfh-hero__subtitle {
	font-size: clamp(var(--zfh-text-base), 1.5vw, var(--zfh-text-lg));
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.75;
	max-width: 540px;
	margin-bottom: var(--zfh-space-10);
}

.zfh-hero__cta-group {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-4);
	flex-wrap: wrap;
	margin-bottom: var(--zfh-space-10);
}

.zfh-hero__badges {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-6);
	flex-wrap: wrap;
}

.zfh-hero__badge {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-2);
	font-size: var(--zfh-text-sm);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.zfh-hero__badge svg {
	color: var(--zfh-accent);
}

/* Hero Form Card */
.zfh-hero__form-card {
	background: var(--zfh-white);
	border-radius: var(--zfh-radius-2xl);
	padding: var(--zfh-space-8);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
	position: relative;
	animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
	scroll-margin-top: 120px;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.zfh-hero__form-header {
	text-align: center;
	margin-bottom: var(--zfh-space-6);
	padding-bottom: var(--zfh-space-6);
	border-bottom: 1px solid var(--zfh-gray-100);
}

.zfh-hero__form-title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-2xl);
	font-weight: 800;
	color: var(--zfh-gray-900);
	letter-spacing: -0.02em;
	margin-bottom: var(--zfh-space-1);
}

.zfh-hero__form-subtitle {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-500);
}

/* Quick Form */
.zfh-quick-form {
	display: flex;
	flex-direction: column;
	gap: var(--zfh-space-4);
}

.zfh-quick-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--zfh-space-3);
}

.zfh-quick-form__field {
	display: flex;
	flex-direction: column;
	gap: var(--zfh-space-1);
}

.zfh-quick-form__label {
	font-size: var(--zfh-text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--zfh-gray-600);
}

#quick-offer-form input.zfh-quick-form__input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid var(--zfh-gray-200);
	border-radius: var(--zfh-radius-full);
	font-size: var(--zfh-text-base);
	font-family: var(--zfh-font-body);
	color: var(--zfh-gray-800);
	background: var(--zfh-gray-50);
	transition: border-color var(--zfh-transition-fast), background var(--zfh-transition-fast), box-shadow var(--zfh-transition-fast);
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

#quick-offer-form input.zfh-quick-form__input:focus {
	border-color: var(--zfh-primary);
	background: var(--zfh-white);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.zfh-quick-form__input::placeholder {
	color: var(--zfh-gray-400);
}

.zfh-quick-form__disclaimer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--zfh-space-2);
	font-size: var(--zfh-text-xs);
	color: var(--zfh-gray-400);
	margin-top: var(--zfh-space-1);
	margin-bottom: 0 !important;
}

.zfh-quick-form__disclaimer svg {
	color: var(--zfh-accent);
	flex-shrink: 0;
}

/* Hero Scroll Hint */
.zfh-hero__scroll-hint {
	position: absolute;
	bottom: var(--zfh-space-8);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--zfh-space-2);
	color: rgba(255, 255, 255, 0.5);
	font-size: var(--zfh-text-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	animation: bounce 2s infinite;
}

.zfh-hero__scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(6px);
	}
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.zfh-trust-bar {
	background: var(--zfh-navy);
	padding: var(--zfh-space-8) 0;
}

.zfh-trust-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: var(--zfh-space-8);
	flex-wrap: wrap;
}

.zfh-trust-bar__stat {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--zfh-space-4);
}

.zfh-trust-bar__num-row {
	display: flex;
	align-items: center;
	line-height: 1;
}

.zfh-trust-bar__number {
	font-family: var(--zfh-font-heading);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 900;
	color: var(--zfh-white);
	line-height: 1;
	letter-spacing: -0.05em;
}

.zfh-trust-bar__plus,
.zfh-trust-bar__percent {
	font-family: var(--zfh-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	color: var(--zfh-accent);
	margin-left: 2px;
	margin-top: 6px;
}

.zfh-trust-bar__label {
	font-size: var(--zfh-text-xs);
	color: var(--zfh-gray-400);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: left;
	max-width: 120px;
	line-height: 1.4;
}

.zfh-trust-bar__divider {
	width: 1px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   HOW IT WORKS (PROCESS) SECTION
   ============================================================ */
.zfh-process {
	padding-block: var(--zfh-space-24);
	background: var(--zfh-white);
}

.zfh-process__grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}

.zfh-process__step {
	flex: 1;
	min-width: 200px;
	max-width: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: var(--zfh-space-8) var(--zfh-space-5);
	position: relative;
	transition: transform var(--zfh-transition-normal);
}

.zfh-process__step:hover {
	transform: translateY(-8px);
}

.zfh-process__step-number {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-5xl);
	font-weight: 900;
	color: var(--zfh-blue-100);
	line-height: 1;
	letter-spacing: -0.05em;
	margin-bottom: var(--zfh-space-4);
}

.zfh-process__icon {
	width: 72px;
	height: 72px;
	border-radius: var(--zfh-radius-xl);
	background: linear-gradient(135deg, var(--zfh-blue-50), var(--zfh-blue-100));
	border: 2px solid var(--zfh-blue-200);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--zfh-space-5);
	color: var(--zfh-primary);
	transition: all var(--zfh-transition-normal);
}

.zfh-process__step:hover .zfh-process__icon {
	background: linear-gradient(135deg, var(--zfh-primary), var(--zfh-blue-700));
	border-color: var(--zfh-primary);
	color: var(--zfh-white);
	box-shadow: var(--zfh-shadow-glow);
	transform: scale(1.1);
}

.zfh-process__step-title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-lg);
	font-weight: 700;
	color: var(--zfh-gray-900);
	margin-bottom: var(--zfh-space-3);
	letter-spacing: -0.01em;
}

.zfh-process__step-desc {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-500);
	line-height: 1.7;
}

.zfh-process__connector {
	display: flex;
	align-items: center;
	padding-top: 60px;
	color: var(--zfh-gray-300);
	flex-shrink: 0;
}

.zfh-process__connector svg {
	width: 50px;
}

.zfh-process__cta {
	text-align: center;
	margin-top: var(--zfh-space-12);
}

/* ============================================================
   BENEFITS / WHY CHOOSE US SECTION
   ============================================================ */
.zfh-benefits {
	padding-block: var(--zfh-space-24);
	position: relative;
	overflow: hidden;
}

.zfh-benefits__bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/process-bg.jpg');
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.zfh-benefits__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 58, 138, 0.92) 100%);
}

.zfh-benefits .zfh-container {
	position: relative;
	z-index: 1;
}

.zfh-benefits__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--zfh-space-5);
}

.zfh-benefit-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--zfh-radius-xl);
	padding: var(--zfh-space-8);
	backdrop-filter: blur(10px);
	transition: all var(--zfh-transition-normal);
	position: relative;
	overflow: hidden;
}

.zfh-benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--zfh-primary), var(--zfh-accent));
	transform: scaleX(0);
	transition: transform var(--zfh-transition-normal);
}

.zfh-benefit-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(37, 99, 235, 0.4);
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zfh-benefit-card:hover::before {
	transform: scaleX(1);
}

.zfh-benefit-card__icon {
	width: 56px;
	height: 56px;
	border-radius: var(--zfh-radius-lg);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.1));
	border: 1px solid rgba(99, 179, 237, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--zfh-space-5);
	color: #93c5fd;
	transition: all var(--zfh-transition-normal);
}

.zfh-benefit-card:hover .zfh-benefit-card__icon {
	background: linear-gradient(135deg, var(--zfh-primary), var(--zfh-blue-700));
	color: var(--zfh-white);
	border-color: var(--zfh-primary);
}

.zfh-benefit-card__title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-xl);
	font-weight: 700;
	color: var(--zfh-white);
	margin-bottom: var(--zfh-space-3);
	letter-spacing: -0.01em;
}

.zfh-benefit-card__desc {
	font-size: var(--zfh-text-sm);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.75;
	margin: 0;
}

/* ============================================================
   COMPARISON TABLE SECTION
   ============================================================ */
.zfh-comparison {
	padding-block: var(--zfh-space-24);
	background: var(--zfh-gray-50);
}

.zfh-comparison__table-wrap {
	overflow-x: auto;
	border-radius: var(--zfh-radius-2xl);
	box-shadow: var(--zfh-shadow-2xl);
}

.zfh-comparison__table {
	width: 100%;
	border-collapse: collapse;
	background: var(--zfh-white);
	min-width: 560px;
}

.zfh-comparison__table thead {
	background: var(--zfh-gray-50);
}

.zfh-comparison__table th {
	padding: var(--zfh-space-5) var(--zfh-space-6);
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-sm);
	font-weight: 700;
	color: var(--zfh-gray-600);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-bottom: 2px solid var(--zfh-gray-200);
}

.zfh-comparison__col-us {
	background: linear-gradient(135deg, var(--zfh-primary), var(--zfh-blue-700));
	text-align: center;
	border-radius: 0 !important;
}

.zfh-comparison__col-badge {
	display: inline-block;
	color: var(--zfh-white);
	font-size: var(--zfh-text-sm);
	font-weight: 800;
}

.zfh-comparison__col-traditional {
	text-align: center;
}

.zfh-comparison__table td {
	padding: var(--zfh-space-4) var(--zfh-space-6);
	border-bottom: 1px solid var(--zfh-gray-100);
	font-size: var(--zfh-text-sm);
}

.zfh-comparison__table tbody tr:last-child td {
	border-bottom: none;
}

.zfh-comparison__table tbody tr:hover td {
	background: var(--zfh-gray-50);
}

.zfh-comparison__feature {
	font-weight: 600;
	text-align: center;
	color: var(--zfh-gray-700);
}

.zfh-comparison__us {
	text-align: center;
	background: rgba(37, 99, 235, 0.04);
	font-weight: 600;
	color: var(--zfh-accent-dark, #16a34a);
}

.zfh-comparison__traditional {
	text-align: center;
	color: var(--zfh-gray-500);
}

.zfh-comparison__us svg,
.zfh-comparison__traditional svg {
	display: inline-block;
	vertical-align: middle;
	margin-right: var(--zfh-space-2);
	margin-top: -2px;
}

.zfh-comparison__us svg {
	color: var(--zfh-accent);
}

.zfh-comparison__traditional svg {
	color: #ef4444;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.zfh-testimonials {
	padding-block: var(--zfh-space-24);
	background: var(--zfh-white);
}

.zfh-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--zfh-space-6);
}

.zfh-testimonial-card {
	background: var(--zfh-white);
	border: 1px solid var(--zfh-gray-200);
	border-radius: var(--zfh-radius-xl);
	padding: var(--zfh-space-8);
	display: flex;
	flex-direction: column;
	gap: var(--zfh-space-5);
	transition: all var(--zfh-transition-normal);
	position: relative;
}

.zfh-testimonial-card::before {
	content: '\201C';
	position: absolute;
	top: var(--zfh-space-5);
	right: var(--zfh-space-6);
	font-size: 5rem;
	line-height: 1;
	color: var(--zfh-blue-100);
	font-family: Georgia, serif;
	leading-trim: both;
}

.zfh-testimonial-card:hover {
	border-color: var(--zfh-blue-200);
	box-shadow: var(--zfh-shadow-xl);
	transform: translateY(-6px);
}

.zfh-testimonial-card__stars {
	display: flex;
	gap: 3px;
	color: #f59e0b;
}

.zfh-testimonial-card__quote {
	flex: 1;
	font-size: var(--zfh-text-base);
	color: var(--zfh-gray-600);
	line-height: 1.75;
	font-style: normal;
}

.zfh-testimonial-card__quote p {
	margin: 0;
}

.zfh-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-3);
	padding-top: var(--zfh-space-5);
	border-top: 1px solid var(--zfh-gray-100);
}

.zfh-testimonial-card__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--zfh-primary), var(--zfh-blue-700));
	color: var(--zfh-white);
	font-weight: 700;
	font-size: var(--zfh-text-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.zfh-testimonial-card__name {
	display: block;
	font-weight: 700;
	color: var(--zfh-gray-800);
	font-style: normal;
}

.zfh-testimonial-card__location {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-400);
}

/* ============================================================
   SITUATIONS SECTION
   ============================================================ */
.zfh-situations {
	padding-block: var(--zfh-space-20);
	background: var(--zfh-gray-50);
}

.zfh-situations__grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--zfh-space-3);
	justify-content: center;
	margin-bottom: var(--zfh-space-8);
}

.zfh-situation-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--zfh-space-2);
	padding: 0.625rem 1rem;
	background: var(--zfh-white);
	border: 1.5px solid var(--zfh-gray-200);
	border-radius: var(--zfh-radius-full);
	font-size: var(--zfh-text-sm);
	font-weight: 500;
	color: var(--zfh-gray-700);
	cursor: default;
	transition: all var(--zfh-transition-fast);
}

.zfh-situation-chip:hover {
	background: var(--zfh-blue-50);
	border-color: var(--zfh-blue-200);
	color: var(--zfh-primary);
	transform: translateY(-2px);
	box-shadow: var(--zfh-shadow-sm);
}

.zfh-situation-chip svg {
	color: var(--zfh-primary);
}

.zfh-situations__note {
	text-align: center;
	font-size: var(--zfh-text-base);
	color: var(--zfh-gray-500);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.zfh-final-cta {
	padding-block: var(--zfh-space-20);
	background: linear-gradient(135deg, var(--zfh-blue-900) 0%, var(--zfh-navy) 40%, #041b4e 100%);
	position: relative;
	overflow: hidden;
}

.zfh-final-cta::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.15);
	pointer-events: none;
}

.zfh-final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--zfh-space-12);
	position: relative;
	z-index: 1;
}

.zfh-final-cta__content {
	flex: 1;
	max-width: 640px;
}

.zfh-final-cta__title {
	font-family: var(--zfh-font-heading);
	font-size: clamp(var(--zfh-text-3xl), 4vw, var(--zfh-text-5xl));
	font-weight: 900;
	color: var(--zfh-white);
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: var(--zfh-space-4);
}

.zfh-final-cta__subtitle {
	font-size: var(--zfh-text-lg);
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	margin-bottom: var(--zfh-space-8);
}

.zfh-final-cta__actions {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-4);
	flex-wrap: wrap;
}

.zfh-final-cta__graphic {
	flex-shrink: 0;
	position: relative;
	width: 200px;
	height: 200px;
}

.zfh-final-cta__circle {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.zfh-final-cta__circle--1 {
	inset: 0;
	animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zfh-final-cta__circle--2 {
	inset: 20px;
	animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite 0.5s;
}

@keyframes pulse-ring {

	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}

	50% {
		opacity: 0.3;
		transform: scale(1.05);
	}
}

.zfh-final-cta__icon-wrap {
	position: absolute;
	inset: 40px;
	background: rgba(37, 99, 235, 0.2);
	border-radius: 50%;
	border: 1px solid rgba(37, 99, 235, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
	background: var(--zfh-navy);
	color: var(--zfh-gray-400);
	padding: var(--zfh-space-12) 0 var(--zfh-space-8);
}

.zfh-footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--zfh-space-8);
	padding-bottom: var(--zfh-space-8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: var(--zfh-space-8);
}

.zfh-footer-brand {
	max-width: 340px;
}

.zfh-footer-logo {
	display: block;
	margin-bottom: var(--zfh-space-4);
	filter: brightness(0) invert(1);
	opacity: 0.85;
	max-height: 45px;
	width: auto;
}

.zfh-footer-tagline {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-400);
	line-height: 1.7;
}

.zfh-footer-heading {
	font-size: var(--zfh-text-base);
	font-weight: 700;
	color: var(--zfh-white);
	margin-bottom: var(--zfh-space-4);
	letter-spacing: 0.02em;
}

.zfh-footer-nav {
	display: flex;
	flex-direction: column;
	gap: var(--zfh-space-2);
}

.zfh-footer-contact p {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-400);
	margin-bottom: var(--zfh-space-2);
	line-height: 1.6;
}

.zfh-footer-contact a {
	color: var(--zfh-gray-400);
	text-decoration: none;
	transition: color var(--zfh-transition-fast);
}

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

.zfh-footer-social {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-3);
	margin-top: var(--zfh-space-4);
}

.zfh-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--zfh-gray-400);
	transition: all var(--zfh-transition-fast);
}

.zfh-footer-social a:hover {
	background: var(--zfh-primary);
	color: var(--zfh-white);
	transform: translateY(-2px);
}

.zfh-footer-nav a,
.zfh-footer-nav a:visited {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-400) !important;
	transition: color var(--zfh-transition-fast);
	text-decoration: none;
}

.zfh-footer-nav a:hover,
.zfh-footer-nav a:focus {
	color: var(--zfh-white) !important;
}

.zfh-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--zfh-space-4);
	flex-wrap: wrap;
}

.zfh-footer-copy {
	font-size: var(--zfh-text-xs);
	color: var(--zfh-gray-500);
	margin-bottom: 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

[data-animate-delay="1"] {
	transition-delay: 0.1s;
}

[data-animate-delay="2"] {
	transition-delay: 0.2s;
}

[data-animate-delay="3"] {
	transition-delay: 0.3s;
}

[data-animate-delay="4"] {
	transition-delay: 0.4s;
}

/* ============================================================
   PAGE HERO SECTIONS
   ============================================================ */
.zfh-page-hero {
	position: relative;
	padding: calc(var(--zfh-header-height) + var(--zfh-space-20)) 0 var(--zfh-space-20);
	background-size: cover;
	background-position: center;
	color: var(--zfh-white);
	text-align: center;
	overflow: hidden;
}

.zfh-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%);
	z-index: 1;
}

.zfh-page-hero--about {
	background-image: url('../images/hero-home.jpg');
}

.zfh-page-hero--contact {
	background-image: url('../images/hero-home.jpg');
}

.zfh-page-hero--videos {
	background-image: url('../images/hero-home.jpg');
}

.zfh-page-hero--privacy {
	background-image: url('../images/hero-home.jpg');
}

.zfh-page-hero__content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.zfh-page-hero__eyebrow {
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #93c5fd;
	margin-bottom: var(--zfh-space-3);
}

.zfh-page-hero__title {
	font-family: var(--zfh-font-heading);
	font-size: clamp(var(--zfh-text-4xl), 5vw, var(--zfh-text-6xl));
	font-weight: 900;
	color: var(--zfh-white);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: var(--zfh-space-5);
}

.zfh-page-hero__subtitle {
	font-size: var(--zfh-text-lg);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: var(--zfh-space-8);
}

.zfh-text-accent {
	color: var(--zfh-accent);
	background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.zfh-page-hero__scroll {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.zfh-page-hero__scroll-line {
	width: 2px;
	height: 60px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ============================================================
   ABOUT PAGE — STORY
   ============================================================ */
.zfh-story {
	padding-block: var(--zfh-space-24);
}

.zfh-story__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: var(--zfh-space-16);
	align-items: center;
}

.zfh-story__image-wrap {
	position: relative;
}

.zfh-story__image {
	border-radius: var(--zfh-radius-2xl);
	box-shadow: var(--zfh-shadow-2xl);
	object-fit: cover;
	width: 100%;
}

.zfh-story__image-badge {
	position: absolute;
	bottom: -30px;
	right: -30px;
	background: var(--zfh-white);
	padding: var(--zfh-space-6);
	border-radius: var(--zfh-radius-xl);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	text-align: center;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--zfh-gray-100);
}

.zfh-story__badge-number {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-4xl);
	font-weight: 800;
	color: var(--zfh-primary);
	line-height: 1;
}

.zfh-story__badge-text {
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	color: var(--zfh-gray-500);
	text-transform: uppercase;
	margin-top: var(--zfh-space-1);
}

.zfh-story__lead {
	font-size: var(--zfh-text-lg);
	font-weight: 500;
	color: var(--zfh-gray-800);
	margin-bottom: var(--zfh-space-4);
}

.zfh-story__signature {
	margin-top: var(--zfh-space-6);
	padding-top: var(--zfh-space-6);
}

.zfh-story__signature-line {
	width: 60px;
	height: 3px;
	background: var(--zfh-primary);
	margin-bottom: var(--zfh-space-4);
}

.zfh-story__founder-name {
	display: block;
	font-weight: 700;
	color: var(--zfh-gray-900);
	font-size: var(--zfh-text-lg);
}

.zfh-story__founder-title {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-500);
}

/* ============================================================
   ABOUT PAGE — MISSION
   ============================================================ */
.zfh-mission {
	position: relative;
	padding-block: var(--zfh-space-24);
	color: var(--zfh-white);
}

.zfh-mission__bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/about-aerial.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: 0;
}

.zfh-mission__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%);
}

.zfh-mission .zfh-container {
	position: relative;
	z-index: 1;
}

.zfh-values__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--zfh-space-6);
}

.zfh-value-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--zfh-radius-xl);
	padding: var(--zfh-space-8);
	transition: transform var(--zfh-transition-normal), background var(--zfh-transition-normal);
}

.zfh-value-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.12);
}

.zfh-value-card__icon {
	color: var(--zfh-accent);
	margin-bottom: var(--zfh-space-4);
}

.zfh-value-card__title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-xl);
	font-weight: 700;
	color: var(--zfh-white);
	margin-bottom: var(--zfh-space-3);
}

.zfh-value-card__desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--zfh-text-sm);
	line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE — TEAM
   ============================================================ */
.zfh-team {
	padding-block: var(--zfh-space-24);
	background: var(--zfh-gray-50);
}

.zfh-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--zfh-space-8);
}

.zfh-team-card {
	background: var(--zfh-white);
	border-radius: var(--zfh-radius-2xl);
	padding: var(--zfh-space-8);
	text-align: center;
	box-shadow: var(--zfh-shadow-sm);
	transition: box-shadow var(--zfh-transition-normal), transform var(--zfh-transition-normal);
}

.zfh-team-card:hover {
	box-shadow: var(--zfh-shadow-xl);
	transform: translateY(-5px);
}

.zfh-team-card__avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin: 0 auto var(--zfh-space-5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--zfh-text-2xl);
	font-family: var(--zfh-font-heading);
	font-weight: 700;
	color: var(--zfh-white);
}

.zfh-team-card__avatar--blue {
	background: linear-gradient(135deg, var(--zfh-blue-400), var(--zfh-blue-600));
}

.zfh-team-card__avatar--green {
	background: linear-gradient(135deg, #10b981, #059669);
}

.zfh-team-card__avatar--purple {
	background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.zfh-team-card__avatar--orange {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

.zfh-team-card__name {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-xl);
	font-weight: 700;
	color: var(--zfh-gray-900);
}

.zfh-team-card__role {
	display: inline-block;
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	color: var(--zfh-primary);
	margin-bottom: var(--zfh-space-4);
}

.zfh-team-card__bio {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-600);
}

/* ============================================================
   ABOUT PAGE — ACHIEVEMENTS
   ============================================================ */
.zfh-achievements {
	padding-block: var(--zfh-space-20);
	background: var(--zfh-white);
}

.zfh-achievements__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--zfh-gray-200);
	border-radius: var(--zfh-radius-2xl);
	background: var(--zfh-white);
}

.zfh-achievement {
	padding: var(--zfh-space-8) var(--zfh-space-4);
	text-align: center;
	border-right: 1px solid var(--zfh-gray-200);
}

.zfh-achievement:last-child {
	border-right: none;
}

.zfh-achievement__num {
	font-family: var(--zfh-font-heading);
	font-size: clamp(var(--zfh-text-3xl), 4vw, var(--zfh-text-5xl));
	font-weight: 900;
	color: var(--zfh-navy);
	line-height: 1;
	margin-bottom: var(--zfh-space-2);
}

.zfh-achievement__num span {
	color: var(--zfh-primary);
}

.zfh-achievement__label {
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	color: var(--zfh-gray-500);
	text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE — FORM & INFO
   ============================================================ */
.zfh-contact-section {
	padding-block: var(--zfh-space-24);
	background: var(--zfh-gray-50);
}

.zfh-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: var(--zfh-space-16);
}

.zfh-contact-info__block {
	margin-bottom: var(--zfh-space-8);
}

.zfh-contact-info__title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-3xl);
	font-weight: 800;
	color: var(--zfh-gray-900);
	margin-bottom: var(--zfh-space-3);
}

.zfh-contact-info__items {
	display: flex;
	flex-direction: column;
	gap: var(--zfh-space-6);
	margin-bottom: var(--zfh-space-10);
	padding-bottom: var(--zfh-space-10);
	border-bottom: 1px solid var(--zfh-gray-200);
}

.zfh-contact-info__item {
	display: flex;
	gap: var(--zfh-space-4);
	align-items: flex-start;
}

.zfh-contact-info__icon {
	color: var(--zfh-primary);
	background: var(--zfh-blue-50);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.zfh-contact-info__label {
	display: block;
	font-size: var(--zfh-text-xs);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--zfh-gray-500);
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

.zfh-contact-info__value {
	font-size: var(--zfh-text-base);
	font-weight: 600;
	color: var(--zfh-gray-900);
	text-decoration: none;
}

a.zfh-contact-info__value:hover {
	color: var(--zfh-primary);
}

.zfh-contact-promises {
	display: flex;
	flex-direction: column;
	gap: var(--zfh-space-3);
}

.zfh-contact-promise {
	display: flex;
	align-items: center;
	gap: var(--zfh-space-3);
	color: var(--zfh-gray-600);
	font-weight: 500;
}

.zfh-contact-promise svg {
	color: var(--zfh-accent);
}

.zfh-contact-form-card {
	background: var(--zfh-white);
	border-radius: var(--zfh-radius-2xl);
	padding: var(--zfh-space-10);
	box-shadow: var(--zfh-shadow-2xl);
}

.zfh-contact-form-card__header {
	margin-bottom: var(--zfh-space-8);
	text-align: center;
}

.zfh-contact-form-card__title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-2xl);
	font-weight: 700;
	color: var(--zfh-gray-900);
}

.zfh-cf-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--zfh-space-4);
}

.zfh-cf-field {
	margin-bottom: var(--zfh-space-4);
}

.zfh-cf-label {
	display: block;
	font-size: var(--zfh-text-sm);
	font-weight: 600;
	color: var(--zfh-gray-700);
	margin-bottom: var(--zfh-space-2);
}

.zfh-cf-label span {
	color: #ef4444;
}

#contact-form-main input.zfh-cf-input,
#contact-form-main select.zfh-cf-select {
	border-radius: var(--zfh-radius-full);
}

#contact-form-main textarea.zfh-cf-textarea {
	border-radius: var(--zfh-radius-lg);
	resize: vertical;
	min-height: 100px;
}

#contact-form-main input.zfh-cf-input,
#contact-form-main select.zfh-cf-select,
#contact-form-main textarea.zfh-cf-textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid var(--zfh-gray-200);
	font-size: var(--zfh-text-base);
	font-family: inherit;
	background: var(--zfh-gray-50);
	transition: all var(--zfh-transition-fast);
	-webkit-appearance: none;
	appearance: none;
}

#contact-form-main input.zfh-cf-input:focus,
#contact-form-main select.zfh-cf-select:focus,
#contact-form-main textarea.zfh-cf-textarea:focus {
	outline: none;
	border-color: var(--zfh-primary);
	background: var(--zfh-white);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.zfh-cf-disclaimer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--zfh-space-2);
	font-size: var(--zfh-text-xs);
	color: var(--zfh-gray-500);
	margin-top: var(--zfh-space-4);
}

.zfh-form-error,
.zfh-form-success {
	padding: var(--zfh-space-4);
	border-radius: var(--zfh-radius-md);
	margin-bottom: var(--zfh-space-6);
	display: flex;
	align-items: center;
	gap: var(--zfh-space-3);
	font-weight: 500;
}

.zfh-form-error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #f87171;
}

.zfh-form-success {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #4ade80;
	flex-direction: column;
	text-align: center;
	padding: var(--zfh-space-10);
}

.zfh-form-success__icon {
	color: var(--zfh-accent);
	margin-bottom: var(--zfh-space-2);
}

.zfh-form-success__title {
	font-size: var(--zfh-text-2xl);
	font-weight: 700;
	color: var(--zfh-gray-900);
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.zfh-map-embed iframe {
	display: block;
	pointer-events: none;
}

/* ============================================================
   CONTACT FAQ
   ============================================================ */
.zfh-contact-faq {
	padding-block: var(--zfh-space-20);
	background: var(--zfh-white);
}

.zfh-contact-faq__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--zfh-space-8);
}

.zfh-cfaq__q {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-lg);
	font-weight: 700;
	color: var(--zfh-gray-900);
	margin-bottom: var(--zfh-space-2);
}

.zfh-cfaq__a {
	color: var(--zfh-gray-600);
}

/* ============================================================
   VIDEOS PAGE
   ============================================================ */
.zfh-video-library {
	padding-block: var(--zfh-space-16) var(--zfh-space-24);
	background: var(--zfh-gray-50);
	min-height: 500px;
}

.zfh-video-filter {
	display: flex;
	justify-content: center;
	gap: var(--zfh-space-4);
	margin-bottom: var(--zfh-space-12);
	flex-wrap: wrap;
}

.zfh-video-filter__btn {
	display: inline-flex;
	align-items: center;
	gap: var(--zfh-space-2);
	padding: 0.75rem 1.5rem;
	background: var(--zfh-white);
	border: 2px solid var(--zfh-gray-200);
	border-radius: var(--zfh-radius-full);
	font-weight: 600;
	color: var(--zfh-gray-600);
	transition: all var(--zfh-transition-fast);
}

.zfh-video-filter__btn:hover {
	border-color: var(--zfh-primary);
	color: var(--zfh-primary);
}

.zfh-video-filter__btn.active {
	background: var(--zfh-primary);
	border-color: var(--zfh-primary);
	color: var(--zfh-white);
}

.zfh-video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--zfh-space-8);
}

.zfh-video-card {
	background: var(--zfh-white);
	border-radius: var(--zfh-radius-xl);
	overflow: hidden;
	box-shadow: var(--zfh-shadow-md);
	transition: transform var(--zfh-transition-normal), box-shadow var(--zfh-transition-normal);
	display: flex;
	flex-direction: column;
}

.zfh-video-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--zfh-shadow-xl);
}

.zfh-video-card.hidden {
	display: none !important;
}

.zfh-video-card__embed-wrap {
	aspect-ratio: 16 / 9;
	background: var(--zfh-gray-200);
	position: relative;
}

.zfh-yt-facade {
	position: absolute;
	inset: 0;
	cursor: pointer;
	display: block;
	overflow: hidden;
}

.zfh-yt-facade__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--zfh-transition-slow);
}

.zfh-yt-facade:hover .zfh-yt-facade__thumb {
	transform: scale(1.05);
}

.zfh-yt-facade__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: background var(--zfh-transition-fast);
}

.zfh-yt-facade:hover .zfh-yt-facade__overlay {
	background: rgba(0, 0, 0, 0.4);
}

.zfh-yt-facade__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: var(--zfh-primary);
	color: var(--zfh-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--zfh-transition-fast), background var(--zfh-transition-fast);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.zfh-yt-facade:hover .zfh-yt-facade__play {
	transform: translate(-50%, -50%) scale(1.1);
	background: var(--zfh-primary-dark);
}

.zfh-yt-facade__duration {
	position: absolute;
	bottom: var(--zfh-space-3);
	right: var(--zfh-space-3);
	background: rgba(0, 0, 0, 0.8);
	color: var(--zfh-white);
	font-size: var(--zfh-text-xs);
	font-weight: 600;
	padding: 0.2rem 0.5rem;
	border-radius: var(--zfh-radius-sm);
}

.zfh-video-card__body {
	padding: var(--zfh-space-6);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zfh-video-card__badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.2rem 0.6rem;
	border-radius: var(--zfh-radius-full);
	margin-bottom: var(--zfh-space-3);
	align-self: flex-start;
}

.zfh-badge--testimonial {
	background: #fef3c7;
	color: #b45309;
}

.zfh-badge--explainer {
	background: #e0e7ff;
	color: #4338ca;
}

.zfh-video-card__title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-lg);
	font-weight: 700;
	color: var(--zfh-gray-900);
	margin-bottom: var(--zfh-space-2);
	line-height: 1.4;
}

.zfh-video-card__desc {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-600);
	margin-top: auto;
}

.zfh-videos-note {
	text-align: center;
	padding: var(--zfh-space-12);
	color: var(--zfh-gray-500);
	font-size: var(--zfh-text-lg);
}

.zfh-video-cta {
	padding-block: var(--zfh-space-20);
	background: var(--zfh-white);
	text-align: center;
}

.zfh-video-cta__inner {
	max-width: 600px;
	margin: 0 auto;
}

.zfh-video-cta__icon {
	color: var(--zfh-primary);
	margin-bottom: var(--zfh-space-4);
	display: flex;
	justify-content: center;
}

.zfh-video-cta__title {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-3xl);
	font-weight: 800;
	color: var(--zfh-gray-900);
	margin-bottom: var(--zfh-space-3);
}

.zfh-video-cta__actions {
	display: flex;
	justify-content: center;
	gap: var(--zfh-space-4);
	margin-top: var(--zfh-space-6);
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
	.zfh-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.zfh-hero__form-card {
		max-width: 540px;
		margin-inline: auto;
	}

	.zfh-hero__cta-group,
	.zfh-hero__badges {
		justify-content: center;
	}

	.zfh-hero__subtitle {
		margin-inline: auto;
	}

	.zfh-process__grid {
		flex-direction: column;
		align-items: center;
	}

	.zfh-process__connector {
		display: none;
	}

	.zfh-process__step {
		max-width: 100%;
		width: 100%;
		flex-direction: column;
		text-align: center;
		gap: var(--zfh-space-2);
	}

	.zfh-process__step-number {
		display: none;
	}

	.zfh-process__icon {
		flex-shrink: 0;
	}

	.zfh-final-cta__inner {
		flex-direction: column;
		text-align: center;
	}

	.zfh-final-cta__actions {
		justify-content: center;
	}

	.zfh-final-cta__graphic {
		display: none;
	}

	.zfh-footer-inner {
		grid-template-columns: 1fr;
	}

	/* Inner Pages adjustments */
	.zfh-story__grid {
		grid-template-columns: 1fr;
	}

	.zfh-story__image-badge {
		right: 20px;
		bottom: -20px;
	}

	.zfh-achievements__grid {
		grid-template-columns: 1fr 1fr;
	}

	.zfh-achievements__grid .zfh-achievement:nth-child(2) {
		border-right: none;
	}

	.zfh-achievements__grid .zfh-achievement:nth-child(1),
	.zfh-achievements__grid .zfh-achievement:nth-child(2) {
		border-bottom: 1px solid var(--zfh-gray-200);
	}

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

	.zfh-contact-info__items {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--zfh-space-6);
	}
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ============================================================ */
@media (max-width: 600px) {
	:root {
		--zfh-header-height: 68px;
	}

	.zfh-header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0;
		gap: 20px;
	}

	.site-branding {
		order: 2;
		margin-inline: auto;
	}

	.site-branding .custom-logo {
		max-width: 120px;
	}

	#site-navigation.main-navigation {
		display: flex !important;
		align-items: center;
		order: 1;
		margin: 0;
	}

	.zfh-header-cta {
		order: 3;
		margin: 0;
	}

	#site-navigation.main-navigation ul {
		position: absolute;
		top: var(--zfh-header-height);
		left: 0;
		right: 0;
		background: var(--zfh-white);
		border-bottom: 1px solid var(--zfh-gray-200);
		padding: var(--zfh-space-4) var(--zfh-space-5);
		display: none;
		box-shadow: var(--zfh-shadow-lg);
		flex-direction: column;
		z-index: 100;
	}

	#site-navigation.main-navigation.toggled ul {
		display: flex !important;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: stretch;
		gap: var(--zfh-space-1);
	}

	.main-navigation ul li a {
		padding: 0.75rem 1rem;
	}

	#zfh-menu-toggle {
		display: flex !important;
	}

	.zfh-header-phone {
		display: none;
	}

	.zfh-quick-form__row {
		grid-template-columns: 1fr;
	}

	.zfh-hero__form-card {
		padding: var(--zfh-space-6);
	}

	.zfh-trust-bar__divider {
		display: none;
	}

	.zfh-trust-bar__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--zfh-space-6);
	}

	.zfh-trust-bar__stat {
		justify-content: center;
	}

	.zfh-trust-bar__label {
		max-width: 100%;
	}

	.zfh-comparison__table-wrap {
		border-radius: var(--zfh-radius-lg);
	}

	.zfh-footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	/* Inner Pages adjustments */
	.zfh-achievements__grid {
		grid-template-columns: 1fr;
	}

	.zfh-achievements__grid .zfh-achievement {
		border-right: none;
		border-bottom: 1px solid var(--zfh-gray-200);
	}

	.zfh-contact-info__items {
		grid-template-columns: 1fr;
	}

	.zfh-cf-row {
		grid-template-columns: 1fr;
	}

	.zfh-contact-faq__grid {
		grid-template-columns: 1fr;
	}

	.zfh-video-cta__actions {
		flex-direction: column;
	}
}

/* ============================================================
   UTILITY — SKIP LINK
   ============================================================ */
.skip-link {
	position: absolute;
	top: -9999px;
	left: var(--zfh-space-4);
	background: var(--zfh-primary);
	color: var(--zfh-white);
	padding: 0.5rem 1rem;
	border-radius: var(--zfh-radius-sm);
	font-weight: 600;
	z-index: 9999;
	text-decoration: none;
}

.skip-link:focus {
	top: var(--zfh-space-4);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#zfh-back-to-top {
	position: fixed;
	bottom: var(--zfh-space-8);
	right: var(--zfh-space-4);
	width: clamp(40px, 10vw, 48px);
	height: clamp(40px, 10vw, 48px);
	background: var(--zfh-accent);
	color: var(--zfh-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--zfh-shadow-lg);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--zfh-transition-normal);
}

@media (min-width: 768px) {
	#zfh-back-to-top {
		right: var(--zfh-space-8);
	}
}

#zfh-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#zfh-back-to-top:hover,
#zfh-back-to-top:focus {
	background: var(--zfh-primary);
	transform: translateY(-4px);
}

/* ============================================================
   VIDEO LIGHTBOX & MODALS
   ============================================================ */
.zfh-video-card__title-btn {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	color: inherit;
	text-align: left;
	cursor: pointer;
	transition: color var(--zfh-transition-fast);
}

.zfh-video-card__title-btn:hover,
.zfh-video-card__title-btn:focus {
	color: var(--zfh-primary);
	outline: none;
}

.zfh-video-card__title-btn:focus-visible {
	outline: 2px solid var(--zfh-primary);
	outline-offset: 4px;
}

.zfh-yt-facade {
	cursor: pointer;
}

.zfh-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(15, 23, 42, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all var(--zfh-transition-normal);
	padding: var(--zfh-space-4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.zfh-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.zfh-lightbox__content {
	position: relative;
	width: 100%;
	max-width: 900px;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--zfh-radius-lg);
	overflow: hidden;
	box-shadow: var(--zfh-shadow-2xl);
	transform: scale(0.95);
	transition: transform var(--zfh-transition-normal);
}

.zfh-lightbox.is-open .zfh-lightbox__content {
	transform: scale(1);
}

.zfh-lightbox__close {
	position: absolute;
	top: var(--zfh-space-6);
	right: var(--zfh-space-6);
	color: var(--zfh-white);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	transition: background var(--zfh-transition-fast), transform var(--zfh-transition-fast);
	z-index: 2;
}

.zfh-lightbox__close:hover,
.zfh-lightbox__close:focus {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
	outline: none;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.zfh-map-section {
	padding-top: var(--zfh-space-20);
	background: var(--zfh-gray-50);
}

.zfh-map-embed {
	margin-top: var(--zfh-space-12);
}

@media (max-width: 768px) {
	.zfh-map-section {
		padding-top: var(--zfh-space-12);
	}

	.zfh-map-embed {
		margin-top: var(--zfh-space-8);
	}
}
/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.zfh-privacy-section {
	padding-block: var(--zfh-space-24);
	background: var(--zfh-gray-50);
}

.zfh-privacy-card {
	background: var(--zfh-white);
	padding: var(--zfh-space-12);
	border-radius: var(--zfh-radius-2xl);
	box-shadow: var(--zfh-shadow-lg);
	max-width: 900px;
	margin-inline: auto;
}

.zfh-privacy-last-updated {
	font-size: var(--zfh-text-sm);
	color: var(--zfh-gray-400);
	border-bottom: 2px solid var(--zfh-blue-50);
	padding-bottom: var(--zfh-space-4);
	margin-bottom: var(--zfh-space-8) !important;
}

/* Rich Text Styles */
.zfh-rich-text h2 {
	font-family: var(--zfh-font-heading);
	font-size: var(--zfh-text-2xl);
	font-weight: 800;
	color: var(--zfh-gray-900);
	margin-top: var(--zfh-space-10);
	margin-bottom: var(--zfh-space-4);
}

.zfh-rich-text p {
	margin-bottom: var(--zfh-space-5);
	line-height: 1.7;
	color: var(--zfh-gray-700);
}

.zfh-rich-text ul {
	margin-bottom: var(--zfh-space-6);
	padding-left: var(--zfh-space-6);
	list-style-type: disc;
}

.zfh-rich-text li {
	margin-bottom: var(--zfh-space-2);
	color: var(--zfh-gray-700);
}

.zfh-rich-text a {
	color: var(--zfh-primary);
	text-decoration: underline;
	font-weight: 600;
}

.zfh-rich-text a:hover {
	color: var(--zfh-primary-dark);
}

.zfh-rich-text strong {
	color: var(--zfh-gray-900);
}

@media (max-width: 768px) {
	.zfh-privacy-card {
		padding: var(--zfh-space-6);
	}
}
