:root {
    --primary: #065f46;
    --primary-light: #10b981;
    --secondary: #0f172a;
    --accent: #10b981;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.6);
    --border: rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--secondary);
}

.logo-crop {
    height: 44px;
    width: 44px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

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

.btn-nav {
    background: var(--secondary);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white !important;
    border: 2px solid transparent;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(16,185,129,0.40);
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(16,185,129,0.55);
    filter: brightness(1.05);
}

/* Hero */
.hero {
    padding: 220px 0 140px;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(209, 250, 229, 0.45) 0%, rgba(236, 253, 245, 0.7) 40%, rgba(248, 250, 252, 1) 100%);
}

.hero-container {
    max-width: 1400px !important;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #ecfdf5;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid #d1fae5;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--secondary);
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 32px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(6, 95, 70, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(6, 95, 70, 0.3);
}

.btn-text {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 40px;
}

.stat-item strong {
    font-size: 1.8rem;
    color: var(--secondary);
    display: block;
}

/* New Google Play Button */
.btn-google-play {
    background: #059669; /* emerald green */
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
}
.btn-google-play:hover {
    background: #047857;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(5, 150, 105, 0.3);
}
.btn-google-play i {
    font-size: 2rem;
}
.btn-play-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}
.btn-play-text span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.btn-play-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

/* New Outline Learn More Button */
.btn-outline-learn {
    background: white;
    color: var(--text-main);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-outline-learn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    border-color: rgba(0,0,0,0.15);
}

/* New Stats Row Styles */
.hero-stats-new {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.stat-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
}
.stat-item-new .stat-icon {
    font-size: 1.3rem;
    color: #059669; /* green icon */
    background: #ecfdf5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.stat-text strong {
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 800;
}
.stat-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* New Trust Bar Styles */
.trust-bar-new {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}
.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.trust-categories {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.trust-cat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}
.trust-cat-item i {
    color: #10b981;
    font-size: 1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Glowing Light Blobs */
.hero-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}
.blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: 10%;
    left: 20%;
    animation: pulse-blob 8s ease-in-out infinite alternate;
}
.blob-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #0284c7 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation: pulse-blob 12s ease-in-out infinite alternate-reverse;
}
@keyframes pulse-blob {
    0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
    100% { transform: scale(1.2) translate(10px, -20px); opacity: 0.22; }
}

/* SVG Connection Lines */
.connection-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}
.connection-line {
    stroke: rgba(16, 185, 129, 0.15);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 6 6;
    animation: crawl-dash 30s linear infinite;
}
@keyframes crawl-dash {
    to { stroke-dashoffset: -1000; }
}
.pulse-line {
    stroke: #10b981;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 80 400;
    stroke-dashoffset: 480;
    animation: crawl-pulse 6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}
.line-marketplace-pulse { animation-delay: 0s; }
.line-pos-pulse { animation-delay: 2s; }
.line-reporting-pulse { animation-delay: 1.4s; }
.line-suppliers-pulse { animation-delay: 3s; }
.line-ebilling-pulse { animation-delay: 1.2s; }
.line-chat-pulse { animation-delay: 3.2s; }
.line-offers-pulse { animation-delay: 2.2s; }
.line-inventory-pulse { animation-delay: 4.5s; }

@keyframes crawl-pulse {
    0% { stroke-dashoffset: 480; }
    100% { stroke-dashoffset: -480; }
}

