.home-custom-style {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: #0f172a;
}

.home-custom-style .hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	z-index: 1;
}

.home-custom-style .hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.78) 0%,
		rgba(0, 0, 0, 0.62) 45%,
		rgba(0, 0, 0, 0.32) 100%
	);
}

.home-custom-style .hero-container {
	position: relative;
	z-index: 3;
}

.home-custom-style .hero-content {
	max-width: 720px;
	color: #ffffff;
}

.home-custom-style .hero-badge {
	display: inline-block;
	margin-bottom: 18px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	background: rgba(255, 255, 255, 0.08);
	color: #e2e8f0;
}

.home-custom-style h1 {
	margin-bottom: 18px;
	font-size: 56px;
	line-height: 1.1;
	font-weight: 800;
	color: #ffffff;
}

.home-custom-style .hero-lead {
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.home-custom-style .hero-typed-wrap {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
}

.home-custom-style .hero-prefix {
	color: rgba(255, 255, 255, 0.75);
	margin-right: 8px;
}

.home-custom-style .typed {
	color: #60a5fa;
}

.home-custom-style .hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 30px;
}

.home-custom-style .hero-stat-item {
	min-width: 150px;
	padding: 18px 20px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.home-custom-style .hero-stat-item h3 {
	margin: 0 0 6px;
	font-size: 30px;
	font-weight: 800;
	color: #ffffff;
}

.home-custom-style .hero-stat-item p {
	margin: 0;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.78);
}

.home-custom-style .hero-actions {
	margin-bottom: 25px;
}

.home-custom-style .hero-actions .btn {
	padding: 12px 22px;
	font-weight: 600;
	border-radius: 10px;
}

.home-custom-style .hero-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.home-custom-style .hero-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	color: #e2e8f0;
	white-space: nowrap;
	backdrop-filter: blur(4px);
}

.home-custom-style .social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-right: 10px;
	border-radius: 50%;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	transition: all 0.3s ease;
}

.home-custom-style .social-links a:hover {
	transform: translateY(-3px);
	background: #0d6efd;
	color: #ffffff;
}

.hero-benefits {
	list-style: none;
	padding: 0;
	margin: 18px 0;
}

.hero-benefits li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
}

.hero-benefits li i {
	color: #8b5cf6;
	font-size: 18px;
}

@media (max-width: 991.98px) {
	.home-custom-style {
		min-height: auto;
		padding: 120px 0 80px;
	}

	.home-custom-style .hero-overlay {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.78) 0%,
			rgba(0, 0, 0, 0.58) 100%
		);
	}

	.home-custom-style h1 {
		font-size: 42px;
	}

	.home-custom-style .hero-lead {
		font-size: 18px;
	}

	.home-custom-style .hero-typed-wrap {
		font-size: 20px;
	}

	.home-custom-style .hero-stat-item {
		min-width: calc(50% - 9px);
	}
}

@media (max-width: 575.98px) {
	.home-custom-style h1 {
		font-size: 34px;
	}

	.home-custom-style .hero-lead {
		font-size: 17px;
	}

	.home-custom-style .hero-typed-wrap {
		font-size: 18px;
	}

	.home-custom-style .hero-stat-item {
		min-width: 100%;
	}
}
