:root {
	--primary-color: #6b21a8;
	--primary-light: #8b5cf6;
	--secondary-color: #fabb00;
	--text-color: #1f2937;
	--bg-color: #ffffff;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
}

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

body {
	font-family: "Inter", sans-serif;
	line-height: 1.5;
	color: var(--text-color);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
	background: var(--bg-color);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 3000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
	height: 50px;
}

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

.nav-links a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--primary-color);
}

.nav-links a.active::after {
	width: 100%;
}

.join-btn {
	background: var(--primary-color);
	color: white;
	padding: 0.5rem 1.5rem;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.3s ease;
	position: relative;
	overflow: hidden;
	transform: translateZ(0);
}

.join-btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease-out, height 0.6s ease-out;
}

.join-btn:hover::before {
	width: 300%;
	height: 300%;
}

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

.hero {
	padding: 2rem 5% 4rem;
	margin-top: 70px;
	background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
	margin-bottom: 2rem;
}

.hero-text-section {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
	max-width: 1000px;
	width: 100%;
}

.hero-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero-text h1 {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.highlight {
	color: var(--primary-color);
}

.banner-description {
	margin-bottom: 0;
	font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.7;
	color: #374151;
	letter-spacing: -0.01em;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cta-section {
	margin-top: 0.5rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.signup-form {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	width: 100%;
}

.signup-form input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid var(--gray-200);
	border-radius: 0.5rem;
	font-size: 1rem;
	width: 100%;
}

.signup-form button {
	background: var(--primary-color);
	color: white;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	font-weight: 500;
	white-space: nowrap;
}

.app-stores {
	margin-top: 1rem;
	width: 100%;
	text-align: center;
}

.app-stores p {
	font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	color: #1f2937;
	letter-spacing: -0.01em;
	margin-bottom: 0.75rem;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.store-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.store-btn img {
	height: 40px;
}

.carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 1rem;
	padding-top: 0 !important;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
}

.carousel-dots {
	display: flex;
	gap: 0.5rem;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gray-200);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dot.active {
	background: var(--primary-color);
}

.prev-btn,
.next-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
	background: var(--primary-light);
}

/* Remove any conflicting styles */
/* .carousel-container img:first-child { opacity: 0; } */

.banner-text,
.banner-description {
	opacity: 1;
	transition: opacity 1s ease-in-out;
}

.banner-text.animate__animated,
.banner-description.animate__animated {
	--animate-duration: 3s;
	animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.features-banner {
	background: var(--primary-color);
	color: white;
	border-radius: 30px;
	margin: 2rem auto;
	max-width: 90%;
	padding: 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	font-size: 1.1rem;
}

.feature-item i {
	font-size: 1.5rem;
	color: var(--primary-light);
}

.slider-controls {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	display: flex;
	gap: 1rem;
}

.slider-controls button {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.slider-controls button:hover {
	background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
	.hero-text-section {
		gap: 1rem;
	}

	.hero-content {
		gap: 2rem;
		text-align: center;
	}

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

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

@media (max-width: 600px) {
	.features-banner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem;
		margin: 1.5rem auto;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: fixed;
		top: 70px;
		right: 0;
		left: 0;
		background: #fff;
		padding: 1.5rem 5%;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
		flex-direction: column;
		gap: 1.2rem;
		z-index: 9999;
		transform: translateY(-20px);
		opacity: 0;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
		border-bottom: 1px solid #e5e7eb;
	}
	.nav-links a {
		width: 100%;
		text-align: left;
		padding: 0.8rem 0;
		border-bottom: 1px solid #f3f4f6;
		transition: all 0.2s ease;
	}

	.nav-links button.demo-btn,
	.nav-links button.partner-btn {
		width: 100%;
		text-align: center;
		padding: 0.8rem;
		border-bottom: 1px solid #f3f4f6;
		transition: all 0.2s ease;
		margin: 0;
	}
	.nav-links a:hover {
		background: #f9fafb;
		padding-left: 1rem;
	}
	.nav-links a:last-child {
		border-bottom: none;
	}
	.nav-links.show {
		display: flex;
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.mobile-menu-btn {
		display: flex !important;
		z-index: 10000;
	}
}

/* Success Story Section */
.success-story {
	padding: 6rem 5%;
	position: relative;
	overflow: hidden;
}

.story-container {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

.story-image-container {
	position: relative;
}

.story-image {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-person-info {
	position: absolute;
	bottom: -20px;
	left: 30px;
	background: white;
	padding: 15px 25px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.story-person-info h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.story-occupation {
	margin: 5px 0 0;
	color: #666;
	font-size: 0.9rem;
}

.story-accent-line {
	height: 3px;
	width: 40px;
	background: linear-gradient(90deg, var(--secondary-color), #9932cc);
	margin-top: 8px;
}

.story-title {
	font-size: 2.8rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	position: relative;
}

.story-highlight {
	color: var(--primary-color);
	position: relative;
}

.story-highlight::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 15px;
	width: 8px;
	height: 8px;
	background: var(--secondary-color);
	border-radius: 50%;
}

.story-text {
	font-size: 1.05rem;
	line-height: 1.7;
}

.story-text p {
	margin-bottom: 1.2rem;
}

.read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--secondary-color);
	color: white;
	padding: 0.7rem 1.5rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	margin-top: 1rem;
	transition: all 0.3s ease;
}

.read-more-btn:hover {
	background: #c89f3e;
	transform: translateY(-3px);
}

.story-decoration {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, var(--secondary-color), #9932cc);
	border-radius: 50%;
	opacity: 0.6;
	z-index: -1;
}

/* Add this at the bottom of the file */
.success-story::before {
	content: "";
	position: absolute;
	bottom: -100px;
	right: 5%;
	width: 180px;
	height: 180px;
	background: linear-gradient(135deg, #9932cc, #4b0082);
	border-radius: 50%;
	opacity: 0.3;
	z-index: -1;
}

@media (max-width: 992px) {
	.story-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.story-image {
		height: 350px;
	}

	.story-title {
		font-size: 2.2rem;
	}
}

/* Exceptional Features Section */
.exceptional-features {
	padding: 6rem 5%;
	position: relative;
	background-color: #ffffff;
}

/* New Features Grid (v2) */
.core-features {
	padding: 4rem 5% 2rem;
	margin-bottom: 2.5rem;
}

.features-header .badge {
	background: #efe7ff;
	color: #6b21a8;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	font-weight: 600;
}

.features-grid-v2 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	max-width: 1200px;
	margin: 1.25rem auto 0;
}

.feature-tile {
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Tinted backgrounds for feature tiles - removed empty rulesets */

.feature-tile:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
}

.feature-tile .tile-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f3ff;
	color: #6b21a8;
	margin-bottom: 0.9rem;
	font-size: 1.2rem;
}

.feature-tile h3 {
	font-size: 1.05rem;
	margin-bottom: 0.35rem;
}

.feature-tile p {
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.45rem;
}

@media (max-width: 1024px) {
	.features-grid-v2 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.features-grid-v2 {
		grid-template-columns: 1fr;
	}
}

.exceptional-container {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.exceptional-content h2 {
	font-size: 2.8rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #1f2937;
}

.exceptional-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	color: #4b5563;
	max-width: 90%;
}

.features-benefits {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.benefit-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.benefit-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	border-radius: 50%;
}

.benefit-icon img {
	width: 32px;
	height: 32px;
}

.benefit-content h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #1f2937;
}

.benefit-content p {
	color: #6b7280;
	font-size: 1rem;
	line-height: 1.5;
}

.get-started-btn {
	display: inline-block;
	background: var(--secondary-color);
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.get-started-btn:hover {
	background: #c89f3e;
	transform: translateY(-3px);
}

.exceptional-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.exceptional-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.exceptional-image {
		order: 2;
		text-align: center;
	}

	.exceptional-content {
		order: 1;
	}

	.exceptional-content h2 {
		font-size: 2.2rem;
	}
}

/* Payments Section */
.payments-section {
	padding: 6rem 5% 3rem;
	position: relative;
	overflow: hidden;
	background: #ffffff;
}

.payments-badge {
	background-color: #6b21a8;
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 24px;
	font-weight: 500;
}

.payments-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto 4rem;
}

.payments-title {
	font-size: 2.8rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #1f2937;
}

.payments-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: #4b5563;
}

.payments-image img {
	width: 100%;
	border-radius: 1rem;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.payments-decoration {
	position: absolute;
	width: 160px;
	height: 160px;
	background: linear-gradient(135deg, #ff1493, #9932cc);
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	opacity: 0.15;
	z-index: -1;
	top: 20%;
	left: -80px;
}

/* Payment Channels Section */
.channels-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 0 4rem;
}

.channels-title {
	font-size: 2rem;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: #1f2937;
	position: relative;
	display: inline-block;
}

.channels-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 3px;
	background: #6b21a8;
}

.channels-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 3rem;
	color: #4b5563;
	max-width: 80%;
}

