.home-page {
	background: #f8fafc !important;
	background-image: none !important;
}

.hero-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	text-align: center;
	padding: 0 2rem;
}

.hero-content {
	max-width: 800px;
	animation: fadeInUp 0.8s ease-out;
}

.hero-content h2 {
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--text-main) 0%, #6366f1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-content p {
	font-size: 1.25rem;
	color: var(--text-soft);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.panel-tag {
	display: inline-block;
	background: #e0e7ff;
	color: #4338ca;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-weight: bold;
	margin-bottom: 1rem;
}

.btn-get-started {
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	background-color: #6366f1;
	color: white;
	box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
	transition: all 0.2s ease;
}

.btn-get-started:hover {
	background-color: #4f46e5;
	transform: translateY(-2px);
	box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
	color: white;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
