:root {
    --blue: #19A9E8;
    --blue-dark: #0E86BE;
    --purple: #6C5CE7;
    --navy: #173D6A;
    --navy-deep: #0E2846;
    --gray-50: #F6F8FB;
    --gray-100: #EEF2F7;
    --gray-200: #E4E9F0;
    --gray-400: #9AA9BC;
    --gray-600: #5B6B82;
    --gray-800: #2B3A4F;
    --grad-primary: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    --grad-navy: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #21507F 100%);
    --grad-glow: radial-gradient(circle at 30% 20%, rgba(25, 169, 232, .35), transparent 60%), radial-gradient(circle at 75% 60%, rgba(108, 92, 231, .30), transparent 55%);
    --shadow-sm: 0 2px 8px rgba(23, 61, 106, .06);
    --shadow-md: 0 8px 24px rgba(23, 61, 106, .10);
    --shadow-lg: 0 20px 60px rgba(23, 61, 106, .16);
    --bs-body-font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--gray-800);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy-deep);
    letter-spacing: -.02em;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

a {
    text-decoration: none;
}

:focus-visible {
    outline: 2.5px solid var(--purple);
    outline-offset: 3px;
    border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 2000;
    background: var(--grad-primary);
    box-shadow: 0 0 12px rgba(108, 92, 231, .6);
    transition: width .1s linear;
}

/* ============ SCROLL REVEAL SYSTEM ============ */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-scale {
    transform: scale(.92);
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(23,61,106,.12);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, background .25s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(255,255,255,1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: none;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--navy-deep);
    border-right: 2px solid var(--navy-deep);
}

.carousel-control-prev-icon::before {
    transform: rotate(-135deg);
}

.carousel-control-next-icon::before {
    transform: rotate(45deg);
}

.carousel-item {
    transition: transform .55s ease, opacity .55s ease;
}

/* ============ COUNT-UP NUMBERS ============ */
.count-up {
    font-variant-numeric: tabular-nums;
}

.section-pad {
    padding: 96px 0;
}

.section-pad-sm {
    padding: 64px 0;
}

.bg-soft {
    background: var(--gray-50);
}

.grad-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(108, 92, 231, .08);
    border: 1px solid rgba(108, 92, 231, .18);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-primary);
}

/* Buttons */
.btn-grad {
    background: var(--grad-primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 13px 28px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(25, 169, 232, .32);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-grad:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(108, 92, 231, .4);
}

.btn-outline-navy {
    border: 1.5px solid var(--gray-200);
    color: var(--navy);
    border-radius: 100px;
    padding: 13px 28px;
    font-weight: 600;
    background: #fff;
    transition: all .25s ease;
}

.btn-outline-navy:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-outline-light-glass {
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff;
    border-radius: 100px;
    padding: 13px 28px;
    font-weight: 600;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.btn-outline-light-glass:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm-pill {
    padding: 9px 20px;
    font-size: .85rem;
}

/* ============ NAVBAR ============ */
.navbar-posnow {
    padding: 14px 0;
    transition: all .3s ease;
    background: transparent;
}

.navbar-posnow.scrolled {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 var(--gray-200);
}
.logo img{
    width: 120px;
}
.nav-link-posnow {
    font-weight: 500;
    color: var(--gray-800) !important;
    font-size: .92rem;
    padding: .5rem .9rem !important;
}

.nav-link-posnow:hover {
    color: var(--blue-dark) !important;
}

.dropdown-menu {
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 10px;
}

.dropdown-item {
    border-radius: 9px;
    padding: 9px 12px;
    font-size: .88rem;
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--blue-dark);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 130px 0 35px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(600px 400px at 90% 10%, rgba(25, 169, 232, .14), transparent 65%),
        radial-gradient(500px 400px at 100% 45%, rgba(108, 92, 231, .12), transparent 60%);
    pointer-events: none;
}

/* animated mesh blobs */
.hero-blob {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
    animation: blobDrift 16s ease-in-out infinite;
}

.hero-blob-a {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(25, 169, 232, .35), transparent 70%);
    animation-delay: 0s;
}

.hero-blob-b {
    width: 360px;
    height: 360px;
    top: 60px;
    right: -140px;
    background: radial-gradient(circle, rgba(108, 92, 231, .32), transparent 70%);
    animation-delay: -5s;
}

.hero-blob-c {
    width: 300px;
    height: 300px;
    bottom: -140px;
    left: 38%;
    background: radial-gradient(circle, rgba(14, 134, 190, .24), transparent 70%);
    animation-delay: -9s;
}

@keyframes blobDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -24px) scale(1.08);
    }

    66% {
        transform: translate(-24px, 18px) scale(.95);
    }
}

