:root {
--primary: #92D400;
--primary-dark: #7ab800;
--secondary: #3e3e3e;
--accent: #b8e944;
--magenta: #b50eaf;
--error: #ef4444;
--success: #92D400;
--success-light: #f6fbe8;
--dark: #3e3e3e;
--light: #faf9f6;
--gray: #6b7280;
--gray-light: #f1f5f9;
--danger: #EF4444;
--danger-light: #FEE2E2;
--shadow: rgba(15, 23, 42, 0.08);
--border: #E2E8F0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--dark);
	background: var(--light);
	line-height: 1.6;
	overflow-x: hidden;
}
.mb2 {
	margin-bottom:2em;
}
a {
	text-decoration: none;
	color:inherit;
} 
/* Navigation */
nav {
	position: fixed;
	width: 100%;
	padding: 1rem 5%;
	background: white;
	backdrop-filter: blur(10px);
	z-index: 1100;
	border-bottom: 1px solid rgba(26, 77, 46, 0.1);
	animation: slideDown 0.6s ease;
}
.darkText {
	color: var(--dark)!important;
}

@keyframes slideDown {
from { transform: translateY(-100%); }
to { transform: translateY(0); }
}

nav .container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: block;
}

.nav-links {
display: flex;
align-items: center;
}

.nav-links a {
margin-left: 2.5rem;
color: var(--dark);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--magenta);
}

/* Burger Menu */
.burger-menu {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 5px;
z-index: 1101;
position: relative;
}

.burger-menu span {
width: 25px;
height: 3px;
background: var(--primary);
border-radius: 3px;
transition: all 0.3s ease;
}

.burger-menu.active span {
background: var(--primary);
}

.burger-menu.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
opacity: 0;
}

.burger-menu.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.cta-button {
background: var(--primary);
color: white;
padding: 0.75rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(146, 212, 0, 0.3);
}

.cta-button:hover {
background: var(--magenta);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(181, 14, 175, 0.4);
color: white !important;
}

/* Hero Section */
.hero {
	padding: 12rem 5% 3rem;
	background: linear-gradient(135deg, var(--light) 0%, #f0ffd4 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(146, 212, 0, 0.1) 0%, transparent 70%);
animation: float 20s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
50% { transform: translate(-50px, 50px) rotate(10deg); }
}

.hero .container {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 1;
}

.hero-content h1 {
font-family: 'Baloo 2', cursive;
font-size: 4.5rem;
font-weight: 800;
line-height: 1.1;
color: var(--primary);
margin-bottom: 1.5rem;
animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-content .subtitle {
font-size: 1.3rem;
color: var(--gray);
margin-bottom: 2.5rem;
font-weight: 300;
animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
display: flex;
gap: 1.5rem;
animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-primary {
background: var(--primary);
color: white;
padding: 1rem 3rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s;
box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(181, 14, 175, 0.4);
background: var(--magenta);
}

.btn-secondary {
background: white;
color: var(--primary);
padding: 1rem 3rem;
border: 2px solid var(--primary);
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s;
}

.btn-secondary:hover {
background: var(--primary);
color: white;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
background: white;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat {
text-align: center;
}

.stat-number {
font-family: 'Baloo 2', cursive;
font-size: 3rem;
font-weight: 800;
color: var(--primary);
display: block;
}

.stat-label {
font-size: 0.9rem;
color: var(--gray);
margin-top: 0.5rem;
}

.hero-image {
max-width: 800px;
margin: 0 auto;
animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-image img {
width: 100%;
height: auto;
display: block;
border-radius: 20px;
}

/* Features Section */
.features {
padding: 5rem 5%;
background: white;
}

.features .container {
max-width: 1400px;
margin: 0 auto;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 5rem;
}

.section-tag {
display: inline-block;
color: var(--magenta);
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 1rem;
}

.section-title {
font-family: 'Baloo 2', cursive;
font-size: 3.5rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 1.5rem;
}

.section-description {
font-size: 1.2rem;
color: var(--gray);
font-weight: 300;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
}

.feature-card {
padding: 3rem;
border-radius: 20px;
background: var(--light);
transition: all 0.4s;
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--magenta));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s;
}

.feature-card:hover::before {
transform: scaleX(1);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin-bottom: 2rem;
color: white;
}

.feature-card h3 {
font-family: 'Baloo 2', cursive;
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 1rem;
}

.feature-card p {
color: var(--gray);
line-height: 1.8;
}

/* Process Section */
.process {
padding: 5rem 5%;
background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
color: white;
}

.process .container {
max-width: 1400px;
margin: 0 auto;
}

.process .section-tag {
color: var(--primary);
}

.process .section-title,
.process .section-description {
color: white;
}

.process-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-top: 4rem;
}

.step {
position: relative;
padding: 2.5rem;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s;
}

.step:hover {
background: rgba(255, 255, 255, 0.12);
transform: translateY(-5px);
}

.step-number {
position: absolute;
top: -20px;
left: 2.5rem;
width: 50px;
height: 50px;
background: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Baloo 2', cursive;
font-size: 1.5rem;
font-weight: 800;
color: var(--secondary);
}

.step h3 {
font-family: 'Baloo 2', cursive;
font-size: 1.6rem;
margin: 2rem 0 1rem;
font-weight: 700;
}

.step p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.7;
}

/* Pricing Section */
.pricing {
padding: 5rem 5%;
background: var(--light);
}

.pricing .container {
max-width: 1400px;
margin: 0 auto;
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
margin-top: 4rem;
}

.pricing-card {
background: white;
padding: 3rem;
border-radius: 25px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
position: relative;
transition: all 0.4s;
}

.pricing-card.featured {
background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
color: white;
transform: scale(1.05);
box-shadow: 0 20px 60px rgba(62, 62, 62, 0.3);
}

.pricing-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
transform: translateY(-10px) scale(1.07);
}

