:root {
	/* --primary: #3a5bd9; */
	--primary: #1e3a5f;
	--primary-dark: #2a49c2;
	--secondary: #3a5bd9;
	--bright-blue: #3d66ff;
	--white: #ffffff;
	--light-gray: #f8f9fa;
	--dark-gray: #2d3436;
	--text-light: #636e72;
	--border: #e9ecef;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding-top: 20px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--dark-gray);
}

.landing-page {
	min-height: 100vh;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.hero-section .container {
	max-width: none;
	padding: 0;
	display: flex;
	flex-direction: column;
}

/* Header */
.main-header {
	background: var(--primary);
	padding: 12px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	line-height: 14px;
	transition: all 0.3s ease;
}

.main-header.scrolled {
	/* background: rgba(244, 244, 244, 0.9); */
	background-color: #f4f4f463;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.main-header.scrolled .ready {
	color: #3a5bd9;
}

.main-header.scrolled .nav-link,
.main-header.scrolled .logo,
.main-header.scrolled .btn-signin {
	color: black !important;
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 20px;
	font-weight: 700;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.nav-center {
	display: flex;
	gap: 32px;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}

.nav-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: white;
}

.nav-right {
	display: flex;
	gap: 16px;
	align-items: center;
}

.btn-signin {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	padding: 12px 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.08);
}

.btn-signin:hover {
	color: white;
	background: rgba(255, 255, 255, 0.1);
}

.btn {
	display: inline-block;
	padding: 12px 20px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-family: inherit;
}

.btn-demo {
	background: var(--bright-blue);
	color: #f5f5f5;
	padding: 12px 20px;
	font-weight: 600;
}

.btn-demo:hover {
	background: var(--bright-blue);
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--bright-blue);
	color: #f5f5f5;
	border: 2px solid var(--bright-blue);
}

.btn-primary:hover {
	background: var(--bright-blue);
	border-color: var(--bright-blue);
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}

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

.btn-large {
	padding: 12px 24px;
	font-size: 16px;
	line-height: 15px;
	font-weight: 600;
}

.btn-block {
	width: 100%;
}

/* Hero Section */
.hero-section {
	background: var(--primary);
	color: white;
	padding: 40px 0 80px 0;
	position: relative;
	overflow: hidden;
	min-height: auto;
}

@media (max-width: 768px) {
	.hero-section {
		padding-top: 10px;
	}

	.hero-section .container {
		padding-top: 0;
	}
}

.container {
	width: 95%;
}

.hero-tagline {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	margin: 40px auto 30px auto;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-decoration: none;
}

