/**
 * Landing Page (LP) Styles
 *
 * @package Aomo_Web
 * @since 1.0.0
 */

/* ==========================================================================
   LP Main Container
   ========================================================================== */

.site-main.lp-main {
	padding: 0;
}

/* ==========================================================================
   LP Hero Section
   ========================================================================== */

.lp-hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lp-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.lp-hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
}

.lp-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
}

.lp-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #fff;
	padding: 4rem 2rem;
	width: 100%;
}

.lp-hero-text {
	max-width: 900px;
	margin: 0 auto;
}

.lp-hero-subtitle {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 1rem;
	opacity: 0.9;
	letter-spacing: 0.05em;
}

.lp-hero-title {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #fff;
}

.lp-hero-description {
	font-size: 1.375rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	opacity: 0.95;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.lp-hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.btn-lp-primary {
	background-color: #fff;
	color: #667eea;
	border-color: #fff;
	font-size: 1.25rem;
	padding: 1.25rem 3rem;
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-lp-primary:hover {
	background-color: #f0f0f0;
	border-color: #f0f0f0;
	color: #667eea;
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.lp-trust-badges {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	font-size: 0.875rem;
	opacity: 0.9;
}

.lp-trust-badges p {
	margin: 0;
}

/* ==========================================================================
   LP Benefits Section
   ========================================================================== */

.lp-benefits-section {
	padding: 5rem 0;
	background-color: #fff;
}

.lp-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.lp-section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #333;
}

.lp-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.lp-benefit-card {
	background-color: #f8f9fa;
	padding: 2.5rem 2rem;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #e9ecef;
}

.lp-benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.lp-benefit-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	line-height: 1;
}

.lp-benefit-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.lp-benefit-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

/* ==========================================================================
   LP Testimonials Section
   ========================================================================== */

.lp-testimonials-section {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

/* ==========================================================================
   LP Final CTA Section
   ========================================================================== */

.lp-final-cta-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	text-align: center;
}

.lp-final-cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.lp-final-cta-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #fff;
}

.lp-final-cta-description {
	font-size: 1.375rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	opacity: 0.95;
}

.lp-final-cta-button {
	display: flex;
	justify-content: center;
}

.lp-final-cta-section .btn-lp-primary {
	background-color: #fff;
	color: #667eea;
	border-color: #fff;
}

.lp-final-cta-section .btn-lp-primary:hover {
	background-color: #f0f0f0;
	border-color: #f0f0f0;
	color: #667eea;
}

/* ==========================================================================
   LP Content Section
   ========================================================================== */

.lp-content-section {
	padding: 4rem 0;
	background-color: #fff;
}

.lp-content {
	max-width: 800px;
	margin: 0 auto;
}

.lp-content h2,
.lp-content h3,
.lp-content h4 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.lp-content p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 992px) {
	.lp-benefits-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.lp-hero-title {
		font-size: 2.5rem;
	}

	.lp-hero-description {
		font-size: 1.125rem;
	}

	.lp-hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.btn-lp-primary {
		width: 100%;
		max-width: 300px;
		font-size: 1.125rem;
		padding: 1rem 2rem;
	}

	.lp-trust-badges {
		flex-direction: column;
		gap: 1rem;
	}

	.lp-section-title {
		font-size: 2rem;
	}

	.lp-benefits-section,
	.lp-testimonials-section {
		padding: 3rem 0;
	}

	.lp-benefits-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.lp-benefit-card {
		padding: 2rem 1.5rem;
	}

	.lp-final-cta-section {
		padding: 4rem 0;
	}

	.lp-final-cta-title {
		font-size: 2rem;
	}

	.lp-final-cta-description {
		font-size: 1.125rem;
	}

	.lp-content-section {
		padding: 3rem 0;
	}
}

@media (max-width: 480px) {
	.lp-hero-title {
		font-size: 2rem;
	}

	.lp-hero-description {
		font-size: 1rem;
	}

	.lp-hero-content {
		padding: 3rem 1.5rem;
	}

	.lp-section-title {
		font-size: 1.75rem;
	}

	.lp-final-cta-title {
		font-size: 1.75rem;
	}
}
