.tubuy-home-hero {
	padding: 80px 0;
	background: linear-gradient(180deg, #07121d 0%, #0d1b2a 100%);
	overflow: hidden;
}

.tubuy-home-hero-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.tubuy-home-hero-content {
	flex: 1;
	max-width: 600px;
}

.tubuy-hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.tubuy-home-hero-content h1 {
	font-size: 64px;
	line-height: 1.1;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
}

.tubuy-home-hero-content p {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255,255,255,0.70);
	margin-bottom: 35px;
}

.tubuy-home-hero-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
}

.tubuy-primary-button,
.tubuy-secondary-button {
	height: 54px;
	padding: 0 28px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 600;
	transition: 0.3s ease;
}

.tubuy-primary-button {
	background: #2563eb;
	color: #ffffff;
}

.tubuy-primary-button:hover {
	transform: translateY(-2px);
}

.tubuy-secondary-button {
	background: rgba(255,255,255,0.08);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.08);
}

.tubuy-home-hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

.tubuy-home-hero-image img {
	width: 100%;
	max-width: 560px;
	border-radius: 30px;
}