.hero-tagline:hover .tagline-arrow {
    transform: translateX(4px); /* Move the arrow 10px to the right */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.tagline-arrow {
    display: inline-block;
    transform: translateX(0); /* Initial position */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.tagline-badge {
    /* background-color: rgba(255, 255, 255, 0.2); */
	background-color: #445db6;
    display: inline-block;
    padding: 1px 9px;
    margin-right: 10px;
    border-radius: 15px;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.hero-content-wrapper {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-content {
	max-width: 100%;
}

.hero-visual {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
}

.world-map-container {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 900px;
	z-index: 1;
	opacity: 0.15;
}

.world-map {
	width: 100%;
	height: auto;
}

.map-dots circle {
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

.hero-title {
	font-size: 54px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 24px;
	color: white;
	letter-spacing: -0.02em;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.hero-highlight {
	font-style: italic;
	color: white;
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
}

.hero-ratings {
	color: #cacacaf2;
	display: flex;
	align-items: center;
	gap: 32px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.rating-stars {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rating-badge {
	background: #ea4335;
	filter: grayscale(0.5);
	color: white;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
}

.rating-text {
	font-weight: 600;
	color: white;
	font-size: 16px;
}

.rating-reviews {
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
}

.explore-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 2px;
}

.explore-link:hover {
	color: white;
	border-bottom-color: white;
}

.hero-signup {
	display: flex;
	gap: 12px;
	align-items: stretch;
	max-width: 560px;
	background: rgba(255, 255, 255, 0.08);
	padding: 8px;
	border-radius: 12px;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.email-input {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: white;
	font-size: 16px;
	line-height: 14px;
	font-weight: 500;
}

.email-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.email-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.1);
}

.hero-mockups {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0 0 0;
	margin-top: 20px;
	width: 100%;
	transition: transform 0.3s ease-out;
	transform-origin: center top;
}

.hero-mockup.desktop-mockup {
	position: relative;
	z-index: 2;
}

.hero-mockup.mobile-mockup {
	position: absolute;
	right: 0%;
	top: 20%;
	z-index: 3;
}

.mockup-frame {
	overflow: hidden;
}

.hero-mockup.desktop-mockup .mockup-frame {
	max-width: 900px;
	width: 60vw;
	aspect-ratio: 16 / 10;
	position: relative;
}

.hero-mockup.mobile-mockup .mockup-frame {
	/* Width is 10% smaller than desktop mockup for better overlap */
	width: calc(60vw * 0.9 * 9 / 16);
	max-width: calc(900px * 0.9 * 9 / 16);
	min-width: 160px;
	/* Height is 10% smaller than desktop mockup height */
	height: calc(60vw * 10 / 16 * 0.9);
	max-height: calc(900px * 10 / 16 * 0.9);
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.3));
}

/* Social Proof */
.social-proof {
	padding: 60px 0;
	background: var(--primary);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	text-align: center;
}

.social-proof-text {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.company-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.logo-item {
	font-size: 18px;
	font-weight: 600;
	opacity: 0.7;
	color: rgba(255, 255, 255, 0.7);
	text-transform: lowercase;
	letter-spacing: 0.5px;
}

.logo-item:first-child {
	color: #ff6b6b;
}

.logo-item:nth-child(4) {
	color: #95bf47;
}

/* Benefits Section */
.benefits-overview {
	padding: 120px 0;
	background: var(--white);
}

.section-header {
	max-width: 640px;
	margin: 0 auto 80px 0;
	text-align: left;
}

.section-label {
	font-size: 12px;
	font-weight: 500;
	color: #8b8b8b;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
}

.section-title {
	font-size: 56px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--dark-gray);
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.section-description {
	font-size: 18px;
	line-height: 1.6;
	color: #6b6b6b;
	max-width: 580px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1280px;
	margin: 0 auto;
}

.product-card {
	border-radius: 12px;
	padding: 20px 20px 20px 0px;
	border: none;
	transition: all 0.2s ease;
	display: flex;
	align-items: flex-start;
	position: relative;
	cursor: pointer;
	min-height: 120px;
	gap: 16px;
}

/* .product-card:hover {
    background: #EFEFEF;
    transform: translateY(-2px);
    border: 1px solid var(--primary);
} */

.product-card:hover .product-arrow {
	transform: translateX(2px);
}

.product-icon {
	font-size: 24px;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 2px;
	background: #f5f5f5;
	width: 80px;
	height: 80px;
	display: flex;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
}

.product-icon img {
	width: 25px;
	height: 25px;
	object-fit: contain;
	filter: brightness(0.4);
}

.product-content {
	flex: 1;
	min-width: 0;
}

.product-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 4px;
	color: var(--dark-gray);
	line-height: 1.3;
}

.product-description {
	color: #6b6b6b;
	line-height: 1.4;
	font-size: 15px;
	margin: 0;
}

.product-arrow {
	font-size: 16px;
	color: #8b8b8b;
	transition: all 0.2s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Feature Sections */
.main-features {
	padding: 120px 0;
	background: var(--light-gray);
}

.feature-highlight {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
	margin-bottom: 200px;
}

.feature-highlight:last-child {
	margin-bottom: 0;
}

.feature-highlight.reverse {
	direction: rtl;
}

.feature-highlight.reverse > * {
	direction: ltr;
}

.feature-content h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 40px;
	color: var(--dark-gray);
	letter-spacing: -0.01em;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.feature-item h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--dark-gray);
}

.feature-item p {
	color: var(--text-light);
	line-height: 1.6;
	font-size: 16px;
}

.feature-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.feature-image.bordered-image {
	transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
	transition: transform 0.4s ease;
	/* filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.4)); */
}

.feature-image.bordered-image:hover {
	transform: perspective(1200px) rotateY(-6deg) rotateX(1deg);
}

.feature-image.bordered-image img {
	border: 5px solid #20395f;
	border-radius: 16px;
}

.feature-image.bordered-image.storefront-image {
	justify-self: flex-start;
}

.feature-image.bordered-image.storefront-image img {
	height: 70vw;
	width: auto;
}

/* .hero-mockup {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    border: 10px solid #334a6d73;
    border-radius: 40px;
    filter: brightness(1.1) contrast(1.1) saturate(1.05);
} */

/* Testimonials */
.testimonials {
	padding: 120px 0;
	background: var(--white);
}

.testimonials-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 80px;
	margin-top: 80px;
}

.testimonial-main {
	background: var(--light-gray);
	border-radius: 20px;
	padding: 64px;
	border: 1px solid var(--border);
}

.testimonial-text.large {
	font-size: 28px;
	line-height: 1.4;
	color: var(--dark-gray);
	margin-bottom: 40px;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.testimonial-author h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--dark-gray);
	margin-bottom: 4px;
}

.testimonial-author p {
	color: var(--text-light);
	font-size: 16px;
}

.testimonials-sidebar {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.testimonial-small {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s ease;
}

.testimonial-small:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.testimonial-small p {
	color: var(--dark-gray);
	font-weight: 500;
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.5;
}

.testimonial-small cite {
	color: var(--text-light);
	font-size: 14px;
	font-style: normal;
}

/* Pricing Section */
.pricing-section {
	display: flex;
	padding: 120px 0;
	background: var(--light-gray);
}

.savings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 48px;
	margin: 80px 0 100px 0;
}

.savings-item {
	text-align: center;
	padding: 48px 32px;
}

.savings-icon {
	font-size: 48px;
	margin-bottom: 24px;
	display: block;
}

.savings-item h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dark-gray);
}

