#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	padding: 120px 20px 80px;
	overflow: hidden;
}

#hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.770);
	z-index: 0;
}

.hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

#hero .hero-content {
	max-width: 900px;
	position: relative;
	z-index: 1;
}

#hero h1 {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.1;
}

#hero h2 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 20px;
	line-height: 1.3;
}

.hero-cards {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-top: 40px;
	flex-wrap: wrap;
}

.hero-card {
	background: #fff;
	padding: 24px 36px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	min-width: 240px;
}

.hero-card h3 {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
}

.hero-card h4 {
	color: var(--color-text);
	font-size: 1rem;
	font-weight: 500;
	margin-top: 4px;
}

.hero-card p {
	color: var(--color-muted);
	font-size: 0.9rem;
	margin-top: 4px;
}