.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 88px;
	background: var(--bg-dark);
	overflow: hidden;
}

.hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: 0;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(63, 62, 62, 0.30), rgba(63, 62, 62, 0.78)),
		linear-gradient(90deg, rgba(63, 62, 62, 0.60) 0%, rgba(63, 62, 62, 0.28) 42%, rgba(63, 62, 62, 0.48) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 860px;
	padding: 110px 0 100px;
	color: #ffffff;
	text-transform: uppercase;
}

.hero__kicker {
	display: inline-block;
	margin-bottom: 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--primary);
}

.hero__title {
	margin: 0 0 20px;
	font-size: clamp(38px, 6vw, 74px);
	line-height: 1.02;
	font-weight: 800;
	max-width: 900px;
}

.hero__text {
	max-width: 680px;
	margin: 0 0 34px;
	font-size: 18px;
	line-height: 1.65;
	text-transform: none;
	color: rgba(255, 255, 255, 0.92);
}

.hero__button {
	min-width: 220px;
}

@media (max-width: 768px) {
	.hero {
		min-height: 88vh;
		padding-top: 84px;
	}

	.hero__content {
		padding: 84px 0 72px;
	}

	.hero__title {
		font-size: clamp(34px, 10vw, 52px);
		line-height: 1.05;
	}

	.hero__text {
		font-size: 16px;
		line-height: 1.6;
	}
}