.savings-item p {
	color: var(--text-light);
	line-height: 1.6;
	font-size: 16px;
}

.pricing-plans {
	/* background: var(--white); */
	border-radius: 24px;
	/* padding: 80px; */
	/* box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1); */
}

.pricing-title {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--dark-gray);
}

.pricing-subtitle {
	text-align: center;
	color: var(--text-light);
	margin-bottom: 64px;
	font-size: 18px;
}

/* Pricing Toggle */
.pricing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 60px;
}

.toggle-label {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-light);
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.toggle-label.active {
	color: var(--dark-gray);
	font-weight: 600;
}

.save-badge {
	background: #22c55e;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}

.toggle-switch {
	width: 56px;
	height: 28px;
	background: var(--border);
	border-radius: 24px;
	position: relative;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.toggle-switch:hover {
	background: #d1d5db;
}

.toggle-slider {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 24px;
	height: 24px;
	background: white;
	border-radius: 50%;
	transition: transform 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-slider.yearly {
	transform: translateX(28px);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.pricing-card {
	background: var(--white);
	border: 2px solid var(--border);
	border-radius: 16px;
	padding: 40px;
	position: relative;
	transition: all 0.3s ease;
	padding-bottom:0px;
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
}

.pricing-card.featured {
	border-color: var(--primary);
	transform: scale(1.05);
	box-shadow: 0 20px 80px rgba(58, 91, 217, 0.2);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: white;
	padding: 8px 20px;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 600;
}

.pricing-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border);
}

.pricing-header h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dark-gray);
}

.price-display {
	margin-bottom: 8px;
}

.price {
	font-size: 40px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
}

.period {
	font-size: 16px;
	color: var(--text-light);
	margin-left: 4px;
}

.pricing-header p {
	color: var(--text-light);
	font-size: 16px;
	margin-top: 40px;
	margin-bottom: 30px;
}

.features-list {
	list-style: none;
	margin-bottom: 40px;
}

.features-list li {
	padding: 8px 0;
	color: var(--text-light);
	position: relative;
	padding-left: 28px;
	font-size: 16px;
}

.features-list li::before {
	content: '✓';
	color: var(--primary);
	font-weight: bold;
	position: absolute;
	left: 0;
	font-size: 16px;
}

/* Final CTA */
.final-cta {
	padding: 120px 0;
	background: var(--dark-gray);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 24px;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.cta-content p {
	font-size: 16px;
	margin-bottom: 48px;
	opacity: 0.9;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	margin-bottom: 64px;
}

.cta-guarantee {
	margin-top: 20px;
	opacity: 0.8;
	font-size: 14px !important;
}

.trust-indicators {
	display: flex;
	justify-content: center;
	gap: 64px;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0.8;
	font-size: 16px;
}

.trust-icon {
	font-size: 24px;
}

/* POS Callout Section */
.pos-callout-section {
	padding: 80px 0;
	/* background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%); */
	color: white;
	margin: 80px 0;
}

.pos-callout-content {
	/* background: var(--dark-gray); */
	color:black;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 44px;
	align-items: center;
    border-radius: 16px;
    padding: 48px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow:hidden;
}

.pos-callout-image-desktop {

}
.pos-callout-image-desktop img {
	width:130%;
	height:auto;
	border-radius:12px;
	transform: perspective(1200px) rotateY(324deg) rotateX(14deg);
}

.pos-callout-image-mobile {
	display: none;
}
.pos-callout-image-mobile img {
	width:100%;
	height:auto;
	border-radius:12px;
}

.pos-callout-text h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 24px;
	color: black;
}

