/**
 * SEO Landing Engine Frontend Stylesheet
 * Sleek, premium, and zero-dependency style design system.
 */



:root {
	--sle-primary: #0A4A2E;
	--sle-primary-hover: #1A7A4E;
	--sle-success: #10b981;
	--sle-success-hover: #059669;
	--sle-dark: #0a1c13;
	--sle-text: #334155;
	--sle-light-bg: #FFFFF0;
	--sle-border: #FDE68A;
	--sle-accent: #F0C040;
	--sle-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--sle-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
	--sle-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.08);
}

/* Prevent horizontal scrollbar on full-bleed viewport breakout */
html, body {
	overflow-x: hidden !important;
}

/* Base Wrapper - Viewport breakout to bypass theme containers and force 100% full-width layout */
.sle-landing-wrapper {
	font-family: var(--sle-font);
	color: var(--sle-text);
	line-height: 1.6;
	background: #fff;
	width: 100vw !important;
	position: relative !important;
	left: 50% !important;
	right: 50% !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	box-sizing: border-box !important;
}

.sle-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

.sle-block {
	padding: 80px 0;
	border-bottom: 1px solid var(--sle-border);
}

/* Typography */
.sle-block h1, 
.sle-block h2, 
.sle-block h3 {
	color: var(--sle-dark);
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
}

.sle-block p {
	font-size: 16px;
	color: var(--sle-text);
	margin: 0 0 24px 0;
}

/* Buttons */
.sle-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.sle-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sle-btn-primary {
	background: var(--sle-primary);
	color: #fff !important;
}

.sle-btn-primary:hover {
	background: var(--sle-primary-hover);
}

.sle-btn-whatsapp {
	background: var(--sle-success);
	color: #fff !important;
	gap: 8px;
}

.sle-btn-whatsapp:hover {
	background: var(--sle-success-hover);
}

/* Hero Section */
.sle-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #fff;
	text-align: center;
	padding: 100px 0;
	border-bottom: none;
}

.sle-hero h1 {
	color: #fff;
	font-size: 48px;
	max-width: 800px;
	margin: 0 auto 20px auto;
}

.sle-hero p.subtitle {
	color: #94a3b8;
	font-size: 18px;
	max-width: 650px;
	margin: 0 auto 32px auto;
}

/* Intro Section */
.sle-intro {
	background: #fff;
	text-align: center;
}

.sle-intro h2 {
	font-size: 32px;
	margin-bottom: 20px;
}

.sle-intro p {
	font-size: 18px;
	max-width: 850px;
	margin: 0 auto;
	color: #475569;
}

/* FAQ Accordion Section */
.sle-faq {
	background: var(--sle-light-bg);
}

.sle-faq h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 48px;
}

.sle-faq-item {
	background: #fff;
	border: 1px solid var(--sle-border);
	border-radius: 8px;
	margin-bottom: 16px;
	box-shadow: var(--sle-shadow);
	overflow: hidden;
}

.sle-faq-trigger {
	font-size: 18px;
	font-weight: 700;
	color: var(--sle-dark);
	padding: 20px 24px;
	margin: 0;
	cursor: pointer;
	position: relative;
	user-select: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.2s;
}

.sle-faq-trigger:hover {
	background: #fafafa;
}

.sle-faq-trigger::after {
	content: '+';
	font-size: 24px;
	font-weight: 500;
	color: #64748b;
	transition: transform 0.25s ease;
}

.sle-faq-item.active .sle-faq-trigger::after {
	transform: rotate(45deg);
}

.sle-faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.sle-faq-item.active .sle-faq-content {
	max-height: 1000px;
	transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.sle-faq-content p {
	padding: 0 24px 20px 24px;
	margin: 0;
	color: var(--sle-text);
	font-size: 15px;
}

/* CTA Section */
.sle-cta {
	text-align: center;
	background: #fff;
}

.sle-cta h2 {
	font-size: 36px;
	margin-bottom: 16px;
}

.sle-cta p {
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto 32px auto;
	color: #475569;
}

.sle-cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Linking Grids */
.sle-related-locations,
.sle-related-services {
	background: #fff;
}

.sle-related-locations h3,
.sle-related-services h3 {
	font-size: 22px;
	margin-bottom: 24px;
	text-align: center;
}

.sle-links-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.sle-links-grid li {
	margin: 0;
}

.sle-links-grid a {
	display: block;
	background: var(--sle-light-bg);
	border: 1px solid var(--sle-border);
	border-radius: 6px;
	padding: 14px 18px;
	text-align: center;
	font-weight: 600;
	color: var(--sle-dark);
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 14px;
}

.sle-links-grid a:hover {
	background: #fff;
	border-color: var(--sle-primary);
	color: var(--sle-primary);
	transform: translateY(-1px);
	box-shadow: var(--sle-shadow);
}

/* Premium Layout Elements */
.sle-section-title {
	text-align: center;
	font-size: 32px;
	margin-bottom: 48px;
}

.sle-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	margin-bottom: 24px;
}

.sle-feature-card {
	background: #fff;
	border: 1px solid var(--sle-border);
	border-radius: 12px;
	padding: 32px;
	box-shadow: var(--sle-shadow);
	transition: all 0.25s ease;
	text-align: center;
}

.sle-feature-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--sle-shadow-lg);
	border-color: var(--sle-primary);
}

.sle-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #f0f9ff;
	color: var(--sle-primary);
	font-size: 24px;
	border-radius: 50%;
	margin-bottom: 20px;
}

/* Pricing Card CSS */
.sle-pricing-grid {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

.sle-pricing-card {
	background: #fff;
	border: 2px solid var(--sle-primary);
	border-radius: 16px;
	padding: 48px 32px;
	max-width: 380px;
	width: 100%;
	box-shadow: var(--sle-shadow-lg);
	text-align: center;
	position: relative;
	transition: transform 0.25s ease;
}

.sle-pricing-card:hover {
	transform: scale(1.01);
}

.sle-price {
	font-size: 48px;
	font-weight: 800;
	color: var(--sle-dark);
	margin: 20px 0;
	line-height: 1;
}

.sle-price span {
	font-size: 16px;
	font-weight: 500;
	color: var(--sle-text);
}

/* Flex Row and Column Alignment Layouts */
.sle-flex-row {
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
}

.sle-content-col {
	flex: 1 1 320px;
}

.sle-image-container {
	flex: 1 1 320px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sle-image-container.sle-align-left {
	order: -1;
}

.sle-image-container.sle-align-right {
	order: 1;
}

.sle-image-container.sle-align-center {
	width: 100%;
	flex: 0 0 100%;
	margin-bottom: 24px;
}

.sle-section-img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: var(--sle-shadow-lg);
	border: 1px solid var(--sle-border);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.sle-block {
		padding: 60px 0;
	}
	
	.sle-hero h1 {
		font-size: 32px;
	}
	
	.sle-hero p.subtitle {
		font-size: 16px;
	}

	.sle-pricing-card {
		padding: 32px 20px;
	}
}

/* Layout width constraints wrappers */
.sle-section-wrap.sle-width-full { width: 100% !important; max-width: 100% !important; }
.sle-section-wrap.sle-width-wide { width: 100% !important; max-width: 1400px !important; margin-left: auto !important; margin-right: auto !important; }
.sle-section-wrap.sle-width-narrow { width: 100% !important; max-width: 800px !important; margin-left: auto !important; margin-right: auto !important; }
.sle-section-wrap.sle-width-custom { width: 100% !important; max-width: 1100px !important; margin-left: auto !important; margin-right: auto !important; }
