.slt-hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 900px;
	padding: 60px 24px;
	box-sizing: border-box;
	background: #0f172a; /* fallback if no background selected */
	overflow: hidden;
}
.slt-hero__inner {
	max-width: 1140px;
	margin: 0 auto;
	text-align: center;
}
.slt-hero__title {
	margin: 0 0 12px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.slt-hero__subtitle {
	margin: 0 auto 24px;
	max-width: 760px;
	opacity: 0.9;
}

/* Buttons Container */
.slt-hero__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.slt-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	border-radius: 4px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 16px;
	border: 2px solid transparent;
	min-width: 160px;
}

.slt-hero__btn--primary {
	background: #ffffff;
	color: #000000;
	border-color: #ffffff;
}

.slt-hero__btn--primary:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
}

.slt-hero__btn--secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.slt-hero__btn--secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* Stats Section */
.slt-hero__stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.slt-hero__stat {
	text-align: center;
	min-width: 100px;
}
.slt-hero__stat-number {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
	color: #ffffff;
}
.slt-hero__stat-label {
	font-size: 14px;
	font-weight: 400;
	opacity: 0.8;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Responsive Heights */
@media (max-width: 1024px) {
	.slt-hero {
		min-height: 700px;
	}
}

@media (max-width: 768px) {
	.slt-hero {
		min-height: 600px;
		padding: 40px 20px;
	}
	.slt-hero__stats {
		gap: 40px;
	}
	.slt-hero__stat-number {
		font-size: 36px;
	}
	.slt-hero__stat-label {
		font-size: 12px;
	}
	.slt-hero__buttons {
		flex-direction: column;
		gap: 12px;
	}
	.slt-hero__btn {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.slt-hero {
		min-height: 500px;
		padding: 30px 16px;
	}
}