.pricing-badge {
display: inline-block;
background: var(--magenta);
color: white;
padding: 0.4rem 1.2rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1.5rem;
}

.pricing-card h3 {
font-family: 'Baloo 2', cursive;
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured p {
color: white;
}

.price {
font-family: 'Baloo 2', cursive;
font-size: 3.5rem;
font-weight: 800;
color: var(--primary);
margin: 1.5rem 0;
}

.price span {
font-size: 1.2rem;
font-weight: 400;
color: var(--gray);
}

.pricing-card.featured .price span {
color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
list-style: none;
margin: 2rem 0;
}

.pricing-features li {
padding: 0.8rem 0;
display: flex;
align-items: center;
color: var(--gray);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured .pricing-features li {
color: rgba(255, 255, 255, 0.9);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
content: '✓';
color: var(--primary);
font-weight: 700;
margin-right: 1rem;
font-size: 1.2rem;
}

.pricing-card.featured .pricing-features li::before {
color: var(--primary);
}

.pricing-button {
display: block;
width: 100%;
padding: 1rem;
border: 2px solid var(--primary);
background: transparent;
color: var(--primary);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
text-align: center;
text-decoration: none;
transition: all 0.3s;
margin-top: 2rem;
}

.pricing-button:hover {
background: var(--magenta);
border-color: var(--magenta);
color: white;
}

.pricing-card.featured .pricing-button {
background: white;
color: var(--secondary);
border-color: white;
}

.pricing-card.featured .pricing-button:hover {
background: var(--magenta);
border-color: var(--magenta);
color: white;
}

/* Testimonials */
.testimonials {
padding: 5rem 5%;
background: white;
}

.testimonials .container {
max-width: 1400px;
margin: 0 auto;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
margin-top: 4rem;
}

.testimonial-card {
background: var(--light);
padding: 3rem;
border-radius: 25px;
position: relative;
transition: all 0.4s;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.quote-icon {
font-size: 4rem;
color: var(--primary);
opacity: 0.3;
line-height: 1;
margin-bottom: 1rem;
}

.testimonial-text {
font-size: 1.2rem;
color: var(--dark);
line-height: 1.8;
margin-bottom: 2rem;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}

.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--accent));
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary);
font-weight: 600;
font-size: 1.3rem;
}

.author-info h4 {
font-family: 'Baloo 2', cursive;
font-size: 1.3rem;
color: var(--primary);
margin-bottom: 0.2rem;
font-weight: 700;
}

.author-info p {
color: var(--gray);
font-size: 0.95rem;
}

/* Logo Carousel */
.logo-carousel {
overflow: hidden;
padding: 2rem 0;
position: relative;
background: var(--light);
border-radius: 20px;
}

.logo-carousel::before,
.logo-carousel::after {
content: '';
position: absolute;
top: 0;
width: 150px;
height: 100%;
z-index: 2;
pointer-events: none;
}

.logo-carousel::before {
left: 0;
background: linear-gradient(to right, var(--light), transparent);
}

.logo-carousel::after {
right: 0;
background: linear-gradient(to left, var(--light), transparent);
}

.carousel-track {
display: flex;
gap: 4rem;
animation: scroll var(--carousel-duration, 40s) linear infinite alternate;
width: fit-content;
}