/* faint grid backdrop */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .5;
    background-image: linear-gradient(var(--gray-100) 1px, transparent 1px), linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 60% 20%, #000 40%, transparent 90%);
}

.hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn .8s cubic-bezier(.2, .8, .2, 1) forwards;
    animation-delay: calc(var(--d) * 110ms);
}

@keyframes heroIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--gray-200);
    padding: 6px 12px 6px 8px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.hero-status-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
    animation: pulseDot 2s ease-out infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 4.4vw, 4.1rem);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero h1 span.grad-text {
    position: relative;
    display: inline-block;
}

.hero-lead {
    font-size: 1.14rem;
    color: var(--gray-600);
    max-width: 540px;
    margin-bottom: 30px;
}

.avatar-stack span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--grad-primary);
    display: inline-block;
    margin-left: -8px;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

/* hero stat strip */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--gray-200);
    padding-top: 26px;
    flex-wrap: wrap;
}

.hero-stat {
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid var(--gray-200);
}

.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.hero-stat .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--navy-deep);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .76rem;
    color: var(--gray-600);
    margin-top: 6px;
    font-weight: 500;
}

@media (max-width:575.98px) {
    .hero-stat {
        padding-right: 18px;
        margin-right: 18px;
    }

    .hero-stat .num {
        font-size: 1.3rem;
    }
}

.hero-visual {
    position: relative;
    height: 480px;
    perspective: 1400px;
}

.dash-frame {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: var(--grad-navy);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 28px;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, .08);
}

.dash-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-glow);
}

.dash-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .35), transparent 40%, transparent 60%, rgba(25, 169, 232, .4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.dash-topbar {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.dash-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.dash-header {
    position: relative;
    z-index: 1;
    color: #fff;
    margin-bottom: 24px;
}

.dash-header .lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .7rem;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
}

.dash-header .val {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dash-header .val .up {
    font-size: .8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #6EE7B7;
    margin-left: 10px;
    vertical-align: middle;
}

.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    position: relative;
    z-index: 1;
}

.dash-bars i {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .35));
    transform: scaleY(0);
    transform-origin: bottom;
    animation: barGrow 1s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes barGrow {
    to {
        transform: scaleY(1);
    }
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    opacity: .8;
}

.scroll-cue .wheel {
    width: 22px;
    height: 34px;
    border: 1.5px solid var(--gray-400);
    border-radius: 100px;
    position: relative;
}

.scroll-cue .wheel::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    border-radius: 50%;
    background: var(--blue);
    animation: cueMove 1.8s ease-in-out infinite;
}

@keyframes cueMove {
    0% {
        top: 6px;
        opacity: 1;
    }

    70% {
        top: 20px;
        opacity: 0;
    }

    71% {
        top: 6px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 1;
    }
}

@media (max-width:991.98px) {
    .scroll-cue {
        display: none;
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite, cardIn .7s cubic-bezier(.2, .8, .2, 1) backwards;
    transition: transform .3s ease, box-shadow .3s ease;
}

.floating-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 24px 50px rgba(23, 61, 106, .22);
    z-index: 5;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-card .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .fc-icon svg {
    width: 17px;
    height: 17px;
}

.floating-card .fc-label {
    font-size: .7rem;
    color: var(--gray-600);
    font-weight: 500;
}

.floating-card .fc-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-deep);
}

.fc-inventory {
    top: -2%;
    left: -6%;
    animation-delay: 0s;
}

