/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #0f172a; background: #fff; overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =========================================================
   NAVBAR (Floating Round Corner White & Emerald Theme)
========================================================= */
.nav {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1000;
    height: 64px; width: calc(100% - 40px); max-width: 1240px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 50px;
    display: flex; align-items: center;
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.nav.hero-nav {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(209, 250, 229, 0.9);
    box-shadow: 0 12px 35px -5px rgba(16, 185, 129, 0.12), 0 4px 15px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    width: 100%;
    margin: 0 auto; padding: 0 20px 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 19px;
    color: #064e3b; white-space: nowrap;
    letter-spacing: -0.5px;
}

.nav.hero-nav .nav-brand { color: #064e3b; }

.brand-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #10b981, #047857);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    flex-shrink: 0;
}

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

.nav-links a {
    font-size: 14px; font-weight: 600;
    color: #475569; padding: 8px 16px;
    border-radius: 30px; transition: all 0.2s ease;
}

.nav-links a:hover { color: #059669; background: #ecfdf5; }
.nav.hero-nav .nav-links a { color: #475569; }
.nav.hero-nav .nav-links a:hover { color: #059669; background: #ecfdf5; }

.nav-track {
    display: flex; align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px; overflow: hidden;
    padding: 3px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.nav-track input {
    background: transparent; border: none; outline: none;
    color: #0f172a; font-size: 12.5px; padding: 6px 12px;
    width: 210px; font-family: inherit; font-weight: 500;
}

.nav-track input::placeholder { color: #94a3b8; }

.nav-track-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: none; cursor: pointer;
    font-size: 11px; font-weight: 800;
    padding: 7px 16px; border-radius: 20px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.nav-track-btn:hover { background: #047857; transform: scale(1.02); }

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

.btn-login {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px;
    background: linear-gradient(135deg, #10b981, #047857);
    color: white; font-weight: 700; font-size: 13px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(16,185,129,0.3);
    transition: all 0.2s ease;
}

.btn-login:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,185,129,0.45); }

.btn-buy {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px;
    background: #ecfdf5;
    color: #047857; font-weight: 700; font-size: 13px;
    border-radius: 30px;
    border: 1px solid #a7f3d0;
    transition: all 0.2s ease;
}

.btn-buy:hover { background: #d1fae5; color: #065f46; transform: translateY(-1px); }

/* =========================================================
   HERO — Vibrant White & Emerald Green Theme
========================================================= */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 25%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 65%, rgba(5, 150, 105, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(52, 211, 153, 0.08) 0%, transparent 60%),
        #ffffff;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

/* Floating glowing elements in background */
.hero-glow-1 {
    position: absolute; top: 15%; left: -5%; width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, rgba(255,255,255,0) 70%);
    filter: blur(40px); pointer-events: none;
    animation: float-glow 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
    position: absolute; bottom: 10%; right: -5%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.18) 0%, rgba(255,255,255,0) 70%);
    filter: blur(50px); pointer-events: none;
    animation: float-glow 10s ease-in-out infinite alternate-reverse;
}

@keyframes float-glow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Dynamic Moving Gradient Accent */
.hero-title .accent {
    background: linear-gradient(120deg, #10b981, #047857, #34d399, #10b981);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-inner {
    position: relative; z-index: 1;
    max-width: 1280px; margin: 0 auto;
    padding: 80px 28px 80px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px; align-items: center;
}

/* LEFT */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(236, 253, 245, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid #a7f3d0;
    border-radius: 30px;
    padding: 7px 20px;
    font-size: 12px; font-weight: 800;
    color: #047857;
    text-transform: uppercase; letter-spacing: 0.9px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
}

.hero-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25); }

.hero-badge-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: blink-dot 1.5s ease-in-out infinite;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(42px, 4.8vw, 66px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.8px;
    color: #064e3b;
    margin-bottom: 24px;
}

.hero-title .accent {
    background: linear-gradient(135deg, #10b981 0%, #047857 50%, #065f46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-desc {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 34px;
    font-weight: 450;
}

.hero-perks {
    display: flex; gap: 20px; flex-wrap: wrap;
    margin-bottom: 38px;
}

.perk-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #1e293b;
    font-weight: 700;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #d1fae5;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
    transition: all 0.25s ease;
}

.perk-item:hover { transform: translateY(-2px); border-color: #10b981; box-shadow: 0 4px 14px rgba(16, 185, 129, 0.18); }
.perk-item i { color: #10b981; font-size: 15px; }

.hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap;
}

.btn-hero-buy {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #10b981, #047857);
    color: white; font-weight: 800; font-size: 15px;
    border-radius: 30px;
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.38);
    transition: all 0.25s ease;
    position: relative; overflow: hidden;
}

.btn-hero-buy::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.btn-hero-buy:hover::after { transform: rotate(30deg) translateY(100%); }

.btn-hero-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.55);
}

.btn-hero-demo {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a; font-weight: 700; font-size: 15px;
    border-radius: 30px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.btn-hero-demo:hover { background: #ecfdf5; border-color: #a7f3d0; color: #047857; transform: translateY(-1px); }

.demo-play {
    width: 28px; height: 28px;
    background: #d1fae5;
    color: #047857;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
}

/* RIGHT — Modern Premium Clean Glass Dashboard Showcase */
.hero-mockup {
    position: relative;
}

/* =========================================================
   HERO MOCKUP — UNIQUE LIVE BILLING CONSOLE
========================================================= */
.hero-mockup { position: relative; }

/* === MAIN CONSOLE CARD === */
.console-card {
    background: linear-gradient(145deg, #064e3b 0%, #022c22 100%);
    border-radius: 28px;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 40px 80px -16px rgba(4, 120, 87, 0.45),
        0 8px 24px -4px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    position: relative;
    animation: float-hero-card 6s ease-in-out infinite alternate;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@keyframes float-hero-card {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

.hero-mockup:hover .console-card {
    transform: translateY(-16px) scale(1.01);
    box-shadow: 0 52px 100px -16px rgba(4,120,87,0.6), 0 12px 30px rgba(0,0,0,0.25);
}

/* glowing top accent line */
.console-card::before {
    content: '';
    position: absolute; top: 0; left: 30px; right: 30px; height: 2px;
    background: linear-gradient(90deg, transparent, #34d399, #10b981, transparent);
    border-radius: 2px;
    opacity: 0.7;
}

.cc-header {
    padding: 28px 28px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex; justify-content: space-between; align-items: flex-start;
}

.cc-brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 800; color: #6ee7b7;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.cc-brand-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.cc-date {
    font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 600;
    background: rgba(255,255,255,0.05); padding: 4px 10px;
    border-radius: 20px; border: 1px solid rgba(255,255,255,0.08);
}

.cc-revenue {
    padding: 22px 28px 18px;
}
.cc-rev-label {
    font-size: 10px; font-weight: 800; color: rgba(110, 231, 183, 0.6);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;
}
.cc-rev-amount {
    font-size: clamp(30px, 4vw, 42px); font-weight: 900;
    color: #ffffff; letter-spacing: -1.5px; line-height: 1;
    margin-bottom: 10px;
}
.cc-rev-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399; font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
}

/* === MINI BAR CHART === */
.cc-chart {
    padding: 0 28px 20px;
}
.chart-label { font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.chart-bars {
    display: flex; align-items: flex-end; gap: 6px; height: 52px;
}
.cbar {
    flex: 1; border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, rgba(52,211,153,0.35), rgba(16,185,129,0.15));
    border: 1px solid rgba(52, 211, 153, 0.2);
    transition: all 0.3s ease;
    position: relative;
}
.cbar.active {
    background: linear-gradient(180deg, #10b981, #059669);
    border-color: #10b981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.5);
}
.cbar:hover { opacity: 0.85; transform: scaleY(1.05); transform-origin: bottom; }
.chart-days {
    display: flex; gap: 6px; padding-top: 6px;
}
.cday {
    flex: 1; text-align: center;
    font-size: 9px; color: rgba(255,255,255,0.25); font-weight: 600;
}
.cday.active { color: #34d399; }

/* === ACTIVITY FEED === */
.cc-feed {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 28px 22px;
}
.feed-title {
    font-size: 10px; font-weight: 800; color: rgba(110,231,183,0.5);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
    display: flex; align-items: center; gap: 7px;
}
.feed-title::after {
    content: '';
    flex: 1; height: 1px;
    background: rgba(255,255,255,0.06);
}
.feed-row {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s;
}
.feed-row:last-child { border-bottom: none; }
.feed-row:hover { padding-left: 4px; }
.feed-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.feed-type {
    flex: 1;
}
.feed-cat { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 600; }
.feed-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); margin-top: 1px; }
.feed-amt { font-size: 13px; font-weight: 800; color: #34d399; white-space: nowrap; }

/* === STATS ROW === */
.cc-stats {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.cc-stat {
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    transition: background 0.2s;
}
.cc-stat:last-child { border-right: none; }
.cc-stat:hover { background: rgba(255,255,255,0.03); }
.cc-stat-val { font-size: 18px; font-weight: 900; color: #fff; }
.cc-stat-lbl { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.3);
    text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

/* === FLOATING BADGES === */
.float-pill {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid #d1fae5;
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 12px 32px -4px rgba(4, 120, 87, 0.25), 0 2px 8px rgba(0,0,0,0.06);
    font-size: 12px;
    z-index: 10;
    animation: pill-float 5s ease-in-out infinite;
    white-space: nowrap;
}
.float-pill:hover { transform: translateY(-4px) !important; }
.float-pill-1 { bottom: -16px; right: 16px; animation-delay: 0s; }
.float-pill-2 { top: 50px; left: -20px; animation-delay: 2s; }
.float-pill-3 { top: -14px; right: 40px; animation-delay: 1s; }

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

.pill-icon {
    width: 32px; height: 32px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.pill-main { font-weight: 800; color: #064e3b; font-size: 12px; }
.pill-sub { font-size: 10px; color: #64748b; margin-top: 1px; }


/* =========================================================
   HERO BOTTOM STRIP (LIGHT GREEN)
========================================================= */
.hero-strip {
    background: #f0fdf4;
    border-top: 1px solid #d1fae5;
    border-bottom: 1px solid #d1fae5;
    padding: 22px 28px;
    position: relative; z-index: 1;
}

.hero-strip-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}

.strip-label {
    font-size: 11px; font-weight: 800; color: #059669;
    text-transform: uppercase; letter-spacing: 1.5px;
}

.strip-items {
    display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
}

.strip-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: #064e3b;
    letter-spacing: 0.5px; text-transform: uppercase;
}

.strip-item i { color: #10b981; font-size: 15px; }

/* =========================================================
   STATS ROW (LIGHT GREEN THEME)
========================================================= */
.stats-band {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-top: 1px solid #d1fae5;
    border-bottom: 1px solid #d1fae5;
    padding: 64px 28px;
}

.stats-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; text-align: center;
}

.stat-num {
    font-size: 46px; font-weight: 900; color: #064e3b;
    letter-spacing: -2px; line-height: 1;
    margin-bottom: 8px;
}

.stat-num span { color: #10b981; }
.stat-label { font-size: 14px; color: #047857; font-weight: 600; }

/* =========================================================
   SECTION COMMONS (WHITE BG)
========================================================= */
.section { padding: 90px 28px; }
.section-alt { background: #f8fafc; }
.container { max-width: 1280px; margin: 0 auto; }

.sec-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; color: #059669;
    margin-bottom: 14px;
}

.sec-label-icon { font-size: 13px; }

.sec-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900; color: #064e3b;
    letter-spacing: -1px; line-height: 1.2;
    margin-bottom: 14px;
}

.sec-under {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
    margin-bottom: 18px;
}

.sec-sub {
    font-size: 16px; color: #475569;
    line-height: 1.7; max-width: 580px;
}

/* =========================================================
   MODULES (alternating)
========================================================= */
.module { padding: 80px 28px; border-bottom: 1px solid #f1f5f9; }
.module-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}

/* .reverse modules: HTML already puts [text, card] so grid renders text-left, card-right naturally */

.mod-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px; border-radius: 5px;
    margin-bottom: 18px;
}

.mod-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900; color: #064e3b;
    letter-spacing: -0.5px; line-height: 1.25;
    margin-bottom: 16px;
}

.mod-desc { font-size: 15px; color: #475569; line-height: 1.75; margin-bottom: 24px; }

.mod-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.mod-points li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; font-weight: 600; color: #374151;
}

.mod-points li i {
    color: #10b981; font-size: 14px; margin-top: 2px; flex-shrink: 0;
    background: #ecfdf5;
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Module visual card */
.mod-visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(16, 185, 129, 0.1);
    border: 1px solid #d1fae5;
    position: relative;
}

.mod-card-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mod-card-title {
    font-size: 12px; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.mod-active-tag {
    font-size: 10px; font-weight: 800; padding: 3px 10px;
    border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}

.mod-card-body { padding: 20px 18px; }

.mod-card-label {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.mod-card-value {
    font-size: 22px; font-weight: 900; color: #fff;
    letter-spacing: -0.5px; margin-bottom: 16px;
}

/* GST Invoice card */
.inv-card {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
}

.inv-card .mod-card-header { background: rgba(255,255,255,0.06); }
.inv-active-tag { background: #10b981; color: #fff; }

.inv-field {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 12px;
}

.inv-field:last-child { border-bottom: none; }
.inv-field-label { color: rgba(255,255,255,0.6); font-weight: 500; }
.inv-field-val { color: #fff; font-weight: 700; }
.inv-field-val.green { color: #34d399; }
.inv-field-val.cyan { color: #6ee7b7; }

.inv-total-row {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 12px;
}

.inv-total-lbl { font-size: 12px; font-weight: 800; color: #34d399; text-transform: uppercase; letter-spacing: 0.5px; }
.inv-total-val { font-size: 20px; font-weight: 900; color: #fff; }

/* CRM card */
.crm-card {
    background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
}

.crm-card .mod-card-header { background: rgba(255,255,255,0.06); }
.crm-active-tag { background: #34d399; color: #064e3b; }

.crm-client {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 9px;
    margin-bottom: 8px;
}

.crm-name { font-size: 13px; font-weight: 700; color: #fff; }
.crm-phone { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.crm-bal { font-size: 13px; font-weight: 800; }
.crm-bal.pos { color: #34d399; }
.crm-bal.neg { color: #f87171; }

.crm-wa-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #10b981; color: white;
    font-size: 11px; font-weight: 800;
    padding: 7px 14px; border-radius: 7px;
    margin-top: 10px;
}

/* Repair card */
.repair-card {
    background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
}

.repair-card .mod-card-header { background: rgba(255,255,255,0.06); }
.repair-active-tag { background: #10b981; color: #fff; }

.repair-job {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 9px; margin-bottom: 8px;
}

.rjob-device { font-size: 12px; font-weight: 700; color: #fff; }
.rjob-id { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.rjob-badge { font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 5px; }
.badge-ready { background: rgba(52,211,153,0.2); color: #6ee7b7; border: 1px solid rgba(52,211,153,0.3); }
.badge-wip { background: rgba(251,191,36,0.2); color: #fde047; border: 1px solid rgba(251,191,36,0.3); }
.badge-wait { background: rgba(167,139,250,0.2); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.3); }

/* =========================================================
   FEATURES GRID
========================================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.feat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.28s ease;
    cursor: default;
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(16, 185, 129, 0.12);
    border-color: #a7f3d0;
}

.feat-icon {
    width: 52px; height: 52px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
}

.feat-card h3 { font-size: 17px; font-weight: 800; color: #064e3b; margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: #64748b; line-height: 1.65; }

/* =========================================================
   PRICING
========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 56px;
}

.price-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
}

.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(16, 185, 129, 0.12); }

.price-card.featured {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    border-color: #047857;
    box-shadow: 0 24px 56px rgba(16, 185, 129, 0.25);
}

.price-card.featured:hover { box-shadow: 0 32px 72px rgba(16, 185, 129, 0.35); }

.feat-banner {
    position: absolute; top: 18px; right: 18px;
    background: #10b981; color: #fff;
    font-size: 10px; font-weight: 800;
    padding: 4px 12px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.price-tier {
    font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; color: #64748b; margin-bottom: 18px;
}

.price-card.featured .price-tier { color: rgba(255,255,255,0.6); }

.price-num {
    font-size: 56px; font-weight: 900; color: #064e3b;
    letter-spacing: -2px; line-height: 1; margin-bottom: 12px;
}

.price-num .cur { font-size: 26px; font-weight: 800; vertical-align: super; color: #10b981; }
.price-card.featured .price-num { color: #fff; }
.price-card.featured .price-num .cur { color: #34d399; }

.price-badge-pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 800;
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 24px;
}

.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.price-feats li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #334155;
}

.price-card.featured .price-feats li { color: rgba(255,255,255,0.85); }

.price-feats li i {
    font-size: 12px; color: #059669;
    background: #ecfdf5;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.price-card.featured .price-feats li i { background: rgba(52, 211, 153, 0.2); color: #34d399; }

.btn-price {
    display: block; text-align: center;
    padding: 13px 20px; border-radius: 30px;
    font-weight: 800; font-size: 14px;
    transition: all 0.25s;
}

.btn-price-outline {
    border: 2px solid #e2e8f0;
    color: #064e3b;
    background: transparent;
}

.btn-price-outline:hover { border-color: #10b981; color: #047857; background: #ecfdf5; }

.btn-price-solid {
    background: linear-gradient(135deg, #10b981, #059669); color: #fff;
    box-shadow: 0 8px 24px rgba(16,185,129,0.35);
}

.btn-price-solid:hover { background: #047857; box-shadow: 0 12px 32px rgba(16,185,129,0.5); transform: translateY(-1px); }

/* =========================================================
   CTA SECTION (EMERALD GREEN ACCENT)
========================================================= */
.cta-section {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    padding: 100px 28px;
    position: relative; overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(52, 211, 153, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-title {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900; color: #fff;
    letter-spacing: -1.5px; margin-bottom: 16px;
}

.cta-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.contact-cards-row {
    display: flex; gap: 20px; justify-content: center; align-items: center;
    flex-wrap: wrap; margin-top: 32px;
}

.contact-card-box {
    display: inline-flex; align-items: center; gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #34d399;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25);
}

.contact-card-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}

.contact-card-icon.wa-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-card-icon.mail-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.contact-card-info {
    display: flex; flex-direction: column; text-align: left;
}

.contact-card-label {
    font-size: 10px; font-weight: 800; color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px;
}

.contact-card-val {
    font-size: 16px; font-weight: 800; color: #ffffff;
    letter-spacing: -0.3px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #022c22;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 56px 28px 28px;
    color: rgba(255,255,255,0.5);
}

.footer-top {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}

.footer-brand-desc { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 240px; color: rgba(255,255,255,0.6); }

.footer-col h5 {
    font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; color: #34d399;
    margin-bottom: 16px;
}

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

.footer-col a {
    font-size: 14px; color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-col a:hover { color: #34d399; }

.footer-bottom {
    max-width: 1280px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; flex-wrap: wrap; gap: 12px;
}

.footer-socials { display: flex; gap: 10px; }

.soc-btn {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}

.soc-btn:hover { background: #10b981; color: #fff; }

/* =========================================================
   SCROLL ANIMATIONS
========================================================= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.show { opacity: 1; transform: translateY(0); }

/* =========================================================
   SCROLLBAR
========================================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #a7f3d0; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #10b981; }

/* =========================================================
   MOBILE DRAWER & RESPONSIVE BREAKPOINTS
========================================================= */
.mobile-toggle, .mobile-login-btn {
    display: none;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    width: 40px; height: 40px;
    border-radius: 50%;
    align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-toggle:hover, .mobile-login-btn:hover { background: #d1fae5; color: #064e3b; }

.mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(6, 78, 59, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
    position: fixed; top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: #ffffff;
    z-index: 1100;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex; flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open { transform: translateX(-320px); }

.mobile-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex; align-items: center; justify-content: space-between;
}

.mobile-close {
    background: #f1f5f9; border: none;
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #64748b; cursor: pointer;
}

.mobile-drawer-body {
    padding: 24px 20px;
    display: flex; flex-direction: column; gap: 24px;
    overflow-y: auto; flex: 1;
}

.mobile-track { width: 100%; display: flex; }
.mobile-track input { width: 100%; }

.mobile-nav-links {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
}

.mobile-nav-links a {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 700; color: #064e3b;
    padding: 12px 16px; border-radius: 12px;
    transition: background 0.2s;
}

.mobile-nav-links a i { color: #10b981; font-size: 16px; width: 20px; }
.mobile-nav-links a:hover { background: #ecfdf5; color: #047857; }

.mobile-actions {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: auto; padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-mockup { max-width: 540px; margin: 0 auto; }
    .module-inner { grid-template-columns: 1fr; gap: 36px; }
    .features-grid { grid-template-columns: repeat(2,1fr) !important; }
    .pricing-grid { grid-template-columns: repeat(2,1fr); }
    .stats-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .nav { width: calc(100% - 24px); top: 12px; padding: 0 14px; }
    .nav-links, .nav-track, .btn-buy, .btn-login { display: none !important; }
    .mobile-toggle, .mobile-login-btn { display: flex; }

    .hero { padding-top: 110px; min-height: auto; }
    .hero-inner { padding: 40px 16px 60px; }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-desc { font-size: 15px; }

    .hero-perks { gap: 10px; }
    .perk-item { font-size: 12px; padding: 6px 12px; }

    .hero-cta { flex-direction: column; }
    .btn-hero-buy, .btn-hero-demo { width: 100%; justify-content: center; }

    .hero-strip-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .strip-items { gap: 16px; flex-wrap: wrap; }

    .features-grid { grid-template-columns: 1fr !important; }
    .pricing-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .stat-num { font-size: 34px; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: 10px; padding: 6px 14px; }
    .hero-title { font-size: 30px; }
    .console-card { border-radius: 20px; }
    .cc-header { padding: 18px 16px; }
    .cc-revenue { padding: 16px; }
    .cc-rev-amount { font-size: 30px; }
    .cc-chart { padding: 0 16px 16px; }
    .cc-feed { padding: 16px; }
    .cc-stats { grid-template-columns: 1fr; }
    .cc-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .cc-stat:last-child { border-bottom: none; }
}

/* =========================================================
   DYNAMIC BUY MODAL & QR CODE PANEL STYLING
========================================================= */
.buy-modal-backdrop {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(2, 44, 34, 0.85);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.buy-modal-backdrop.active { opacity: 1; pointer-events: auto; }

.buy-modal-card {
    background: #ffffff;
    width: 100%; max-width: 900px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    position: relative;
    transform: scale(0.95) translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.buy-modal-backdrop.active .buy-modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute; top: 16px; right: 16px; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: #f1f5f9; color: #64748b; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer; transition: all 0.2s;
}
.modal-close-btn:hover { background: #fee2e2; color: #ef4444; }

.modal-form-side { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.modal-plan-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 20px;
    background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.modal-title { font-size: 22px; font-weight: 900; color: #064e3b; margin-bottom: 4px; }
.modal-sub { font-size: 12px; color: #64748b; margin-bottom: 20px; line-height: 1.5; }

.modal-form-grid { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 11px; font-weight: 800; color: #334155; text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
    width: 100%; padding: 11px 14px;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 12px; font-size: 13px; font-weight: 600; color: #0f172a;
    outline: none; transition: all 0.2s;
}
.form-control:focus { border-color: #10b981; background: #fff; box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }

.btn-whatsapp-submit {
    margin-top: 10px; width: 100%; padding: 14px;
    background: linear-gradient(135deg, #10b981, #047857);
    color: #fff; font-weight: 800; font-size: 14px;
    border: none; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    cursor: pointer; transition: all 0.25s;
}
.btn-whatsapp-submit:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16,185,129,0.45); }

.modal-qr-side {
    background: linear-gradient(145deg, #064e3b 0%, #022c22 100%);
    padding: 36px 28px; color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    text-align: center; position: relative; overflow: hidden;
}
.modal-qr-side::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(52, 211, 153, 0.15) 1px, transparent 1px);
    background-size: 24px 24px; pointer-events: none;
}
.qr-header-title { font-size: 18px; font-weight: 900; color: #6ee7b7; letter-spacing: -0.3px; margin-bottom: 4px; }
.qr-header-sub { font-size: 11px; color: rgba(255,255,255,0.7); max-width: 230px; }

.upi-qr-wrapper {
    background: #ffffff;
    padding: 14px; border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.2);
    margin: 18px 0;
}
.upi-qr-wrapper canvas, .upi-qr-wrapper img { display: block; border-radius: 8px; }

.qr-due-lbl { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.qr-due-val { font-size: 28px; font-weight: 900; color: #34d399; letter-spacing: -1px; margin: 2px 0; }
.qr-remark-tag { font-size: 11px; font-weight: 700; color: #6ee7b7; background: rgba(16,185,129,0.2); padding: 4px 12px; border-radius: 20px; }

@media (max-width: 768px) {
    .buy-modal-card { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
    .modal-form-side { padding: 28px 20px; }
    .modal-qr-side { padding: 28px 20px; }
}