@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@keyframes scroll-reverse {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0);
}
}
.carousel-track:hover {
animation-play-state: paused;
}

.logo-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 1rem;
background: white;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: all 0.3s;
}

.logo-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-logo {
width: 120px;
height: 120px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
}
.company-logo img {
width: 100%;
height: 100%;
object-fit: contain;
background: white;
border-radius: 12px;
}
.logo-item span {
font-weight: 600;
color: var(--secondary);
font-size: 1rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
.logo-item {
min-width: 140px;
padding: 1.5rem;
}

.company-logo {
width: 60px;
height: 60px;
font-size: 2rem;
}

.carousel-track {
gap: 2rem;
}
}
/* CTA Section */
.cta-section {
padding: 5rem 5%;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.cta-section .container {
max-width: 1000px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 1;
}

.cta-section h2 {
font-family: 'Baloo 2', cursive;
font-size: 4rem;
font-weight: 800;
color: var(--secondary);
margin-bottom: 1.5rem;
}

.cta-section p {
font-size: 1.3rem;
color: var(--secondary);
margin-bottom: 3rem;
font-weight: 300;
}

.cta-section .btn-primary {
background: var(--secondary);
color: white;
}

.cta-section .btn-primary:hover {
background: var(--dark);
color: white;
}

/* Footer */
footer {
background: var(--dark);
color: white;
padding: 4rem 5% 2rem;
}

footer .container {
max-width: 1400px;
margin: 0 auto;
}

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 4rem;
margin-bottom: 3rem;
}

.footer-brand h3 {
font-family: 'Baloo 2', cursive;
margin-bottom: 1rem;
font-weight: 800;
}

.footer-brand p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.8;
}

.footer-links h4 {
font-family: 'Baloo 2', cursive;
font-size: 1.3rem;
margin-bottom: 1.5rem;
font-weight: 700;
}

.footer-links ul {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--magenta);
}

.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);
}

/* Modal */
.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 2000;
animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
display: flex;
align-items: center;
justify-content: center;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.modal-content {
background: white;
max-width: 600px;
width: 90%;
padding: 3rem;
border-radius: 20px;
position: relative;
max-height: 80vh;
overflow-y: auto;
animation: slideUp 0.3s ease;
}

.modal-close {
position: absolute;
top: 1.5rem;
right: 1.5rem;
font-size: 2rem;
cursor: pointer;
color: var(--gray);
transition: color 0.3s;
line-height: 1;
}

.modal-close:hover {
color: var(--magenta);
}

.modal-content h2 {
font-family: 'Baloo 2', cursive;
font-size: 2rem;
color: var(--primary);
margin-bottom: 1.5rem;
}

.modal-content h3 {
font-family: 'Baloo 2', cursive;
font-size: 1.5rem;
color: var(--secondary);
margin: 1.5rem 0 1rem;
}

.modal-content p {
color: var(--gray);
line-height: 1.8;
margin-bottom: 1rem;
}

.modal-content ul {
list-style: none;
padding: 0;
}

.modal-content ul li {
padding: 0.5rem 0;
font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
.hero .container {
grid-template-columns: 1fr;
}

.features-grid,
.pricing-cards {
grid-template-columns: 1fr;
}

.process-steps {
grid-template-columns: repeat(2, 1fr);
}

.hero-content h1 {
font-size: 3.5rem;
}
}

@media (max-width: 768px) {
.company-name {
font-size: 2.5rem;
}

.hero-content h1 {
font-size: 2.5rem;
}

.section-title {
font-size: 2.5rem;
}

.process-steps,
.testimonials-grid,
.footer-content {
grid-template-columns: 1fr;
}

.hero-stats {
grid-template-columns: 1fr;
}

/* Mobile Menu */
.burger-menu {
display: flex;
}

.nav-links {
position: fixed;
top: 0;
right: -100%;
width: 280px;
height: 100vh;
background: white;
flex-direction: column;
padding: 5rem 2rem 2rem;
box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
transition: right 0.4s ease;
z-index: 1050;
align-items: flex-start;
overflow-y: auto;
}

.nav-links.active {
right: 0;
}

.nav-links a {
margin: 0;
padding: 1rem 0;
width: 100%;
border-bottom: 1px solid rgba(26, 77, 46, 0.1);
font-size: 1.1rem;
}

.nav-links .cta-button {
margin-top: 1rem;
margin-left: 0;
text-align: center;
padding: 1rem 2rem;
width: 100%;
}

/* Overlay */
.menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 1040;
}

.menu-overlay.active {
opacity: 1;
visibility: visible;
}
}