.fc-inventory .fc-icon {
    background: linear-gradient(135deg, #19A9E8, #0E86BE);
}

.fc-sales {
    top: 10%;
    right: -8%;
    animation-delay: 1s;
}

.fc-sales .fc-icon {
    background: linear-gradient(135deg, #6C5CE7, #4A3FC7);
}

.fc-hotel {
    bottom: 30%;
    left: -10%;
    animation-delay: 2s;
}

.fc-hotel .fc-icon {
    background: linear-gradient(135deg, #19A9E8, #6C5CE7);
}

.fc-payroll {
    bottom: 12%;
    right: -6%;
    animation-delay: 1.5s;
}

.fc-payroll .fc-icon {
    background: linear-gradient(135deg, #173D6A, #19A9E8);
}

.fc-events {
    bottom: -6%;
    left: 16%;
    animation-delay: 2.5s;
}

.fc-events .fc-icon {
    background: linear-gradient(135deg, #6C5CE7, #19A9E8);
}

.fc-analytics {
    top: 40%;
    right: -12%;
    animation-delay: .5s;
}

.fc-analytics .fc-icon {
    background: linear-gradient(135deg, #0E86BE, #6C5CE7);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ============ TRUST ============ */
.trust-section {
    padding: 48px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.trust-track {
    width: 100%;
    overflow: hidden;
}

.trust-track-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    will-change: transform;
    padding: 8px 0;
}

.trust-slide-item {
    flex: 0 0 auto;
}

.trust-slide {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    min-height: 110px;
    border: 1px solid #ccc;

}

.trust-slide img {
      max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 20px;
  padding: 8px;
}

.trust-carousel:hover .trust-slide {
    transform: translateY(-1px);
    transition: transform .25s ease;
}

.trust-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 0 6px;
}

.trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(23, 61, 106, 0.22);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.trust-dot.active {
    background: var(--bs-primary);
    transform: scale(1.15);
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(23, 61, 106, 0.08);
}

.contact-form .form-label {
    font-weight: 600;
}

.contact-form .form-control {
    border-radius: 14px;
    border: 1px solid rgba(23, 61, 106, 0.16);
    padding: 16px 14px;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.15rem rgba(14, 134, 190, 0.14);
}

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1ebd5d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(23, 61, 106, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(23, 61, 106, 0.24);
}

.whatsapp-button svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* ============ FEATURE CARDS ============ */
.feature-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 26px;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.fcard-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .3s ease;
}

.feature-card:hover .fcard-icon {
    background: var(--grad-primary);
}

.fcard-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--navy);
    transition: stroke .3s ease;
}

.feature-card:hover .fcard-icon svg {
    stroke: #fff;
}

.feature-card h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: .87rem;
    color: var(--gray-600);
    margin: 0;
}

/* ============ TABS / MODULE SHOWCASE ============ */
.nav-pills-posnow {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 6px;
    border-radius: 100px;
    display: inline-flex;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
}

.nav-pills-posnow .nav-link {
    border-radius: 100px;
    padding: 10px 20px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

.nav-pills-posnow .nav-link.active {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(108, 92, 231, .3);
}

.app-mock {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.app-mock-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.app-mock-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
}

.app-mock-sidebar {
    background: var(--navy-deep);
    padding: 20px 14px;
    min-height: 100%;
}

.app-mock-sidebar .item {
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-mock-sidebar .item.active {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-weight: 600;
}

.app-mock-sidebar .item i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--blue);
    display: inline-block;
}

.app-mock-main {
    padding: 24px;
    background: var(--gray-50);
}

.mock-stat {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 14px 18px;
    height: 100%;
}

.mock-stat .lbl {
    font-size: .72rem;
    color: var(--gray-600);
}

.mock-stat .val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy-deep);
}

.mock-stat .delta {
    font-size: .72rem;
    color: var(--blue-dark);
    font-weight: 600;
}

.mock-panel {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 18px;
}

.mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: .85rem;
}

.mock-row:last-child {
    border-bottom: none;
}

.mock-chip {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
}

.chip-blue {
    background: rgba(25, 169, 232, .12);
    color: var(--blue-dark);
}

.chip-purple {
    background: rgba(108, 92, 231, .12);
    color: var(--purple);
}

.chip-navy {
    background: rgba(23, 61, 106, .1);
    color: var(--navy);
}

/* ============ KEY FEATURES SPLIT ============ */
.illustration-panel {
    position: relative;
    border-radius: 26px;
    background: var(--grad-navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.illustration-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-glow);
}

.illustration-panel img {
    position: relative;
    z-index: 1;
    max-width: 70%;
    opacity: .95;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .3));
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.fi-check {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--grad-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.fi-check svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.feature-check span {
    font-weight: 600;
    font-size: .92rem;
    color: var(--gray-800);
}

/* ============ BUSINESS TYPES ============ */
.biz-card {
    border-radius: 18px;
    padding: 26px 16px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    transition: all .3s ease;
    height: 100%;
}

.biz-card:hover {
    background: var(--grad-navy);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.biz-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

.biz-card:hover .biz-icon {
    background: rgba(255, 255, 255, .12);
}

.biz-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy);
    transition: stroke .3s ease;
}

.biz-card:hover .biz-icon svg {
    stroke: #fff;
}

.biz-card p {
    font-weight: 600;
    font-size: .87rem;
    margin: 0;
    color: var(--gray-800);
    transition: color .3s ease;
}

.biz-card:hover p {
    color: #fff;
}

/* ============ TIMELINE ============ */
.timeline-wrap {
    position: relative;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gray-200) 0 8px, transparent 8px 16px);
    z-index: 0;
}

.tl-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--navy);
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    transition: all .3s ease;
}

.tl-step:hover .tl-num {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(108, 92, 231, .3);
}

