:root {
	--primary: #4361ee;
	--primary-dark: #3a56d4;
	--secondary: #06d6a0;
	--dark: #1e293b;
	--light: #f8fafc;
	--gray: #64748b;
	--light-gray: #e2e8f0;
	--success: #10b981;
	--danger: #ef4444;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--radius: 12px;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--dark);
	background-color: var(--light);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background-color: white;
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 100;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}

.nav-links a:hover {
	color: var(--primary);
}

.nav-buttons {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 12px 24px;
	border-radius: var(--radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: white;
}

.btn-primary {
	background: var(--primary);
	color: white;
	border: 2px solid var(--primary);
}

.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.btn-secondary {
	background: var(--secondary);
	color: var(--dark);
	border: 2px solid var(--secondary);
}

.btn-secondary:hover {
	background: #05c08e;
	border-color: #05c08e;
}

/* Hero Section */
.hero {
	padding: 100px 0 80px;
	background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.hero-text {
	flex: 1;
}

.hero-text h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	color: var(--dark);
}

.hero-text h1 span {
	color: var(--primary);
}

.hero-text p {
	font-size: 1.25rem;
	color: var(--gray);
	margin-bottom: 40px;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

.hero-stats {
	display: flex;
	gap: 30px;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-value {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--primary);
}

.stat-label {
	color: var(--gray);
	font-size: 0.9rem;
}

.hero-image {
	flex: 1;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: white;
	padding: 20px;
	border: 1px solid var(--light-gray);
}

.hero-image img {
	width: 100%;
	border-radius: var(--radius);
	display: block;
	padding-top: 22px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
	100% { transform: translateY(0px); }
}

/* Business Types */
.business-types {
	padding: 80px 0;
	background-color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.section-title p {
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.business-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}

.business-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.business-card i {
	font-size: 3rem;
	color: var(--primary);
	margin-bottom: 20px;
}

.business-card h3 {
	margin-bottom: 15px;
}

/* Features */
.features {
	padding: 80px 0;
	background-color: #f9fafb;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card i {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 20px;
}

.feature-card h3 {
	margin-bottom: 15px;            
}

/* Pricing Section */
.pricing {
	padding: 100px 0;
	background: linear-gradient(to bottom, #f0f4ff, #f8fafc);
}

.pricing-header {
	text-align: center;
	margin-bottom: 60px;
}

.pricing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}

.toggle-label {
	color: var(--gray);
	font-weight: 500;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 30px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--light-gray);
	transition: .4s;
	border-radius: 34px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .slider {
	background-color: var(--primary);
}

input:checked + .slider:before {
	transform: translateX(30px);
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: white;
	border-radius: var(--radius);
	padding: 40px 30px;
	box-shadow: var(--shadow);
	text-align: center;
	position: relative;
	border: 1px solid var(--light-gray);
	transition: var(--transition);
}

.pricing-card.popular {
	border: 2px solid var(--primary);
	transform: scale(1.05);
}

.popular-tag {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--primary);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.pricing-card h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.price {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark);
}

.price span {
	font-size: 1rem;
	color: var(--gray);
	font-weight: 400;
}

.pricing-features {
	list-style: none;
	margin: 30px 0;
	text-align: left;
}

.pricing-features li {
	padding: 12px 0;
	border-bottom: 1px solid var(--light-gray);
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li i {
	color: var(--success);
}

/* Testimonials */
.testimonials {
	padding: 100px 0;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: white;
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow);
	border: 1px solid var(--light-gray);
}

.testimonial-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-info h4 {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.testimonial-info p {
	color: var(--gray);
	font-size: 0.9rem;
}

.testimonial-content p {
	font-style: italic;
	color: var(--dark);
	margin-bottom: 20px;
}

.rating {
	color: #fbbf24;
}

/* CTA Section */
.cta {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	text-align: center;
}

.cta h2 {
	font-size: 2.8rem;
	margin-bottom: 20px;
}

.cta p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 40px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* Footer */
footer {
	background: var(--dark);
	color: white;
	padding: 80px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.footer-col h4 {
	font-size: 1.3rem;
	margin-bottom: 25px;
	position: relative;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 40px;
	height: 3px;
	background: var(--secondary);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 15px;
}

.footer-links a {
	color: #cbd5e1;
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-5px);
}

.copyright {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #94a3b8;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero-content {
		flex-direction: column;
	}
	
	.hero-text {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.hero-buttons {
		justify-content: center;
	}
	
	.hero-stats {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	
	.hero-text h1 {
		font-size: 2.8rem;
	}
	
	.section-header h2 {
		font-size: 2.2rem;
	}
	
	.cta h2 {
		font-size: 2.2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 10px;
	}
	
	.pricing-card.popular {
		transform: scale(1);
	}
}