
.lp-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 360px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.landing-page #main {
	overflow-x: clip;
}
.lp-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}
.lp-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.58) 0%,
		rgba(0,0,0,0.42) 50%,
		rgba(0,0,0,0.68) 100%
	);
	z-index: 1;
}
.lp-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 80px 16px 72px;
	width: 100%;
}
.lp-hero-content h1 {
	font-size: clamp(2.2rem, 6vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	text-shadow: 0 2px 16px rgba(0,0,0,0.35);
	margin-bottom: 16px;
}
.lp-hero-content .hero-sub {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: rgba(255,255,255,0.88);
	max-width: 560px;
	margin: 0 auto 32px;
	text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.lp-hero-content .btn-hero-primary {
	background: var(--a);
	color: #fff;
	border: none;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 14px 36px;
	border-radius: 8px;
	transition: background 0.2s, box-shadow 0.2s;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}
.lp-hero-content .btn-hero-primary:hover {
	background: var(--btn-hover);
	box-shadow: 0 6px 24px rgba(247,147,25,0.45);
	color: #fff;
}
.lp-hero-content .btn-hero-outline {
	background: rgba(255,255,255,0.12);
	color: #fff;
	border: 2px solid rgba(255,255,255,0.7);
	font-weight: 600;
	font-size: 1.05rem;
	padding: 12px 32px;
	border-radius: 8px;
	transition: background 0.2s, border-color 0.2s;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	backdrop-filter: blur(4px);
}
.lp-hero-content .btn-hero-outline:hover {
	background: rgba(255,255,255,0.22);
	border-color: #fff;
	color: #fff;
}
.lp-hero-trust-note {
	margin-top: 16px;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
@media (max-width: 991px) {
	.lp-hero-content { padding: 56px 16px 52px; }
}
@media (max-width: 575px) {
	.lp-hero-content { padding: 48px 16px 44px; }
}

.lp-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff3e0;
	color: var(--a);
	border: 1px solid #ffd9a0;
	border-radius: 50px;
	padding: 4px 14px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 18px;
}
/* Trust bar */
.lp-trust-bar {
	background: #fff;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	padding: 20px 0;
}
.lp-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	color: #444;
	font-size: 0.93rem;
}
.lp-trust-item svg {
	color: var(--a);
	flex-shrink: 0;
}
/* Steps */
.lp-steps {
	background: #f9fafb;
	padding: 72px 0;
}
.lp-step-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	height: 100%;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	position: relative;
}
.lp-step-card:hover {
	box-shadow: 0 8px 32px rgba(247,147,25,0.14);
	transform: translateY(-3px);
}
.lp-step-num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--a);
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	flex-shrink: 0;
}
.lp-step-card h5 {
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 8px;
	color: #1a1a1a;
}
.lp-step-card p {
	color: #666;
	font-size: 0.93rem;
	margin: 0;
}
/* Features */
.lp-features {
	padding: 72px 0;
	background: #fff;
}
.lp-feature-item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 32px;
}
.lp-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #fff8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--a);
}
.lp-feature-item h6 {
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 4px;
}
.lp-feature-item p {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
}
.lp-problem-box {
	background: #fff8f0;
	border-left: 4px solid var(--a);
	border-radius: 0 12px 12px 0;
	padding: 28px 28px;
}
/* Section headings */
.lp-section-label {
	color: var(--a);
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}
.lp-section-title {
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #1a1a1a;
	margin-bottom: 12px;
}
.lp-section-subtitle {
	color: #666;
	font-size: 1rem;
	max-width: 560px;
	margin: 0 auto;
}
/* Pricing */
.lp-pricing {
	background: #f9fafb;
	padding: 72px 0;
}
/* FAQ */
.lp-faq {
	background: #fff;
	padding: 72px 0;
}
.lp-faq .accordions .accordion {
	text-align: left;
	font-size: 1rem;
}
/* CTA banner */
.lp-cta-banner {
	background: linear-gradient(135deg, var(--a) 0%, #ffa73b 100%);
	padding: 64px 0;
	color: #fff;
}
.lp-cta-banner h2 {
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 12px;
}
.lp-cta-banner p {
	opacity: 0.9;
	font-size: 1.05rem;
	max-width: 500px;
	margin: 0 auto 28px;
}
.btn-cta-white {
	background: #fff;
	color: var(--a);
	font-weight: 700;
	padding: 14px 36px;
	border-radius: 8px;
	border: none;
	font-size: 1.05rem;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
}
.btn-cta-white:hover {
	background: #fff3e0;
	color: var(--a-hover);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
/* Stats */
.lp-stat {
	text-align: center;
}
.lp-stat .stat-num {
	font-weight: 800;
	font-size: 2.2rem;
	color: var(--a);
	line-height: 1;
}
.lp-stat .stat-label {
	color: #555;
	font-size: 0.88rem;
	margin-top: 4px;
}
/* Contact */
.lp-contact {
	background: #f9fafb;
	padding: 72px 0;
}
@media (max-width: 767.98px) {
	.lp-faq .container,
	.lp-contact .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lp-faq .accordions .accordion,
	.lp-faq .accordions .panel {
		padding-left: 14px;
		padding-right: 14px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.lp-step-card { transition: none; }
	.btn-cta-white { transition: none; }
}