/* ============ SCREENSHOTS ============ */
.screen-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    height: 100%;
    background: #fff;
}

.screen-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.screen-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.screen-meta {
    padding: 16px 18px;
}

.screen-meta .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .68rem;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    margin-bottom: 4px;
}

.screen-meta h4 {
    font-size: .94rem;
    margin: 0;
}

/* ============ TESTIMONIALS ============ */
.testi-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 26px;
    transition: all .3s ease;
    height: 100%;
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stars svg {
    width: 15px;
    height: 15px;
    fill: #F5A623;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .87rem;
    color: var(--navy-deep);
}

.testi-role {
    font-size: .76rem;
    color: var(--gray-600);
}

/* ============ FAQ (Bootstrap accordion) ============ */
.accordion-posnow .accordion-item {
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
}

.accordion-posnow .accordion-button {
    font-weight: 600;
    color: var(--navy-deep);
    background: transparent;
    box-shadow: none;
    padding: 20px 4px;
    font-size: 1rem;
}

.accordion-posnow .accordion-button:not(.collapsed) {
    color: var(--navy-deep);
    background: transparent;
}

.accordion-posnow .accordion-button::after {
    width: 28px;
    height: 28px;
    background-color: var(--gray-50);
    border-radius: 8px;
    background-size: 14px;
    transition: all .3s ease;
}

.accordion-posnow .accordion-button:not(.collapsed)::after {
    background-color: var(--purple);
    filter: brightness(0) invert(1);
    transform: rotate(-180deg);
}

.accordion-posnow .accordion-body {
    padding: 0 4px 22px;
    color: var(--gray-600);
    font-size: .92rem;
    max-width: 640px;
}

/* ============ FINAL CTA ============ */
.final-cta {
    position: relative;
    border-radius: 28px;
    background: var(--grad-navy);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-glow);
}

.final-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.8rem);
    position: relative;
    max-width: 640px;
    margin: 0 auto 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, .7);
    position: relative;
    max-width: 520px;
    margin: 0 auto 32px;
}

/* ============ FOOTER ============ */
.footer-posnow {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .6);
    padding: 0px 0 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    font-size: .8rem;
}

@media (min-width:1200px) {
    .col-xl-biz {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Mobile tweaks */
@media (max-width:991.98px) {
    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }

    .app-mock-sidebar {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        min-height: auto;
    }
}

@media (max-width:575.98px) {
    .section-pad {
        padding: 64px 0;
    }

    .floating-card {
        display: none;
    }

    .fc-inventory,
    .fc-events {
        display: flex;
    }

    .fc-inventory {
        top: 2%;
        left: 2%;
    }

    .fc-events {
        bottom: 2%;
        left: 2%;
    }

    .final-cta {
        padding: 56px 20px;
    }
}
/* =========================================
   Enterprise Features
========================================= */

.enterprise-features {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.section-subtitle {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.7;
}

/* Feature Card */
.feature-card {
  background: #fff;
  border: 4px solid rgba(25, 169, 232, 0.08);
  border-radius: 18px;
  padding: 30px 15px 24px;
  box-shadow: 0 8px 30px rgba(23, 61, 106, 0.07);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(23, 61, 106, 0.13);
}

/* Icon */
.feature-icon {
  width: 85px;
  height: 85px;
  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(25, 169, 232, 0.12),
    rgba(108, 92, 231, 0.12)
  );
}

.feature-icon i {
  font-size: 48px;

  background: linear-gradient(
    135deg,
    #19a9e8,
    #6c5ce7
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature Title */
.feature-card h6 {
  font-size: 15px;
  font-weight: 600;
  color: #173d6a;
  margin: 0;
  line-height: 1.4;
}

/* Bottom Highlights */
.feature-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #173d6a;
  font-size: 17px;
  font-weight: 600;
}

.feature-highlights i {
  font-size: 21px;
  color: #19a9e8;
}

/* Desktop */
@media (min-width: 1200px) {
  .feature-card {
    min-height: 220px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .feature-card {
    min-height: 190px;
    padding: 25px 12px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .enterprise-features {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .enterprise-features h2 {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .feature-card {
    min-height: 170px;
    border-radius: 14px;
    padding: 20px 8px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .feature-icon i {
    font-size: 32px;
  }

  .feature-card h6 {
    font-size: 13px;
  }

  .feature-highlights span {
    font-size: 13px;
    gap: 5px;
  }

  .feature-highlights i {
    font-size: 17px;
  }
}

.hero-grid,
.hero-blob {
  pointer-events: none;
}
.btn-grad {
  position: relative;
  z-index: 2;
}
.btn-grad::before,
.btn-grad::after {
  pointer-events: none;
}