.pos-callout-text p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 32px;
	opacity: 0.95;
}

.pos-callout-features {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pos-feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.1);
	padding: 20px 24px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 16px;
	font-weight: 500;
}

.pos-feature-icon {
	font-size: 28px;
}

/* Footer */
.main-footer {
	padding: 80px 0 32px 0;
	background: var(--dark-gray);
	color: white;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 64px;
	margin-bottom: 48px;
}

.footer-section h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 24px;
	color: white;
}

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

.footer-section li {
	margin-bottom: 16px;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
	font-size: 16px;
}

.footer-section a:hover {
	color: white;
}

.footer-logo {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 24px;
	color: white;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	font-size: 16px;
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid #4a5568;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 45px;
		line-height: 1.1;
	}

	.hero-mockup.desktop-mockup .mockup-frame {
		width: 70vw;
		max-width: 600px;
		aspect-ratio: 16 / 10;
	}

	.hero-mockup.mobile-mockup .mockup-frame {
		width: calc(70vw * 0.9 * 9 / 16);
		max-width: calc(600px * 0.9 * 9 / 16);
		height: calc(70vw * 10 / 16 * 0.9);
		max-height: calc(600px * 10 / 16 * 0.9);
	}

	.feature-highlight {
		gap: 60px;
		margin-bottom: 120px;
	}

	.feature-content h2 {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.nav-center {
		display: none;
	}

	.hero-title {
		font-size: 40px;
	}

	.hero-tagline {
		font-size: 12px;
		padding: 6px 16px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.world-map-container {
		opacity: 0.3;
	}

	.hero-mockup.mobile-mockup {
		/* position: relative; */
		left: -50px;
		top: 50px;
		margin-top: 20px;
		/* border: ; */
	}

	.hero-mockup.desktop-mockup .mockup-frame {
		width: 85vw;
		max-width: 100%;
		aspect-ratio: 16 / 10;
	}

	.hero-mockup.mobile-mockup .mockup-frame {
		width: calc(85vw * 0.8 * 9 / 16);
		max-width: calc(100% * 0.8 * 9 / 16);
		height: calc(85vw * 10 / 16 * 0.8);
		max-height: calc(100% * 10 / 16 * 0.8);
		min-width: 96px;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.product-card {
		padding: 20px;
		min-height: 100px;
		gap: 12px;
	}

	.product-icon {
		font-size: 20px;
	}

	.product-title {
		font-size: 16px;
	}

	.product-description {
		font-size: 14px;
	}

	.section-header {
		text-align: center;
		margin-bottom: 60px;
	}

	.feature-highlight {
		grid-template-columns: 1fr;
		gap: 48px;
		text-align: center;
		margin-bottom: 100px;
	}

	.feature-highlight.reverse {
		direction: ltr;
	}

	.feature-image.bordered-image.storefront-image {
		margin: 0px auto;
	}

	.feature-image.bordered-image.storefront-image img {
		height: auto;
	}

	.feature-image.bordered-image img,
	.feature-image.bordered-image.storefront-image img {
		width: 80%;
		margin: 0px auto;
	}

	.testimonials-wrapper {
		grid-template-columns: 1fr;
		gap: 48px;
		margin-top:20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.trust-indicators {
		gap: 32px;
	}

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

	.savings-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 31px;
	}

	/* 
    .container {
        padding: 0 20px;
    } */

	.company-logos {
		gap: 24px;
	}

	.logo-item {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.btn-large {
		padding: 14px 20px;
		font-size: 14px;
	}

	.product-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.product-card {
		padding: 18px;
		min-height: 90px;
		gap: 12px;
	}

	.pos-callout-section {
		margin: 0px 0;
		padding-top:0px;
		padding-bottom:0px;
	}
	.pos-callout-content {
		display: flex;
		flex-direction: column;
		gap: 32px;
		padding:0px 16px;
	}

	.pos-callout-image-desktop {
		display: none;
	}

	.pos-callout-image-mobile {
		display: block;
		margin: 24px 0;
	}

	.pos-callout-image-mobile img {
		transform: perspective(1200px) rotateY(346deg) rotateX(19deg);
	}

	.pos-callout-text h2 {
		font-size: 28px;
	}

	.product-icon {
		font-size: 18px;
	}

	.product-title {
		font-size: 16px;
	}

	.product-description {
		font-size: 14px;
	}

	.testimonial-main {
		padding: 40px 24px;
	}

	/* .pricing-plans {
		padding: 48px 24px;
	} */

	.testimonial-text.large {
		font-size: 22px;
	}

	.container {
		padding: 0 16px;
	}
}

/* Business Types Section */
.business-types-section {
	padding: 100px 0;
	background: white;
}

.business-types-header {
	text-align: center;
	margin-bottom: 80px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.business-types-header h2 {
	font-size: 48px;
	font-weight: 700;
	color: var(--dark-gray);
	margin-bottom: 24px;
	line-height: 1.2;
}

.business-types-header .highlight {
	color: var(--bright-blue);
}

.business-types-header p {
	font-size: 18px;
	color: var(--text-light);
	line-height: 1.6;
}

.business-types-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.business-type-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	filter: saturate(0);
}

.business-type-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	filter: saturate(1);
}

.business-image {
	height: 450px;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
}

.business-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.business-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(4, 15, 22, 0.72) 68.9189%, rgb(0, 0, 0) 100%);
	color: white;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	transition: opacity 0.3s ease;
}