/* Floating Glassmorphic Feature Cards */
.floating-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 12px 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 240px;
    cursor: pointer;
}
.floating-glass-card:hover {
    transform: translateY(-8px) scale(1.04) !important;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.12);
}
.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.icon-green { background: #e6fcf5; color: #099268; }
.icon-blue { background: #e7f5ff; color: #1c7ed6; }
.icon-blue-light { background: #e0f7fa; color: #00acc1; }
.icon-purple { background: #f3f0ff; color: #7048e8; }
.icon-orange { background: #fff4e6; color: #f76707; }

.card-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2px;
}
.card-info p {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 0;
}

.card-icon-3d {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-icon-3d img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card positions and floating cycles */
.card-marketplace {
    top: 40px;
    left: 10px;
    animation: float-marketplace 5s ease-in-out infinite;
    animation-delay: 0.2s;
}
@keyframes float-marketplace {
    0%, 100% { transform: translateY(-12px) rotate(-1.5deg); }
    50% { transform: translateY(12px) rotate(-1.5deg); }
}

.card-pos {
    top: 180px;
    left: -20px;
    animation: float-pos 6s ease-in-out infinite;
    animation-delay: 0.8s;
}
@keyframes float-pos {
    0%, 100% { transform: translateY(-12px) rotate(1.8deg); }
    50% { transform: translateY(12px) rotate(1.8deg); }
}

.card-reporting {
    top: 320px;
    left: -20px;
    animation: float-reporting 5.5s ease-in-out infinite;
    animation-delay: 1.4s;
}
@keyframes float-reporting {
    0%, 100% { transform: translateY(-12px) rotate(-1.2deg); }
    50% { transform: translateY(12px) rotate(-1.2deg); }
}

.card-suppliers {
    top: 460px;
    left: 10px;
    animation: float-suppliers 4.8s ease-in-out infinite;
    animation-delay: 0.5s;
}
@keyframes float-suppliers {
    0%, 100% { transform: translateY(-12px) rotate(1deg); }
    50% { transform: translateY(12px) rotate(1deg); }
}

.card-ebilling {
    top: 60px;
    right: 10px;
    animation: float-ebilling 4.5s ease-in-out infinite;
    animation-delay: 0.4s;
}
@keyframes float-ebilling {
    0%, 100% { transform: translateY(-12px) rotate(1.2deg); }
    50% { transform: translateY(12px) rotate(1.2deg); }
}

.card-chat {
    top: 200px;
    right: 20px;
    animation: float-chat 5.8s ease-in-out infinite;
    animation-delay: 1.5s;
}
@keyframes float-chat {
    0%, 100% { transform: translateY(-12px) rotate(-1.4deg); }
    50% { transform: translateY(12px) rotate(-1.4deg); }
}

.card-offers {
    top: 340px;
    right: 20px;
    animation: float-offers 5.2s ease-in-out infinite;
    animation-delay: 2.2s;
}
@keyframes float-offers {
    0%, 100% { transform: translateY(-12px) rotate(1.5deg); }
    50% { transform: translateY(12px) rotate(1.5deg); }
}

.card-inventory {
    top: 480px;
    right: 10px;
    animation: float-inventory 5s ease-in-out infinite;
    animation-delay: 0s;
}
@keyframes float-inventory {
    0%, 100% { transform: translateY(-12px) rotate(1.6deg); }
    50% { transform: translateY(12px) rotate(1.6deg); }
}

/* Premium SaaS 3D Hero Composition */
.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.hero-composition-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 20px 45px rgba(16, 185, 129, 0.08));
    animation: float-composition 6s ease-in-out infinite;
}

@keyframes float-composition {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Viewport Responsiveness Settings */
@media (max-width: 1200px) {
    .hero-image-wrapper {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

@media (max-width: 1024px) {
    .hero-image-wrapper {
        transform: scale(0.8);
        transform-origin: center center;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        transform: none;
        height: auto;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .phone-3d-container {
        transform: scale(0.75);
        margin: 0 auto 20px;
    }
    .connection-svg {
        display: none;
    }
    .hero-pedestal, .pedestal-asset {
        display: none !important;
    }
    .floating-glass-card {
        position: static !important;
        margin: 8px auto;
        transform: none !important;
        animation: float-mobile 4s ease-in-out infinite alternate !important;
    }
    @keyframes float-mobile {
        0% { transform: translateY(0); }
        100% { transform: translateY(-6px); }
    }
}

/* Lifestyle Sections */
.lifestyle-sections {
    padding: 120px 0;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    margin-bottom: 120px;
}

.split-section.reverse {
    direction: ltr;
}

.split-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transition: 0.5s ease;
    border: 1px solid var(--border);
}

.split-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 40px 100px rgba(6, 95, 70, 0.15);
}

.split-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-light);
}

/* Trust Bar */
.trust-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: rgba(255,255,255,0.4);
}

.logo-cloud {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0.6;
}

/* Feature Grid */
.features {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

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

.feature-card {
    padding: 48px;
    border-radius: 32px;
    border: 1px solid var(--border);
    background: white;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

/* Download Section */
.download-section {
    padding: 120px 0;
}

.glass-box {
    background: var(--secondary);
    color: white;
    padding: 100px;
    border-radius: 60px;
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.download-btn {
    background: white;
    color: var(--secondary);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Footer */
/* How it Works */
.how-it-works {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.step {
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6,95,70,0.10);
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.step h4 {
    margin: 12px 0 8px;
    font-size: 1.3rem;
    color: var(--secondary);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.usage-guides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.guide-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.guide-card-business {
    background: linear-gradient(135deg, rgba(6,95,70,0.06), rgba(16,185,129,0.06));
    border-color: rgba(16,185,129,0.25);
}

.guide-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-card h3 i {
    color: var(--primary);
}

.guide-intro {
    margin: 8px 0 24px;
    color: var(--text-light);
}

.guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.guide-list li {
    display: flex;
    gap: 14px;
}

.guide-list li > i {
    color: var(--primary-light);
    font-size: 1.05rem;
    margin-top: 4px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.guide-list strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 2px;
}

.guide-list span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Removed — zoom.js auto-scales the desktop layout */

footer {
    padding: 80px 0 40px;
    background: rgba(255,255,255,0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1.3fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo p {
    margin-top: 16px;
    color: var(--text-light);
    max-width: 320px;
    line-height: 1.6;
}

.footer-flag {
    margin-top: 12px !important;
    font-weight: 600;
    color: var(--primary) !important;
}

.footer-links h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.2s ease;
}

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

.footer-links a i,
.footer-about li i {
    color: var(--primary-light);
    width: 18px;
    margin-right: 6px;
}

.footer-about li {
    color: var(--text-light);
    line-height: 1.5;
}

.footer-about strong {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
}

.copyright-sub {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.85;
}

/* Removed — zoom.js auto-scales the desktop layout */

/* Native browser zoom — no custom wrapper needed */

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-box {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-box h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.about-box p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Animations */
.fade-in { opacity: 0; animation: fadeIn 1s forwards; }

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

/* Desktop layout always rendered — zoom.js handles scaling to fit any screen */
