/**
 * Features Page Styles
 *
 * @package Aomo_Web
 * @since 1.0.0
 */

.features-page {
	padding: 2rem 0;
}

.page-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 4rem 0;
	margin-bottom: 3rem;
}

.page-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #fff;
	text-align: center;
}

.page-excerpt {
	font-size: 1.25rem;
	line-height: 1.6;
	text-align: center;
	opacity: 0.95;
	max-width: 800px;
	margin: 0 auto;
}

.page-content {
	padding: 0 0 3rem;
}

.feature-details {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.feature-detail {
	padding: 2rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.feature-detail:last-child {
	border-bottom: none;
}

.feature-detail-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.feature-number {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
}

.feature-detail-title {
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
	color: #333;
}

.feature-detail-content {
	margin-left: 75px;
}

.feature-detail-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #666;
	margin-bottom: 1.5rem;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.feature-list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #0073aa;
	font-weight: 700;
	font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
	.page-title {
		font-size: 2rem;
	}

	.page-excerpt {
		font-size: 1.125rem;
	}

	.feature-detail-header {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.feature-detail-content {
		margin-left: 0;
	}

	.feature-list {
		grid-template-columns: 1fr;
	}
}
