/* Modern Landing Page CSS */
:root {
	--primary-color: #2563eb;
	--primary-dark: #1e40af;
	--secondary-color: #10b981;
	--accent-color: #f59e0b;
	--text-dark: #1f2937;
	--text-light: #6b7280;
	--bg-light: #f9fafb;
	--bg-white: #ffffff;
	--border-color: #e5e7eb;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
}

/* Header Navigation */
.landing-header {
	background: var(--bg-white);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-sm);
}

.landing-nav-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.landing-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
}

.landing-logo img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.landing-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.landing-nav a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.2s;
}

.landing-nav a:hover {
	color: var(--primary-color);
}

.phone-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-color) !important;
	font-weight: 600;
}

.phone-link .material-icons-round {
	font-size: 20px;
}

.btn-primary-landing {
	background: var(--primary-color) !important;
	color: white !important;
	padding: 0.625rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

.btn-primary-landing:hover {
	background: var(--primary-dark) !important;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.btn-secondary-landing {
	color: var(--text-dark) !important;
	padding: 0.625rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.2s;
	border: 1px solid var(--border-color);
}

.btn-secondary-landing:hover {
	border-color: var(--primary-color);
	color: var(--primary-color) !important;
}

/* Hero Section */
.landing-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 5rem 2rem;
	position: relative;
	overflow: hidden;
}

.landing-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.3;
}

.landing-hero-container {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.landing-hero-content h1 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.landing-hero-content .hero-highlight {
	color: #fbbf24;
}

.landing-hero-content p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	line-height: 1.8;
}

.hero-cta-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.btn-hero-primary {
	background: white;
	color: var(--primary-color);
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 1.125rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
	box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 1.125rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: white;
}

.hero-trust-badges {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.trust-badge .material-icons-round {
	color: #fbbf24;
}

.landing-hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-card {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: var(--shadow-xl);
	color: var(--text-dark);
}

.hero-card h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.hero-card-list {
	list-style: none;
}

.hero-card-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-card-list li:last-child {
	border-bottom: none;
}

.hero-card-list .material-icons-round {
	color: var(--secondary-color);
	font-size: 24px;
}

/* Stats Section */
.landing-stats {
	background: var(--bg-white);
	padding: 3rem 2rem;
	border-bottom: 1px solid var(--border-color);
}

.landing-stats-container {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary-color);
	display: block;
}

.stat-label {
	color: var(--text-light);
	font-weight: 500;
}

/* Benefits Section */
.landing-benefits {
	padding: 5rem 2rem;
	background: var(--bg-light);
}

.landing-section-container {
	max-width: 1280px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.section-header p {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.benefit-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
	transition: all 0.3s;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
}

.benefit-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.benefit-icon .material-icons-round {
	font-size: 32px;
	color: white;
}

.benefit-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.benefit-card p {
	color: var(--text-light);
	line-height: 1.7;
}

/* Features Section */
.landing-features {
	padding: 5rem 2rem;
	background: var(--bg-white);
}

.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.feature-row:last-child {
	margin-bottom: 0;
}

.feature-row.reverse {
	direction: rtl;
}

.feature-row.reverse > * {
	direction: ltr;
}

.feature-content h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.feature-content p {
	color: var(--text-light);
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--bg-light);
	border-radius: 0.5rem;
}

.feature-list .material-icons-round {
	color: var(--secondary-color);
	flex-shrink: 0;
	margin-top: 2px;
}

.feature-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-image img {
	max-width: 100%;
	height: auto;
	border-radius: 1rem;
}

/* Pricing Section */
.landing-pricing {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.pricing-subtitle {
	color: rgba(255, 255, 255, 0.95) !important;
	font-size: 1.25rem;
	opacity: 1 !important;
}

.pricing-table-wrapper {
	max-width: 1100px;
	margin: 3rem auto 0;
	background: white;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
}

.pricing-table thead {
	background: var(--primary-color);
	color: white;
}

.pricing-table th {
	padding: 1.5rem;
	text-align: left;
	font-weight: 600;
	font-size: 1.1rem;
}

.pricing-table tbody tr {
	border-bottom: 1px solid var(--border-color);
	transition: background 0.2s;
}

.pricing-table tbody tr:hover {
	background: var(--bg-light);
}

.pricing-table tbody tr.highlighted-row {
	background: #fef3c7;
}

.pricing-table tbody tr.highlighted-row:hover {
	background: #fde68a;
}

.pricing-table td {
	padding: 1.5rem;
	color: var(--text-dark);
}

.pricing-table .price-cell {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary-color);
	white-space: nowrap;
}

.pricing-table .features-cell {
	padding: 1rem 1.5rem;
}

.pricing-table .feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.pricing-table .feature-item:last-child {
	margin-bottom: 0;
}

.pricing-table .feature-item .material-icons-round {
	color: var(--secondary-color);
	font-size: 20px;
}

.pricing-cta-wrapper {
	background: var(--bg-light);
	padding: 2rem;
	text-align: center;
	border-top: 2px solid var(--border-color);
}

.pricing-cta-button {
	display: inline-block;
	padding: 1rem 3rem;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 1.125rem;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	box-shadow: var(--shadow-md);
}

