/* Hero section */
.hero {
	padding: 32px 0 16px 0;
	background-color: var(--background);
}

@media (min-width: 768px) {
	.hero { padding: 40px 0 20px 0; }
}

@media (min-width: 1024px) {
	.hero { padding: 48px 0 24px 0; }
}

.hero .text-center .btn {
	margin: 0;
	animation: slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero .text-center .btn:nth-child(1) { animation-delay: 0.4s; }
.hero .text-center .btn:nth-child(2) { animation-delay: 0.6s; }

.hero-features {
	margin-bottom: 48px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 20px;
	background: white;
	border-radius: var(--border-radius);
	border: 1px solid var(--border-color);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
	max-width: 600px;
	width: 100%;
	position: relative;
}

.feature-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-color);
}

.feature-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 60%;
	background: var(--gradient-primary);
	border-radius: 2px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-item:hover::before { opacity: 1; }

.feature-content { flex: 1; }

.feature-text {
	font-size: 1.1rem;
	line-height: 1.5;
	color: var(--text-dark);
	font-weight: 500;
	margin: 0;
}

.feature-emoji {
	font-size: 3rem;
	flex-shrink: 0;
	opacity: 0.9;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
	transition: transform 0.3s ease;
}

.feature-item:hover .feature-emoji { transform: scale(1.1); }

@media (max-width: 768px) {
	.feature-item {
		flex-direction: column;
		text-align: center;
		gap: 16px;
		padding: 20px;
	}

	.feature-item::before {
		width: 60%;
		height: 4px;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
	}
}

.hero-visual { position: relative; margin: 16px 0; }

.hero-image {
	width: 100%;
	max-width: 600px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.hero-note {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: white;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
}

.note-icon { font-size: 1.25rem; }

.note-text strong {
	display: block;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 0.9rem;
	margin-bottom: 2px;
}

.note-text span {
	color: var(--text-secondary);
	font-size: 0.8rem;
}

.hero-benefits li {
	opacity: 0;
	animation: slide-up 0.8s ease forwards;
}
