/* ============================================
   Hero V2 — New Design
   ============================================ */

.hero-v2-wrap {
	padding: 170px 0 120px;
	display: flex;
	align-items: flex-start;
	box-sizing: border-box;
}
.hero-v2-wrap .container {
	z-index: 2;
}
.hero-v2 {
	max-width: 800px;
}

.hero-v2__title {
	font-size: 46px;
	line-height: 1.18;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 28px;
}

.hero-v2__accent {
	color: #EBA11E;
}

.hero-v2__sub {
	font-size: 18px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 28px;
	font-weight: 300;
}

.hero-v2__sub strong {
	color: #EBA11E;
	font-weight: 600;
}

.hero-v2__benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px 20px;
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
}

.hero-v2__benefits li {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	padding-left: 24px;
	position: relative;
	line-height: 1.4;
	font-weight: 400;
}

.hero-v2__benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z' fill='%23EBA11E'/%3E%3C/svg%3E") no-repeat center/contain;
}

.hero-v2__btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.hero-v2__btn {
	padding: 17px 32px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .3s ease;
	text-decoration: none;
	border: 2px solid transparent;
	display: inline-block;
	line-height: 1;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.hero-v2__btn--primary {
	background: #EBA11E;
	color: #ffffff;
	border-color: #EBA11E;
}

.hero-v2__btn--primary:hover {
	background: #d39527;
	border-color: #d39527;
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(235, 161, 30, 0.45);
	color: #ffffff;
	opacity: 1;
}

.hero-v2__btn--secondary {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.5);
}

.hero-v2__btn--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.85);
	transform: translateY(-2px);
	color: #ffffff;
	opacity: 1;
}

/* ---- Tablet / Mobile ---- */

@media all and (max-width: 1024px) {
	.hero-v2-wrap {
		padding: 60px 0 60px;
		margin: 0;
		min-height: auto;
		align-items: flex-start;
	}

	.hero-v2 {
		max-width: 100%;
	}

	.hero-v2__title {
		font-size: 23px;
		line-height: 1.25;
		margin: 0 0 24px;
	}

	.hero-v2__sub {
		font-size: 13px;
		line-height: 1.55;
		margin: 0 0 24px;
	}

	.hero-v2__benefits {
		grid-template-columns: 1fr;
		gap: 9px;
		margin: 0 0 30px;
	}

	.hero-v2__benefits li {
		font-size: 13px;
	}

	.hero-v2__btns {
		flex-direction: column;
		gap: 10px;
	}

	.hero-v2__btn {
		padding: 15px 24px;
		font-size: 13px;
		text-align: center;
		width: 100%;
	}
}