.pricing-cta-button:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	color: white;
}

.pricing-note {
	margin-top: 1rem;
	color: var(--text-light);
	font-size: 0.9rem;
}

.pricing-note a {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
}

.pricing-note a:hover {
	text-decoration: underline;
}

/* Testimonials Section */
.landing-testimonials {
	padding: 5rem 2rem;
	background: var(--bg-light);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1280px;
	margin: 3rem auto 0;
}

.testimonial-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
}

.testimonial-rating {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.testimonial-rating .material-icons-round {
	color: #fbbf24;
	font-size: 20px;
}

.testimonial-text {
	font-style: italic;
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.25rem;
}

.testimonial-author-info h4 {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.testimonial-author-info p {
	font-size: 0.875rem;
	color: var(--text-light);
}

/* CTA Section */
.landing-cta {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
	color: white;
	text-align: center;
}

.landing-cta h2 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.landing-cta p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	opacity: 0.95;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* FAQ Section */
.landing-faq {
	padding: 5rem 2rem;
	background: var(--bg-white);
}

.faq-list {
	max-width: 800px;
	margin: 3rem auto 0;
}

.faq-item {
	background: white;
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}

.faq-question:hover {
	background: var(--bg-light);
}

.faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* Footer */
.landing-footer {
	background: var(--text-dark);
	color: white;
	padding: 3rem 2rem 1.5rem;
}

.landing-footer-container {
	max-width: 1280px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand {
	max-width: 300px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1rem;
}

.footer-logo img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.footer-links h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-links a {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	margin-bottom: 0.75rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: white;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.landing-hero-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.landing-hero-content h1 {
		font-size: 2.5rem;
	}

	.landing-stats-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-row {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.feature-row.reverse {
		direction: ltr;
	}

	.pricing-table {
		font-size: 0.9rem;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 1rem;
	}

	.pricing-table .price-cell {
		font-size: 1.5rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.landing-nav {
		gap: 1rem;
	}

	.landing-nav a:not(.btn-primary-landing):not(.btn-secondary-landing) {
		display: none;
	}

	.landing-hero {
		padding: 3rem 1.5rem;
	}

	.landing-hero-content h1 {
		font-size: 2rem;
	}

	.landing-hero-content p {
		font-size: 1rem;
	}

	.hero-cta-group {
		flex-direction: column;
	}

	.btn-hero-primary,
	.btn-hero-secondary {
		width: 100%;
		justify-content: center;
	}

	.landing-stats-container {
		grid-template-columns: 1fr;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.landing-cta h2 {
		font-size: 2rem;
	}

	.pricing-table-wrapper {
		overflow-x: auto;
	}

	.pricing-table {
		min-width: 600px;
		font-size: 0.85rem;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 0.75rem;
	}

	.pricing-table .price-cell {
		font-size: 1.25rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}

/* How It Works Section */
.landing-how-it-works {
padding: 5rem 2rem;
background: var(--bg-white);
}

.landing-how-it-works .feature-row {
margin-bottom: 5rem;
}

.landing-how-it-works .feature-row:last-child {
margin-bottom: 0;
}

.feature-row-reverse {
direction: rtl;
}

.feature-row-reverse > * {
direction: ltr;
}

/* Improved FAQ Styling */
.faq-container {
max-width: 900px;
margin: 3rem auto 0;
}

.faq-item {
background: white;
border: 1px solid var(--border-color);
border-radius: 0.75rem;
margin-bottom: 1rem;
overflow: hidden;
transition: all 0.3s;
}

.faq-item:hover {
box-shadow: var(--shadow-md);
}

.faq-item.active {
border-color: var(--primary-color);
box-shadow: var(--shadow-lg);
}

.faq-question {
padding: 1.5rem 2rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s;
background: white;
user-select: none;
}

.faq-question h3 {
margin: 0;
font-size: 1.125rem;
font-weight: 600;
color: var(--text-dark);
flex: 1;
}

.faq-question .material-icons-round {
color: var(--primary-color);
font-size: 28px;
transition: transform 0.3s;
flex-shrink: 0;
}

.faq-item.active .faq-question .material-icons-round {
transform: rotate(180deg);
}

.faq-question:hover {
background: var(--bg-light);
}

.faq-item.active .faq-question {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.faq-answer {
padding: 0 2rem 2rem 2rem;
display: none; /* Hidden by default, shown via jQuery slideDown() */
color: var(--text-dark);
line-height: 1.8;
}
color: var(--text-light);
line-height: 1.8;
display: none;
}

.faq-answer p {
margin-bottom: 1rem;
}

.faq-answer p:last-child {
margin-bottom: 0;
}

.faq-answer ol, .faq-answer ul {
margin: 1rem 0;
padding-left: 1.5rem;
}

.faq-answer li {
margin-bottom: 0.5rem;
line-height: 1.8;
}

.faq-answer a {
color: var(--primary-color);
font-weight: 600;
text-decoration: none;
}

.faq-answer a:hover {
text-decoration: underline;
}

.faq-answer strong {
color: var(--text-dark);
}