.business-title h3 {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 0;
	letter-spacing: -1.5px;
}

.business-type-card:hover .business-title {
	opacity: 0;
}

.business-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(4, 15, 22, 0.72) 68.9189%, rgb(0, 0, 0) 100%);
	color: white;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	opacity: 0;
	transition: opacity 0.3s ease;
	height: 100%;
}

.business-type-card:hover .business-overlay {
	opacity: 1;
}

.business-overlay h3 {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 16px;
	letter-spacing: -1.5px;
}

.business-overlay p {
	font-size: 16px;
	line-height: 1.4;
	opacity: 0.9;
}

@media (max-width: 1024px) {
	.business-types-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
	
	.business-types-header h2 {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.business-types-section {
		padding: 80px 0;
	}
	
	.business-types-header {
		margin-bottom: 60px;
	}
	
	.business-types-header h2 {
		font-size: 28px;
	}
	
	.business-types-header p {
		font-size: 16px;
	}
	
	.business-types-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	
	.business-image {
		height: 380px;
	}
	
	.business-type-card {
		filter: saturate(1);
	}
	
	.business-title {
		opacity: 0;
	}
	
	.business-overlay {
		padding: 24px 20px;
		opacity: 1;
	}
	
	.business-overlay h3 {
		font-size: 24px;
	}
	
	.business-overlay p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.business-types-grid {
		grid-template-columns: 1fr;
	}
	
	.business-types-header h2 {
		font-size: 24px;
	}
}

/* Contact section */
.contact-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #f8f9fa 100%);
	padding: 80px 0;
}

.contact-header {
	text-align: center;
	margin-bottom: 60px;
}

.contact-header h2 {
	font-size: 48px;
	font-weight: 700;
	color: var(--dark-gray);
	margin-bottom: 20px;
}

.contact-header p {
	font-size: 18px;
	color: var(--text-light);
	line-height: 1.6;
}

.contact-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}

.contact-card {
	background: white;
	border-radius: 16px;
	padding: 48px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.demo-card {
	background: var(--dark-gray);
	color: white;
}

.contact-card h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

.contact-card p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 32px;
	opacity: 0.9;
}

.support-card p {
	color: var(--text-light);
}

.support-email {
	color: var(--bright-blue);
	text-decoration: none;
	font-weight: 500;
}

.support-email:hover {
	text-decoration: underline;
}

.contact-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	background: none;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.demo-btn {
	color: rgba(255, 255, 255, 0.9);
}

.demo-btn:hover {
	color: white;
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.whatsapp-btn,
.help-btn {
	color: var(--text-light);
}

.whatsapp-btn:hover,
.help-btn:hover {
	color: var(--dark-gray);
}

/* Footer social links */
.footer-social {
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-social span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);

	font-weight: 500;
}

.footer-social-links {
	display: flex;
	align-items: center;
	/* gap: 12px; */
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--text-light);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	color: var(--dark-gray);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.contact-section {
		padding: 60px 0;
	}

	.contact-header h2 {
		font-size: 36px;
	}

	.contact-header p {
		font-size: 16px;
	}

	.contact-cards {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.contact-card {
		padding: 36px 24px;
	}

	.contact-card h3 {
		font-size: 24px;
	}

	.footer-social {
		justify-content: center;
		margin-top: 20px;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 48px 0;
	}

	.contact-header h2 {
		font-size: 28px;
	}

	.contact-card {
		padding: 24px;
	}

	.contact-card h3 {
		font-size: 20px;
	}
}
