/* Variables */
:root {
	--primary-color: #8bd219;
	--secondary-color: #72af14;
	--accent-color: #9de42e;
	--text-dark: #333333;
	--text-light: #666666;
	--background-light: #ffffff;
	--background-gray: #f8f9fa;
	--shadow-color: rgba(0, 0, 0, 0.1);
}

/* Global Styles */
body {
	font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.landing-container {
	max-width: 100%;
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}

p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	box-shadow: 0 4px 6px var(--shadow-color);
	text-decoration: none;
}

.btn.primary-btn {
	background-color: var(--primary-color);
	color: white;
}

.btn.primary-btn:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 8px var(--shadow-color);
}

.btn.secondary-btn {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn.secondary-btn:hover {
	background-color: rgba(139, 210, 25, 0.1);
	transform: translateY(-2px);
}

.btn.large {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
}

/* Sections */
section {
	padding: 5rem 0;
}

section:nth-child(even) {
	background-color: var(--background-gray);
}

/* Hero Section */
.hero-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6rem 10%;
	min-height: 80vh;
	background: linear-gradient(135deg, #e8f5d3, #f2f9e8);
	position: relative;
	overflow: hidden;
}

.hero-section:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwIEwxMDAgMTAwIEwxMDAgMCBMMCAwIFoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
	opacity: 0.5;
	z-index: 0;
}

.hero-content {
	flex: 1;
	max-width: 600px;
	z-index: 1;
	animation: fadeInLeft 1s ease-out;
}

.hero-content .hero-description {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.hero-content .cta-buttons {
	display: flex;
	gap: 1rem;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	animation: fadeInRight 1s ease-out;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.logo-container {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.logo {
	width: 60px;
	height: 60px;
	margin-right: 1rem;
}

.logo-text {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

/* Features Section */
.features-section {
	padding: 5rem 10%;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background-color: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px var(--shadow-color);
	text-align: center;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.feature-card h3 {
	margin-bottom: 1rem;
}

/* Problems & Solutions Section */
.problems-section {
	padding: 5rem 10%;
	background-color: var(--background-gray);
}

.problem-solution-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	align-items: stretch;
}

.problem-solution-item {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px var(--shadow-color);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.problem, .solution {
	padding: 1.5rem;
}

.problem {
	background-color: #fff5f5;
	border-bottom: 1px solid #ffebeb;
}

.problem h3 {
	color: #e53e3e;
	margin-bottom: 0.8rem;
}

.problem h3 i {
	margin-right: 0.5rem;
}

.solution {
	background-color: #f0fff4;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.solution h4 {
	color: var(--primary-color);
	margin-bottom: 0.8rem;
}

.solution h4 i {
	margin-right: 0.5rem;
}

/* Workflow Diagrams Section */
.workflow-section {
	padding: 5rem 10%;
	background-color: var(--background-gray);
}

.workflow-container {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.workflow-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 1rem;
}

.workflow-title {
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	color: var(--text-dark);
}

.workflow-image {
	max-width: 70%;
	height: auto;
	border-radius: 10px;
	/* box-shadow: 0 5px 15px var(--shadow-color); */
	transition: transform 0.3s ease;
}

.workflow-image:hover {
	transform: scale(1.02);
}

@media (max-width: 768px) {
	.workflow-container {
		gap: 3rem;
	}
	
	.workflow-image {
		max-width: 90%;
	}
	
	.workflow-title {
		font-size: 1.4rem;
	}
}

/* Benefits Section */
.benefits-section {
	padding: 5rem 10%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.benefits-content {
	flex: 1;
	min-width: 300px;
}

.benefits-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 300px;
}

.benefits-image img {
	max-width: 100%;
	height: auto;
}

.benefits-list {
	list-style: none;
	padding: 0;
}

.benefits-list li {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.benefits-list li i {
	color: var(--primary-color);
	margin-right: 0.8rem;
}

/* Testimonials Section */
.testimonials-section {
	padding: 5rem 10%;
}

.testimonials-slider {
	display: flex;
	gap: 2rem;
	overflow-x: auto;
	padding: 1rem 0;
	scrollbar-width: thin;
	scrollbar-color: var(--primary-color) var(--background-gray);
	justify-content: center;
	flex-wrap: wrap;
}

.testimonials-slider::-webkit-scrollbar {
	height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
	background: var(--background-gray);
	border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	border-radius: 10px;
}

.testimonial-card {
	background-color: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px var(--shadow-color);
	min-width: 300px;
	max-width: 400px;
	flex: 0 0 auto;
	width: calc(45% - 2rem);
	margin: 0 auto;
}

.testimonial-content {
	margin-bottom: 1.5rem;
}

.testimonial-content p {
	font-style: italic;
	font-size: 1.1rem;
	color: var(--text-dark);
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 1rem;
	object-fit: cover;
}

.testimonial-author h4 {
	margin: 0;
	font-size: 1.1rem;
}

.testimonial-author p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-light);
}

/* Story Section */
.story-section {
	padding: 5rem 10%;
	background-color: var(--background-gray);
}

.container {
	max-width: 800px;
	margin: 0 auto;
}

.story-content {
	background-color: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px var(--shadow-color);
	margin-bottom: 2rem;
}

.author-info {
	text-align: right;
}

.author-info h3 {
	margin-bottom: 0.3rem;
}

.author-info p {
	margin: 0;
	color: var(--text-light);
}

/* CTA Section */
.cta-section {
	padding: 5rem 10%;
	text-align: center;
	background: linear-gradient(135deg, #e8f5d3, #f2f9e8);
}

.cta-section h2 {
	margin-bottom: 1rem;
}

.cta-section p {
	margin-bottom: 2rem;
	font-size: 1.2rem;
}

/* Footer */
.footer {
	background-color: #333;
	color: white;
	padding: 4rem 10% 2rem;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-logo {
	flex: 2;
	min-width: 250px;
}

.footer-logo img {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
}

.footer-links {
	flex: 1;
	min-width: 150px;
}

.footer-links h4 {
	margin-bottom: 1.5rem;
	position: relative;
}

.footer-links h4:after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--primary-color);
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #444;
}

.footer-bottom p {
	margin: 0;
	color: #999;
}

/* Animations */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive Styles */
@media (max-width: 992px) {
	.hero-section {
		flex-direction: column;
		text-align: center;
		padding: 5rem 5%;
	}
	
	.hero-content {
		max-width: 100%;
		margin-bottom: 2rem;
	}
	
	.hero-content .cta-buttons {
		justify-content: center;
	}
	
	.hero-image {
		display: none;
	}
	
	.benefits-section {
		flex-direction: column;
	}
	
	.benefits-content {
		margin-bottom: 3rem;
	}
}

@media (max-width: 768px) {
	section {
		padding: 4rem 5%;
	}
	
	.features-grid, .problem-solution-container {
		grid-template-columns: 1fr;
	}
	
	.footer-content {
		flex-direction: column;
	}
	
	.footer-logo, .footer-links {
		margin-bottom: 2rem;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 2.2rem;
	}
	
	h2 {
		font-size: 1.8rem;
	}
	
	.hero-content .cta-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.hero-content .cta-buttons .btn {
		width: 100%;
		margin-bottom: 1rem;
	}
}