/* ─── Hero Component ─── */
.maxxefy-hero {
	position: relative;
	padding: var(--maxxefy-spacing-3xl) 0;
	text-align: center;
	overflow: hidden;
}
.maxxefy-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--maxxefy-primary) 0%, var(--maxxefy-secondary) 100%);
	opacity: 0.9;
	z-index: 0;
}
.maxxefy-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 var(--maxxefy-spacing-lg);
}
.maxxefy-hero h1 {
	color: #fff;
	font-size: var(--maxxefy-font-4xl);
	margin-bottom: var(--maxxefy-spacing-md);
}
.maxxefy-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--maxxefy-font-lg);
	margin-bottom: var(--maxxefy-spacing-xl);
}