.payment-gateway {
	background: #f9fafb;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.gateway-header {
	background: #6b21a8;
	color: white;
	padding: 1.5rem 2rem;
}

.gateway-header h3 {
	margin: 0;
	font-size: 1.5rem;
}

.gateway-header p {
	margin: 0.5rem 0 0;
	opacity: 0.9;
}

.gateway-content {
	padding: 3rem 0;
	text-align: center;
	background-color: #f8f5ff;
}

.momo-image {
	max-width: 80%;
	margin: 0 auto;
}

@media (max-width: 992px) {
	.payments-container {
		grid-template-columns: 1fr;
	}

	.payments-title {
		font-size: 2.2rem;
	}

	.channels-description {
		max-width: 100%;
	}
}

/* FAQ Section */
.faq {
	padding: 4rem 5%;
	background: var(--gray-100);
}

.faq h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
}

.faq-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
}

/* Invoice Templates Section */
.invoice-templates {
	padding: 4rem 5%;
}

.templates-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.template-info h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.template-preview {
	border-radius: 1rem;
	overflow: hidden;
	background: var(--gray-200);
	min-height: 300px;
}

/* Contact Section */
.contact {
	padding: 4rem 5%;
	background: var(--primary-color);
	color: white;
	text-align: center;
}

.contact h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.contact-content {
	max-width: 600px;
	margin: 0 auto;
}

.contact-form {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
	padding: 1rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	background: white;
	color: var(--primary-color);
	padding: 1rem;
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.6s ease;
}

.submit-btn:hover::after {
	left: 100%;
}

.submit-btn:hover {
	background: var(--gray-100);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
	.story-content,
	.templates-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

@media (max-width: 768px) {
	.features-grid {
		grid-template-columns: 1fr;
	}

	.section-header h2,
	.exceptional-features h2,
	.payments h2,
	.faq h2,
	.contact h2 {
		font-size: 2rem;
	}
}

/* About Section */
.about {
	background-color: #4b0082;
	color: white;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.about-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.about-header h2 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 24px;
}

.about-content {
	max-width: 1200px;
	margin: 80px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.about-title .badge {
	background-color: #6b0f9c;
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 24px;
}

.about-title h2 {
	font-size: 36px;
	line-height: 1.3;
}

.about-title .highlight {
	color: #9b4dca;
}

.about-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.about-images img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.about-images img:first-child {
	grid-column: span 2;
	height: 300px;
}

.about-images img:not(:first-child) {
	height: 200px;
}

.about::before {
	content: "";
	position: absolute;
	left: 5%;
	top: 20%;
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, #ff69b4, #9b4dca);
	border-radius: 50%;
	opacity: 0.2;
}

.about::after {
	content: "";
	position: absolute;
	right: 10%;
	bottom: 30%;
	width: 120px;
	height: 120px;
	background: linear-gradient(45deg, #9b4dca, #4b0082);
	border-radius: 50%;
	opacity: 0.1;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

html {
	scroll-behavior: smooth;
}

/* Remove the old about-details, about-values sections */
.about-details,
.about-values {
	display: none;
}

/* Values Grid Styling */
.values-grid {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	position: relative;
	z-index: 2;
}

.value-card {
	background: rgba(107, 15, 156, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	transition: transform 0.3s ease;
}

.value-card:hover {
	transform: translateY(-10px);
	background: rgba(107, 15, 156, 0.4);
}

.value-card h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: white;
	position: relative;
	padding-bottom: 15px;
}

.value-card h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
}

.value-card p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-size: 16px;
}

/* Wave decoration */
.wave-decoration {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E")
		repeat-x;
	background-size: 1440px 100px;
	opacity: 0.1;
	z-index: 1;
}

@media (max-width: 1024px) {
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.values-grid {
		grid-template-columns: 1fr;
	}

	.value-card {
		padding: 30px 20px;
	}
}

/* Clean up animation styles */
.banner-text.animate__animated,
.banner-description.animate__animated {
	--animate-duration: 3s;
	animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}

.banner-text.animate__slideInLeft,
.banner-description.animate__slideInLeft {
	opacity: 1;
}

/* Remove all conflicting animation styles */
.animate__slideInRight,
.animate__slideInLeft {
	--animate-duration: 3s;
}

/* Credit Section Styles */
.credit-section {
	padding: 6rem 5% 3rem;
	position: relative;
	overflow: hidden;
}

.credit-badge {
	background-color: var(--primary-color);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 24px;
	font-weight: 500;
}

.credit-container {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.credit-title {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.credit-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: #4b5563;
}

.credit-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.btn-primary {
	background: #ff1493;
	color: white;
	padding: 0.8rem 1.8rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: #e00080;
	transform: translateY(-3px);
}

.btn-secondary {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	padding: 0.8rem 1.8rem;
}

.credit-image {
	position: relative;
}

.credit-image img {
	width: 100%;
	border-radius: 20px;
	position: relative;
	z-index: 2;
}

.credit-decoration {
	position: absolute;
	width: 120%;
	height: 120%;
	background: var(--primary-color);
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	top: -10%;
	right: -10%;
	z-index: 1;
}

.wave-divider {
	height: 150px;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f3f4f6' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
	margin-top: 3rem;
}

/* ABC Process Section */
.abc-process {
	padding: 5rem 5%;
	background: #f9fafb;
	position: relative;
	overflow: hidden;
}

.abc-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.abc-highlight {
	background: linear-gradient(to right, #ff1493, #9932cc, #4b0082);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 700;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.process-card {
	background: var(--primary-color);
	color: white;
	padding: 2.5rem 2rem;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

.process-card:hover {
	transform: translateY(-10px);
}

.process-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.process-card p {
	opacity: 0.9;
	line-height: 1.6;
}

.decoration-corner {
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff1493, transparent);
	opacity: 0.5;
	z-index: 1;
}

/* Updated Exceptional Features Section */
.exceptional-features {
	padding: 6rem 5%;
	position: relative;
}

.exceptional-container {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.exceptional-features h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

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

.feature-card {
	padding: 2rem;
	background: white;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.feature-card i {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.feature-card h3 {
	margin-bottom: 1rem;
}

.exceptional-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.credit-container,
	.exceptional-container {
		grid-template-columns: 1fr;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.credit-title {
		font-size: 2.2rem;
	}
}

/* Business Management Sections */
.business-management-section {
	padding: 0 5% 4rem;
	position: relative;
	background-color: #faf8ff;
	overflow: hidden;
}

.wave-divider-top {
	height: 150px;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,224C96,224,192,224,288,208C384,192,480,160,576,165.3C672,171,768,213,864,218.7C960,224,1056,192,1152,160C1248,128,1344,96,1392,80L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
	margin-bottom: 2rem;
}

.wave-divider-bottom {
	height: 150px;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
	margin-top: 3rem;
}

.business-badge {
	background-color: #6b21a8;
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	margin: 12px 0 24px;
	font-weight: 500;
}

.business-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto 6rem;
}

.business-container.reverse {
	grid-template-columns: 1fr 1fr;
}

.business-title {
	font-size: 2.8rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #1f2937;
}

.business-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: #4b5563;
}

.business-image img {
	width: 100%;
	border-radius: 1rem;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: white;
	padding: 1.5rem 1rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-5px);
}

.feature-item i {
	font-size: 1.5rem;
	color: #6b21a8;
	margin-bottom: 0.75rem;
}

.feature-item span {
	font-weight: 500;
	color: #1f2937;
}

/* Invoice Section */
.invoice-section {
	background: white;
	border-radius: 1.5rem;
	padding: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.invoice-container {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 3rem;
	align-items: center;
}

.invoice-title {
	font-size: 2.2rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #1f2937;
}

.invoice-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: #4b5563;
}

.invoice-benefits {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.invoice-benefits li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	font-size: 1.05rem;
}

.invoice-benefits li i {
	color: #10b981;
	margin-right: 1rem;
}

.template-btn {
	display: inline-block;
	background: #6b21a8;
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.template-btn:hover {
	background: #8b5cf6;
	transform: translateY(-3px);
}

.invoice-image img {
	width: 100%;
	border-radius: 1rem;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
	.business-container,
	.business-container.reverse,
	.invoice-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.business-image {
		order: 2;
	}

	.business-content {
		order: 1;
	}

	.business-title {
		font-size: 2.2rem;
	}

	.business-features {
		grid-template-columns: 1fr;
	}

	.invoice-section {
		padding: 2rem;
	}
}

/* Pricing Section */
.pricing-section {
	padding: 6rem 5% 8rem;
	background-color: #f9fafb;
	position: relative;
}

/* Referrals Section */
.referrals {
	padding: 5rem 5%;
	background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.referrals-container {
	max-width: 1100px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #eee;
	border-radius: 1.25rem;
	padding: 2.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.referrals-container.split {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2rem;
	align-items: center;
	text-align: left;
}

.referral-image img {
	width: 100%;
	height: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 1rem;
}
.referral-copy h2 {
	margin-bottom: 0.75rem;
}
.referral-copy p {
	margin-bottom: 1rem;
}
.referral-primary {
	background: var(--secondary-color);
	color: #fff;
	border: none;
	border-radius: 0.75rem;
	padding: 1rem 1.5rem;
	font-weight: 800;
}

.referrals-container h2 {
	font-size: 2.2rem;
	margin-bottom: 0.75rem;
}

.referrals-container p {
	color: #4b5563;
	margin-bottom: 1.5rem;
}

.referral-form .form-grid {
	display: grid;
	grid-template-columns: 2fr 2fr 1.8fr 1.4fr;
	gap: 1rem;
	align-items: center;
}

.referral-form input,
.referral-form select {
	padding: 0.9rem 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	background: #f9fafb;
}

.referral-form .submit-btn {
	background: var(--secondary-color);
	color: #fff;
	border-radius: 0.75rem;
	padding: 0.9rem 1.25rem;
	border: none;
	cursor: pointer;
}

.referral-form .tiny {
	font-size: 0.9rem;
	color: #6b7280;
	margin-top: 0.75rem;
}

/* Modal */
.referral-modal {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}
.referral-modal.show {
	display: block;
}
.referral-modal.show ~ body {
	overflow: hidden;
}
.referral-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	z-index: 1000;
}
.referral-modal-content {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	width: min(560px, 92vw);
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	z-index: 1001;
}

/* Mobile modal positioning - avoid navbar overlap */
@media (max-width: 768px) {
	.referral-modal-content {
		top: 55%;
		max-height: 85vh;
		overflow-y: auto;
	}
}
.referral-modal .modal-close {
	position: absolute;
	right: 1rem;
	top: 0.6rem;
	background: transparent;
	border: 0;
	font-size: 1.6rem;
	cursor: pointer;
}
.referral-modal .referral-form {
	display: grid;
	gap: 0.9rem;
	margin-top: 1rem;
}
.referral-modal .referral-form input,
.referral-modal .referral-form select {
	padding: 0.9rem 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.7rem;
	background: #f9fafb;
}
.referral-modal .submit-btn {
	background: var(--secondary-color);
	color: #fff;
	border: 0;
	padding: 0.9rem 1.25rem;
	border-radius: 0.75rem;
	cursor: pointer;
}

@media (max-width: 900px) {
	.referrals-container.split {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.referral-image {
		order: 2;
	}
	.referral-copy {
		order: 1;
	}
	.referral-copy h2 {
		margin-bottom: 0.75rem;
	}
	.referral-copy p {
		margin-bottom: 1rem;
	}
}

@media (max-width: 900px) {
	.referral-form .form-grid {
		grid-template-columns: 1fr;
	}
}

.pricing-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
}

.pricing-header h2 {
	font-size: 3rem;
	margin-bottom: 0.5rem;
	color: #1f2937;
}

.pricing-header h3 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #1f2937;
}

.pricing-header p {
	font-size: 1.1rem;
	color: #6b7280;
}

/* Billing Toggle */
.billing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.billing-option {
	font-size: 1rem;
	font-weight: 500;
	color: #4b5563;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.discount {
	background: var(--secondary-color);
	color: white;
	padding: 0.2rem 0.5rem;
	border-radius: 12px;
	font-size: 0.75rem;
	white-space: nowrap;
}

.toggle {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
}

input:checked + .slider {
	background-color: #6b21a8;
}

input:focus + .slider {
	box-shadow: 0 0 1px #6b21a8;
}

input:checked + .slider:before {
	transform: translateX(26px);
}

.slider.round {
	border-radius: 24px;
}

.slider.round:before {
	border-radius: 50%;
}

/* Pricing Plans */
.pricing-plans {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto 5rem;
}

.pricing-card {
	background: white;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	padding: 2rem;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.popular {
	border: 2px solid #6b21a8;
	box-shadow: 0 8px 24px rgba(107, 33, 168, 0.15);
}

.popular-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--secondary-color);
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

.plan-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.plan-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.plan-icon i {
	font-size: 1.5rem;
	color: #6b21a8;
}

.plan-header h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.plan-header p {
	color: #6b7280;
	font-size: 0.9rem;
}

.plan-price {
	text-align: center;
	margin-bottom: 1.5rem;
}

.plan-price h4 {
	font-size: 2rem;
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 0.5rem;
}

.currency {
	font-size: 1.2rem;
	margin-right: 0.2rem;
}

.period {
	font-size: 1rem;
	color: #6b7280;
	font-weight: normal;
}

.price-note {
	font-size: 0.9rem;
	color: #6b7280;
}

.highlight {
	color: #6b21a8;
	font-weight: 500;
}

.plan-cta {
	display: block;
	text-align: center;
	padding: 0.8rem;
	border-radius: 0.5rem;
	background: white;
	color: #1f2937;
	border: 1px solid #e5e7eb;
	margin-bottom: 1.5rem;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.plan-cta:hover {
	background: #f9fafb;
}

.plan-cta.purple {
	background: #6b21a8;
	color: white;
	border: none;
}

.plan-cta.purple:hover {
	background: #8b5cf6;
}

.plan-features {
	list-style: none;
	padding: 0;
}

.plan-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	font-size: 0.9rem;
	border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
	border-bottom: none;
}

.plan-features .included i {
	color: #10b981;
}

.plan-features .excluded {
	color: #9ca3af;
}

.plan-features .excluded i {
	color: #ef4444;
}

/* Payment Fees Section */
.payment-fees-section {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.payment-fees-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #1f2937;
}

.fees-description {
	font-size: 1.1rem;
	color: #6b7280;
	margin-bottom: 3rem;
}

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

.fees-card {
	background: white;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

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

.fees-header {
	background: #6b21a8;
	color: white;
	padding: 1.5rem;
	text-align: center;
	position: relative;
}

.fees-header h3 {
	font-size: 1.3rem;
	margin-bottom: 3rem;
}

.fees-icon {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fees-icon i {
	font-size: 1.5rem;
	color: #6b21a8;
}

.fees-content {
	padding: 2.5rem 1.5rem 1.5rem;
	text-align: center;
}

.fees-amount {
	font-size: 2rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.fees-content p {
	color: #6b7280;
	margin-bottom: 1.5rem;
}

.fees-details {
	list-style: none;
	padding: 0;
	text-align: left;
}

.fees-details li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f3f4f6;
	font-size: 0.9rem;
}

.fees-details li:last-child {
	border-bottom: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
	.pricing-plans,
	.fees-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.pricing-plans,
	.fees-container {
		grid-template-columns: 1fr;
	}

	.billing-toggle {
		flex-direction: column;
		align-items: center;
		gap: 0.8rem;
	}

	/* Group toggle and option together on mobile - left aligned within centered container */
	.billing-toggle-item {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0.5rem;
		width: auto;
		max-width: 300px;
	}

	.billing-toggle .toggle {
		margin: 0;
		flex-shrink: 0;
	}

	.billing-toggle .billing-option {
		display: inline-block;
		margin: 0;
		text-align: left;
	}

	.pricing-header h2 {
		font-size: 2.2rem;
	}

	.pricing-header h3 {
		font-size: 1.8rem;
	}
}

.plan-description {
	font-size: 0.85rem;
	color: #6b7280;
	padding: 1rem 0 0;
	border-top: 1px solid #f3f4f6;
	margin-top: 1rem;
	line-height: 1.5;
	font-style: italic;
}

.desktop-screen-img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 2rem auto;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	border-radius: 1rem;
}

.desktop-offer-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	margin: 3rem auto;
	max-width: 1200px;
	padding: 2rem 5%;
	background: #faf8ff;
	border-radius: 1.5rem;
	box-shadow: 0 4px 24px rgba(107, 33, 168, 0.04);
}

.desktop-offer-content {
	flex: 1 1 350px;
	min-width: 260px;
	max-width: 500px;
}

.desktop-offer-content h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.desktop-offer-content p {
	font-size: 1.1rem;
	color: #4b5563;
	margin-bottom: 1rem;
}

.download-desktop-btn {
	display: inline-block;
	background: var(--primary-color);
	color: #fff;
	padding: 0.9rem 2.2rem;
	border-radius: 2rem;
	font-weight: 600;
	font-size: 1.1rem;
	text-decoration: none;
	margin-top: 0.5rem;
	box-shadow: 0 2px 8px rgba(107, 33, 168, 0.08);
	transition: background 0.2s, transform 0.2s;
}
.download-desktop-btn:hover {
	background: var(--primary-light);
	transform: translateY(-2px) scale(1.03);
}

@media (max-width: 900px) {
	.desktop-offer-container {
		flex-direction: column;
		gap: 2rem;
		padding: 1.5rem 2%;
	}
	.desktop-offer-content {
		max-width: 100%;
		text-align: center;
	}
	.desktop-screen-img {
		margin: 0 auto;
	}
}

.carousel-controls-inline {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 1.5rem;
}

.carousel-controls-inline .prev-btn,
.carousel-controls-inline .next-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	font-size: 1.1rem;
}
.carousel-controls-inline .prev-btn:hover,
.carousel-controls-inline .next-btn:hover {
	background: var(--primary-light);
}

.carousel-controls-inline .carousel-dots {
	display: flex;
	gap: 0.4rem;
}

.carousel-controls-inline .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gray-200);
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.carousel-controls-inline .dot.active {
	background: var(--primary-color);
}

@media (max-width: 600px) {
	.store-buttons {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.7rem;
	}
	.carousel-controls-inline {
		margin-left: 0;
		margin-top: 0.7rem;
		width: 100%;
		justify-content: flex-start;
	}
}

.type-cursor {
	display: inline-block;
	width: 1ch;
	animation: blink-cursor 0.8s steps(1) infinite;
	color: var(--primary-color);
	font-weight: bold;
}
@keyframes blink-cursor {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.slide-in-right {
	animation: slideInRightCustom 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideInRightCustom {
	from {
		opacity: 0;
		transform: translateX(80px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

.hero-image {
	width: 100%;
	max-width: 95vw;
	margin: 0 auto;
	padding: 0 2.5vw;
}

.banner-desktop-img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-radius: 1rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	/* Image quality optimization for screenshots */
	image-rendering: high-quality;
	image-rendering: -webkit-optimize-contrast;
	-ms-interpolation-mode: bicubic;
	/* Prevent blurriness */
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Alternative approach using background image for maximum quality */
.hero-image-bg {
	width: 100%;
	max-width: 95vw;
	height: 60vh;
	min-height: 400px;
	margin: 0 auto;
	padding: 0 2.5vw;
	background-image: url("../img/desktop_screen.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 1rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.banner-title {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
	line-height: 1.2;
}
@media (max-width: 900px) {
	.hero-image {
		max-width: 98vw;
		padding: 0 1vw;
	}

	.banner-desktop-img {
		max-width: 100%;
		width: 100%;
	}

	.hero-image-bg {
		max-width: 98vw;
		padding: 0 1vw;
		height: 50vh;
		min-height: 300px;
	}

	.banner-title {
		font-size: 2rem;
	}
}

.features-banner.no-bg {
	background: none;
	box-shadow: none;
}

.feature-item.feature-business {
	background: #e0e7ff;
}
.feature-item.feature-payment {
	background: #fbeee6;
}
.feature-item.feature-credit {
	background: #ede9fe;
}

.feature-item {
	border-radius: 1.2rem;
	box-shadow: 0 2px 12px rgba(80, 80, 80, 0.04);
	padding: 2.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 160px;
	position: relative;
}

.coming-soon {
	display: inline-block;
	background: #e9d5ff;
	color: #6b21a8;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 0.7rem;
	padding: 0.15rem 0.7rem;
	margin-left: 0.5rem;
}

.features-banner-wrapper {
	margin-top: 2.5rem;
}

@media (max-width: 900px) {
	.app-stores {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.store-buttons {
		justify-content: center;
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	.app-stores p {
		text-align: center;
		width: 100%;
		font-size: 0.95rem;
	}
}

@media (max-width: 900px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
@media (max-width: 600px) {
	.about-images {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 1.2rem !important;
		width: 100% !important;
		margin-top: 1.5rem !important;
	}
	.about-images img {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		border-radius: 18px !important;
		height: auto !important;
		object-fit: cover !important;
		margin: 0 !important;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	}
}

.site-footer {
	background: linear-gradient(90deg, #4b0082 60%, #9b4dca 100%);
	color: #fff;
	padding: 2.5rem 0 1.2rem 0;
	margin-top: 3rem;
	font-size: 1rem;
}

@media (max-width: 900px) {
	.site-footer {
		padding: 1.5rem 0 1rem 0;
		margin-top: 2rem;
	}
}
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2.5rem;
	padding: 0 2rem;
}
.footer-brand {
	flex: 1 1 220px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.7rem;
}
.footer-logo {
	width: 120px;
	margin-bottom: 0.5rem;
}
.footer-links,
.footer-contact,
.footer-social {
	flex: 1 1 180px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.footer-links a {
	color: #fff;
	text-decoration: underline;
	font-weight: 500;
	margin-bottom: 0.2rem;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: #ffe066;
}
.footer-contact i {
	margin-right: 0.5rem;
	color: #ffe066;
}
.footer-contact a {
	color: #fff;
	text-decoration: underline;
}
.footer-social {
	flex-direction: row;
	gap: 1.2rem;
	align-items: center;
	margin-top: 0.5rem;
}
.footer-social a {
	color: #fff;
	font-size: 1.5rem;
	transition: color 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
	color: #ffe066;
	background: rgba(255, 224, 102, 0.1);
	transform: translateY(-2px);
}
.footer-bottom {
	text-align: center;
	margin-top: 2.5rem;
	font-size: 0.98rem;
	color: #e0d7f7;
}
@media (max-width: 900px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		gap: 0.25rem;
		padding: 0 1rem;
	}
	.footer-brand,
	.footer-links,
	.footer-contact,
	.footer-social {
		align-items: center;
		text-align: center;
		margin-bottom: 0;
	}
	.footer-brand {
		gap: 0.1rem;
	}
	.footer-links,
	.footer-contact {
		gap: 0.05rem;
	}
	.footer-logo {
		margin: 0 auto 0.05rem auto;
		width: 90px;
	}
	.footer-bottom {
		margin-top: 0.4rem;
		padding-top: 0.3rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.footer-social {
		gap: 0.6rem;
		margin-top: 0.1rem;
		justify-content: center;
	}

	.footer-social a {
		width: 35px;
		height: 35px;
		font-size: 1.1rem;
	}
}

.bold-btn {
	font-weight: 800;
	padding: 1rem 1.5rem;
}

.about-hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 40px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}
.about-hero-text h2 {
	font-size: 48px;
	line-height: 1.2;
	margin: 8px 0 16px;
}
.about-hero-text p {
	margin-bottom: 14px;
}
.about-hero-text .badge {
	background-color: #6b0f9c;
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
}
.about-hero-images {
	position: relative;
	display: grid;
	gap: 16px;
}
.about-hero-img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.about-hero-img-top {
	transform: translateY(10px);
}
.about-hero-img-bottom {
	transform: translateX(20px);
}

@media (max-width: 1024px) {
	.about-hero {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: left;
	}
	.about-hero-images {
		order: 2;
	}
	.about-hero-text {
		order: 1;
	}
}
@media (max-width: 768px) {
	.about-hero-text h2 {
		font-size: 2.2rem;
	}
	.about-hero-img-top {
		transform: none;
	}
	.about-hero-img-bottom {
		transform: none;
	}
}

.demo-btn {
	background: var(--secondary-color);
	color: #fff;
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	font-weight: 600;
}

/* Partner button variant with slightly different styling */
.partner-btn {
	background: var(--primary-color);
	margin-right: 0.5rem;
}

/* Mobile Menu Button - Base Styles */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 8px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.mobile-menu-btn span {
	display: block !important;
	width: 24px !important;
	height: 2px !important;
	background: #333 !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	transform-origin: center !important;
	border: none !important;
	border-radius: 1px !important;
	position: relative !important;
}

/* Ensure only 3 spans exist */
.mobile-menu-btn span:nth-child(n + 4) {
	display: none !important;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px) !important;
	background: #333 !important;
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0 !important;
	transform: scale(0) !important;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px) !important;
	background: #333 !important;
}

@media (max-width: 768px) {
	.demo-btn {
		width: 100%;
	}

	.partner-btn {
		margin-right: 0;
		margin-bottom: 0.5rem;
	}

	.banner-description {
		font-size: 1rem;
		line-height: 1.6;
	}
}
