/* =====================================================================
   EPOS HUB – UK POS System · Premium SaaS design system
   Sections:
     1.  Design tokens
     2.  Reset & base
     3.  Layout utilities
     4.  Buttons
     5.  Header / nav / mega menu / mobile drawer
     6.  Hero
     7.  Trust strip
     8.  Industries grid
     9.  Features section & interactive showcase
     10. Dashboard showcase
     11. Vertical showcase blocks (restaurant / retail / bar)
     12. Integrations
     13. Why choose us
     14. How it works timeline
     15. Pricing
     16. Testimonials
     17. FAQ accordion
     18. Final CTA
     19. Footer
     20. Loader
     21. Animations & reveals
     22. Responsive
===================================================================== */

/* ---- 1. TOKENS ---------------------------------------------------- */
:root{
    /* Surfaces */
    --bg:            #ffffff;
    --bg-soft:       #f5f8ff;
    --bg-alt:        #eef3fb;
    --bg-dark:       #05132b;
    --bg-dark-2:     #0a1f42;
    --bg-dark-3:     #122a54;
    --surface:       #ffffff;
    --surface-alt:   #f8fafc;

    /* Borders */
    --border:        #e3eaf5;
    --border-strong: #cfd9ed;
    --border-dark:   rgba(255,255,255,.09);

    /* Text */
    --text:          #0a1a35;
    --text-2:        #1f2c47;
    --text-muted:    #5b6a86;
    --text-soft:     #7c8aa6;
    --text-inv:      #ffffff;
    --text-inv-muted:#a8b6d1;

    /* Brand – deep navy + electric blue */
    --navy:          #05132b;
    --navy-2:        #0a1f42;
    --brand:         #2563eb;
    --brand-2:       #1d4fd8;
    --brand-3:       #1e3fa8;
    --brand-light:   #60a5fa;
    --brand-soft:    #e0eaff;
    --brand-glow:    rgba(37,99,235,.32);

    /* Accent – electric blue -> cyan gradient tone */
    --accent:        #06b6d4;
    --accent-2:      #0891b2;
    --accent-soft:   #cffafe;

    /* Utility semantic */
    --success:       #10b981;
    --warning:       #f59e0b;
    --danger:        #ef4444;

    /* Gradients */
    --grad-brand:    linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --grad-brand-2:  linear-gradient(135deg, #1d4fd8 0%, #7c3aed 100%);
    --grad-hero:     linear-gradient(135deg, #05132b 0%, #0a1f42 55%, #12327a 100%);
    --grad-cta:      linear-gradient(135deg, #05132b 0%, #12245a 50%, #1e3a8a 100%);
    --grad-glow:     radial-gradient(circle at 30% 20%, rgba(37,99,235,.3), transparent 55%),
                     radial-gradient(circle at 80% 80%, rgba(96,165,250,.22), transparent 60%);

    /* Shadows */
    --shadow-xs:     0 1px 2px rgba(10,26,53,.05);
    --shadow-sm:     0 2px 8px rgba(10,26,53,.06);
    --shadow:        0 10px 32px -10px rgba(10,26,53,.14);
    --shadow-md:     0 18px 44px -14px rgba(10,26,53,.18);
    --shadow-lg:     0 30px 72px -22px rgba(10,26,53,.28);
    --shadow-brand:  0 18px 48px -14px rgba(37,99,235,.36);
    --shadow-brand-lg:0 30px 70px -20px rgba(37,99,235,.45);

    /* Radii */
    --r-xs:  8px;
    --r-sm:  12px;
    --r:     16px;
    --r-md:  20px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-2xl: 48px;

    /* Layout */
    --container: 1240px;
    --container-wide: 1360px;
    --header-h: 76px;

    /* Type */
    --font-body:    'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: 'Sora', 'Inter', system-ui, sans-serif;

    /* Transitions */
    --t-fast: .18s cubic-bezier(.4,0,.2,1);
    --t:      .28s cubic-bezier(.4,0,.2,1);
    --t-slow: .55s cubic-bezier(.16,1,.3,1);
    --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---- 2. RESET & BASE --------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
body.nav-open{ overflow: hidden; }
img, svg, video{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; transition: color var(--t-fast); }
button{ font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4, h5{
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 .5em;
    letter-spacing: -.025em;
    color: var(--text);
}
h1{ font-size: clamp(2.25rem, 4vw + .8rem, 4rem); }
h2{ font-size: clamp(1.75rem, 2.5vw + .6rem, 2.8rem); letter-spacing: -.028em; }
h3{ font-size: clamp(1.15rem, 1vw + .6rem, 1.5rem); letter-spacing: -.015em; }
h4{ font-size: 1.05rem; font-weight: 700; }
p{ margin: 0 0 1em; color: var(--text-2); }
p:last-child{ margin-bottom: 0; }
::selection{ background: var(--brand); color: #fff; }

/* ---- 3. LAYOUT UTILS --------------------------------------------- */
.container{
    width: 100%;
    max-width: var(--container);
    padding: 0 clamp(16px, 3vw, 32px);
    margin: 0 auto;
}
.container-wide{ max-width: var(--container-wide); }

.section{
    padding: clamp(72px, 8vw, 128px) 0;
    position: relative;
}
.section-tight{ padding: clamp(48px, 5vw, 88px) 0; }
.section-alt{ background: var(--bg-soft); }
.section-dark{ background: var(--navy); color: var(--text-inv); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4{ color: #fff; }
.section-dark p{ color: var(--text-inv-muted); }

.section-head{
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 64px);
    text-align: center;
}
.section-head p{
    color: var(--text-muted);
    font-size: 1.06rem;
    max-width: 640px;
    margin: 12px auto 0;
}
.section-dark .section-head p{ color: var(--text-inv-muted); }

.eyebrow{
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 99px;
    background: var(--brand-soft);
}
.section-dark .eyebrow{
    background: rgba(96,165,250,.14);
    color: var(--brand-light);
}
.gradient-text{
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* ---- 4. BUTTONS -------------------------------------------------- */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .96rem;
    letter-spacing: -.005em;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
    position: relative;
    overflow: hidden;
    line-height: 1;
    border: 1.5px solid transparent;
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-brand);
}
.btn:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-lg);
}
.btn:active{ transform: translateY(0); }

.btn-primary{
    background: var(--grad-brand);
    color: #fff;
    box-shadow: var(--shadow-brand);
}
.btn-primary:hover{ box-shadow: var(--shadow-brand-lg); }

.btn-dark{
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 32px -12px rgba(5,19,43,.45);
}
.btn-dark:hover{ background: var(--navy-2); }

.btn-ghost, .btn-outline{
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-strong);
    box-shadow: none;
}
.btn-ghost:hover, .btn-outline:hover{
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
}

.section-dark .btn-ghost, .section-dark .btn-outline{
    color: #fff;
    border-color: rgba(255,255,255,.28);
}
.section-dark .btn-ghost:hover, .section-dark .btn-outline:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}

.btn-light{
    background: #fff;
    color: var(--brand);
    box-shadow: 0 12px 32px -12px rgba(255,255,255,.4);
}
.btn-light:hover{ background: #fff; color: var(--brand-2); }

.btn-lg{ padding: 16px 30px; font-size: 1rem; }
.btn-sm{ padding: 9px 16px; font-size: .85rem; border-radius: 10px; }

.btn svg{ width: 14px; height: 14px; transition: transform var(--t); }
.btn:hover svg{ transform: translateX(3px); }

/* ---- 5. HEADER / NAV / MEGA -------------------------------------- */
.site-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: padding var(--t), background var(--t);
    background: rgba(255,255,255,.65);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled{
    padding: 8px 0;
    background: rgba(255,255,255,.92);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px -8px rgba(10,26,53,.08);
}

.nav-wrap{
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    z-index: 3;
}
.brand-img{
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.main-nav{
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
.nav-list{
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list > li{ position: relative; }
.nav-list > li > a{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: .93rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 10px;
    transition: color var(--t-fast), background var(--t-fast);
    position: relative;
}
.nav-list > li > a:hover,
.nav-list > li > a.active{
    color: var(--brand);
    background: var(--brand-soft);
}
.nav-drop svg{ transition: transform var(--t); }
.has-mega:hover .nav-drop svg,
.has-mega.mega-open .nav-drop svg{ transform: rotate(180deg); }

.nav-cta{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-login{
    font-size: .92rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 4px;
}
.nav-login:hover{ color: var(--brand); }
.nav-cta .btn{ padding: 11px 20px; font-size: .9rem; }

/* Mega menu (desktop) */
/*.mega{*/
/*    position: absolute;*/
/*    top: calc(100% + 12px);*/
/*    left: 50%;*/
/*    transform: translateX(-50%) translateY(6px);*/
/*    background: #fff;*/
/*    border-radius: var(--r-lg);*/
/*    padding: 26px;*/
/*    box-shadow: var(--shadow-lg);*/
/*    border: 1px solid var(--border);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    pointer-events: none;*/
/*    transition: opacity var(--t), transform var(--t), visibility var(--t);*/
/*    min-width: 560px;*/
/*    z-index: 100;*/
/*}*/

.mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 100%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border-radius: var(--r-lg);
    padding: 26px 26PX;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    min-width: 1005px;
    z-index: 100;
}

.has-mega:hover > .mega,
.has-mega.mega-open > .mega{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.has-mega-cta{ position: relative; }
.has-mega-cta > .mega{
    left: auto;
    right: 0;
    transform: translateX(0) translateY(6px);
    min-width: 620px;
}
.has-mega-cta:hover > .mega,
.has-mega-cta.mega-open > .mega{
    transform: translateX(0) translateY(0);
}

.mega-cols{
    display: grid;
    grid-template-columns: repeat(3, 1fr) 220px;
    gap: 26px;
}
.mega-col .mega-title{
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding: 0 8px;
}
.mega-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    transition: background var(--t-fast);
    color: var(--text);
    margin-bottom: 4px;
}
.mega-item:hover{ background: var(--brand-soft); }
.mega-icon{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--grad-brand);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.mega-item b{ display: block; font-size: .92rem; font-weight: 600; }
.mega-item small{ display: block; color: var(--text-muted); font-size: .82rem; margin-top: 2px; }

.mega-promo{
    background: var(--grad-brand);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mega-promo-title{
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}
.mega-promo p{ color: rgba(255,255,255,.86); font-size: .82rem; margin-bottom: 14px; }
.mega-promo .btn{ background: #fff; color: var(--brand); }

/* Book a demo mega (rich preview) */
.mega-demo-head{ margin-bottom: 18px; padding: 0 4px; }
.mega-demo-head h4{ margin: 6px 0 0; color: var(--text); font-family: var(--font-display); }
.mega-demo-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mega-demo-card{
    display: block;
    background: var(--surface-alt);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--border);
    transition: border-color var(--t), transform var(--t);
    color: var(--text);
}
.mega-demo-card:hover{
    border-color: var(--brand);
    transform: translateY(-3px);
}
.mdc-screen{
    background: var(--navy);
    border-radius: 10px;
    height: 100px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}
.mdc-screen-online{ background: var(--grad-brand); }
.mdc-screen-pos{ background: linear-gradient(135deg, #0a1f42, #12327a); }
.mdc-titlebar{ display: flex; gap: 4px; }
.mdc-titlebar span{ width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); }
.mdc-admin-body{ display: flex; gap: 6px; flex: 1; }
.mdc-sidebar{ width: 22%; display: flex; flex-direction: column; gap: 4px; }
.mdc-sb-item{ height: 8px; background: rgba(255,255,255,.15); border-radius: 3px; }
.mdc-sb-item.active{ background: var(--brand-light); }
.mdc-main{ flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mdc-stat-row{ display: flex; gap: 5px; }
.mdc-stat{ flex: 1; height: 14px; background: rgba(255,255,255,.15); border-radius: 3px; }
.mdc-stat.s2{ background: rgba(96,165,250,.35); }
.mdc-chart{ display: flex; align-items: flex-end; gap: 3px; flex: 1; }
.mdc-bar{ flex: 1; background: rgba(255,255,255,.2); border-radius: 2px 2px 0 0; }
.mdc-bar.hi{ background: var(--brand-light); }
.mdc-phone{ margin: auto; width: 44px; background: rgba(255,255,255,.95); border-radius: 8px; padding: 4px; height: 84px; display: flex; flex-direction: column; gap: 3px; }
.mdc-phone-notch{ width: 12px; height: 3px; background: var(--navy); border-radius: 2px; margin: 0 auto 2px; }
.mdc-phone-body{ flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mdc-mob-header, .mdc-mob-tabs, .mdc-mob-item{ background: var(--surface-alt); border-radius: 3px; }
.mdc-mob-header{ height: 6px; }
.mdc-mob-tabs{ display: flex; gap: 2px; padding: 2px; }
.mdc-mob-tabs span{ flex: 1; height: 4px; background: rgba(37,99,235,.15); border-radius: 2px; }
.mdc-mob-tabs span.active{ background: var(--brand); }
.mdc-mob-item{ height: 8px; display: flex; gap: 2px; align-items: center; padding: 0 2px; }
.mdc-mob-thumb{ width: 5px; height: 5px; background: var(--brand); border-radius: 1px; }
.mdc-mob-info{ display: flex; flex-direction: column; gap: 1px; flex: 1; }
.mdc-line{ height: 2px; background: rgba(10,26,53,.15); border-radius: 1px; }
.mdc-line.w-40{ width: 40%; }
.mdc-line.w-60{ width: 60%; }
.mdc-line.w-70{ width: 70%; }
.mdc-line.w-100{ width: 100%; }
.mdc-line.s{ height: 1.5px; }
.mdc-mob-cta{ height: 6px; background: var(--brand); border-radius: 3px; }
.mdc-pos-body{ flex: 1; display: flex; gap: 5px; }
.mdc-pos-grid{ flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.mdc-btn{ background: rgba(255,255,255,.14); border-radius: 3px; }
.mdc-btn.c2{ background: var(--brand-light); }
.mdc-btn.c4{ background: rgba(96,165,250,.4); }
.mdc-pos-side{ width: 34%; background: rgba(255,255,255,.1); border-radius: 4px; padding: 4px; display: flex; flex-direction: column; gap: 3px; }
.mdc-pos-pay{ margin-top: auto; background: var(--brand); color: #fff; text-align: center; font-size: 7px; font-weight: 700; padding: 3px; border-radius: 3px; }

.mdc-info{ padding: 2px; }
.mdc-tag{
    display: inline-block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}
.mdc-tag.orange{ background: var(--accent-soft); color: var(--accent-2); }
.mdc-tag.blue{ background: var(--brand-soft); color: var(--brand-2); }
.mdc-info b{ display: block; font-size: .88rem; font-weight: 700; margin-bottom: 2px; }
.mdc-info small{ display: block; color: var(--text-muted); font-size: .76rem; line-height: 1.4; }

.mega-demo-foot{
    margin-top: 18px;
    padding: 14px 16px;
    background: var(--bg-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.mega-demo-foot b{ display: block; font-size: .92rem; }
.mega-demo-foot small{ display: block; color: var(--text-muted); font-size: .78rem; margin-top: 2px; }

/* Mobile nav toggle */
.nav-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    z-index: 3;
    position: relative;
}
.nav-toggle span{
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 0 auto;
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t-fast);
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---- 6. HERO ----------------------------------------------------- */
.hero{
    position: relative;
    padding: calc(var(--header-h) + clamp(60px, 8vw, 100px)) 0 clamp(72px, 8vw, 120px);
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
    overflow: hidden;
}
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 60% at 15% 20%, rgba(37,99,235,.14), transparent 55%),
      radial-gradient(50% 50% at 90% 30%, rgba(124,58,237,.10), transparent 60%);
    pointer-events: none;
}
.hero-grid{
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-copy{ position: relative; }

.hero-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-2);
    box-shadow: var(--shadow-xs);
    margin-bottom: 24px;
}
.hero-eyebrow .dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(16,185,129,.15);
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
    0%,100%{ box-shadow: 0 0 0 4px rgba(16,185,129,.15); }
    50%{ box-shadow: 0 0 0 8px rgba(16,185,129,.05); }
}
.hero-title{
    font-size: clamp(2.4rem, 4.5vw + .5rem, 4.2rem);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 0 0 20px;
    color: var(--text);
}
.hero-title .gradient-text{ background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero-lead{
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hero-cta{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.hero-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: .85rem;
    color: var(--text-muted);
}
.hero-badges > div{ display: inline-flex; align-items: center; gap: 6px; }
.hero-badges svg{ color: var(--success); flex-shrink: 0; }

/* Hero visual — dashboard mockup */
.hero-visual{
    position: relative;
    perspective: 1400px;
}
.dash-wrap{
    position: relative;
    background: var(--grad-hero);
    padding: 22px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg), 0 40px 100px -30px rgba(37,99,235,.35);
    transform: rotateY(-6deg) rotateX(4deg);
    transform-style: preserve-3d;
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat{
    0%,100%{ transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
    50%{ transform: rotateY(-6deg) rotateX(4deg) translateY(-10px); }
}
.dash{
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 14px;
    min-height: 380px;
}
.dash-side{
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dash-brand{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
    font-size: .85rem;
    font-weight: 700;
}
.dash-brand::before{
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--grad-brand);
}
.dash-nav{ display: flex; flex-direction: column; gap: 3px; }
.dash-nav-item{
    padding: 8px 10px;
    font-size: .78rem;
    color: var(--text-muted);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.dash-nav-item::before{
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: var(--border-strong);
}
.dash-nav-item.active{
    background: var(--brand);
    color: #fff;
}
.dash-nav-item.active::before{ background: rgba(255,255,255,.8); }
.dash-body{ display: flex; flex-direction: column; gap: 12px; }
.dash-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-head-title{
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}
.dash-head-date{
    font-size: .72rem;
    color: var(--text-muted);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 99px;
}
.dash-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.dash-stat{
    padding: 12px;
    background: var(--bg-soft);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.dash-stat-label{
    font-size: .68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.dash-stat-val{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
    margin-top: 4px;
    line-height: 1;
}
.dash-stat-trend{
    font-size: .68rem;
    color: var(--success);
    font-weight: 700;
    margin-top: 4px;
}
.dash-chart{
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 14px 12px;
    height: 130px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}
.dash-chart-bar{
    flex: 1;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-light) 100%);
    border-radius: 4px 4px 0 0;
    opacity: .3;
    transition: opacity var(--t);
    animation: barGrow 1s var(--ease-out) forwards;
    transform-origin: bottom;
}
.dash-chart-bar.hi{ opacity: 1; }
@keyframes barGrow{
    from{ transform: scaleY(0); }
    to{ transform: scaleY(1); }
}
.dash-list{
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .78rem;
}
.dash-list-item{
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed var(--border);
}
.dash-list-item:last-child{ border-bottom: 0; }
.dash-list-item b{ color: var(--brand); font-weight: 700; }

/* Floating hero cards */
.float-card{
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floatCard 5s ease-in-out infinite;
}
.float-card-icon{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand);
    flex-shrink: 0;
}
.float-card-icon.green{ background: rgba(16,185,129,.15); color: var(--success); }
.float-card-icon.orange{ background: rgba(245,158,11,.15); color: var(--warning); }
.float-card-icon.purple{ background: rgba(124,58,237,.15); color: #7c3aed; }
.float-card-label{ font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.float-card-val{ font-family: var(--font-display); font-weight: 800; font-size: 1rem; margin-top: 2px; }

.float-1{ top: -20px; left: -30px; animation-delay: 0s; }
.float-2{ top: 30%; right: -40px; animation-delay: 1s; }
.float-3{ bottom: 30px; left: -40px; animation-delay: 2s; }
.float-4{ bottom: -20px; right: 20px; animation-delay: 3s; }

@keyframes floatCard{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
}

/* ---- 7. TRUST STRIP ---------------------------------------------- */
.trust-strip{
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-strip-label{
    text-align: center;
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.trust-logos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 50px;
}
.trust-logo{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: -.02em;
    opacity: .65;
    transition: opacity var(--t), color var(--t);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
}
.trust-logo:hover{ opacity: 1; color: var(--brand); }

/* Stats mini */
.trust-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 40px 0 0;
}
.trust-stat{
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
}
.trust-stat:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-stat-num{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.trust-stat-label{
    margin-top: 8px;
    font-size: .88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- 8. INDUSTRIES GRID ------------------------------------------ */
.industries-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-card{
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}
.industry-card::before{
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 140px;
    height: 140px;
    background: var(--grad-brand);
    opacity: .06;
    border-radius: 50%;
    filter: blur(30px);
    transition: opacity var(--t), transform var(--t);
}
.industry-card:hover{
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}
.industry-card:hover::before{
    opacity: .18;
    transform: scale(1.4);
}
.industry-icon{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--grad-brand);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    box-shadow: var(--shadow-brand);
    position: relative;
    z-index: 1;
}
.industry-icon svg{ width: 24px; height: 24px; }
.industry-card h3{
    font-size: 1.15rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.industry-card p{
    color: var(--text-muted);
    font-size: .92rem;
    flex: 1;
    position: relative;
    z-index: 1;
}
.industry-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--brand);
    font-weight: 600;
    font-size: .88rem;
    transition: gap var(--t);
    position: relative;
    z-index: 1;
}
.industry-link:hover{ gap: 12px; }

/* Colour accents rotated */
.industry-card:nth-child(2) .industry-icon{ background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 18px 48px -14px rgba(6,182,212,.4); }
.industry-card:nth-child(3) .industry-icon{ background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 18px 48px -14px rgba(139,92,246,.4); }
.industry-card:nth-child(4) .industry-icon{ background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 18px 48px -14px rgba(16,185,129,.4); }
.industry-card:nth-child(5) .industry-icon{ background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 18px 48px -14px rgba(245,158,11,.4); }
.industry-card:nth-child(6) .industry-icon{ background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 18px 48px -14px rgba(236,72,153,.4); }
.industry-card:nth-child(7) .industry-icon{ background: linear-gradient(135deg, #0ea5e9, #0369a1); box-shadow: 0 18px 48px -14px rgba(14,165,233,.4); }
.industry-card:nth-child(8) .industry-icon{ background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 18px 48px -14px rgba(239,68,68,.4); }

/* ---- 9. FEATURES SECTION ----------------------------------------- */
.features-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.feature-card{
    position: relative;
    background: #fff;
    padding: 24px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
    overflow: hidden;
}
.feature-card:hover{
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow);
}
.feature-icon{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    transition: background var(--t), color var(--t);
}
.feature-card:hover .feature-icon{
    background: var(--grad-brand);
    color: #fff;
}
.feature-icon svg{ width: 22px; height: 22px; }
.feature-card h4{
    font-size: 1rem;
    font-family: var(--font-display);
    margin: 0 0 6px;
    color: var(--text);
}
.feature-card p{
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* Interactive feature showcase */
.feature-showcase{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
    background: #fff;
    padding: 32px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-top: 48px;
}
.fs-tabs{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fs-tab{
    text-align: left;
    padding: 14px 18px;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background var(--t-fast), color var(--t-fast);
    border-left: 3px solid transparent;
    cursor: pointer;
}
.fs-tab:hover{ background: var(--bg-soft); }
.fs-tab.active{
    background: var(--brand-soft);
    color: var(--brand);
    border-left-color: var(--brand);
}
.fs-tab-icon{
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--bg-soft);
    display: grid; place-items: center;
    color: var(--text-muted);
    flex-shrink: 0;
}
.fs-tab.active .fs-tab-icon{ background: var(--brand); color: #fff; }
.fs-panels{ position: relative; min-height: 340px; }
.fs-panel{
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.fs-panel.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}
.fs-preview{
    background: var(--grad-hero);
    border-radius: var(--r-lg);
    padding: 24px;
    color: #fff;
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.fs-preview::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-glow);
    opacity: .5;
}
.fs-preview > *{ position: relative; z-index: 1; }
.fs-preview h3{ color: #fff; font-size: 1.4rem; margin: 0; }
.fs-preview p{ color: rgba(255,255,255,.8); font-size: .95rem; }
.fs-mock{
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px;
    display: grid;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.1);
    flex: 1;
}
.fs-mock-row{
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255,255,255,.06);
    border-radius: 8px;
    font-size: .85rem;
}
.fs-mock-row b{ color: var(--brand-light); font-weight: 700; }

/* ---- 10. DASHBOARD SHOWCASE -------------------------------------- */
.dash-showcase{
    background: var(--grad-hero);
    color: #fff;
    padding: clamp(64px, 8vw, 120px) 0;
    position: relative;
    overflow: hidden;
}
.dash-showcase::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-glow);
    opacity: .8;
    pointer-events: none;
}
.dash-showcase .section-head h2,
.dash-showcase .section-head p{ position: relative; z-index: 1; }
.dash-showcase .eyebrow{
    background: rgba(96,165,250,.16);
    color: var(--brand-light);
}
.dash-big{
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-xl);
    padding: 24px;
    backdrop-filter: blur(20px);
    max-width: 1080px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}
.dash-big-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.db-kpi{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    padding: 18px;
    border-radius: 14px;
}
.db-kpi-label{
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
.db-kpi-val{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    margin-top: 6px;
    color: #fff;
}
.db-kpi-trend{
    font-size: .78rem;
    color: #4ade80;
    margin-top: 6px;
    font-weight: 600;
}
.db-kpi-trend.down{ color: #fda4af; }
.dash-big-body{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}
.db-chart-card, .db-side-card{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 22px;
}
.db-chart-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.db-chart-title h4{ color: #fff; margin: 0; font-family: var(--font-display); font-size: 1rem; }
.db-chart-tabs{ display: flex; gap: 4px; }
.db-chart-tab{
    padding: 6px 12px;
    font-size: .74rem;
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    cursor: pointer;
}
.db-chart-tab.active{ background: var(--brand); color: #fff; }
.db-chart-svg{ width: 100%; height: 180px; }
.db-list-title{
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: 14px;
}
.db-list{ display: flex; flex-direction: column; gap: 10px; }
.db-list-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    font-size: .85rem;
}
.db-list-item b{ color: var(--brand-light); font-weight: 700; }

/* ---- 11. VERTICAL SHOWCASE BLOCKS -------------------------------- */
.vshow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.vshow:last-child{ margin-bottom: 0; }
.vshow.reverse{ direction: rtl; }
.vshow.reverse > *{ direction: ltr; }
.vshow h2{ margin-bottom: 20px; }
.vshow p{ color: var(--text-muted); font-size: 1.02rem; margin-bottom: 20px; }
.vshow-list{
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vshow-list li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: .96rem;
    font-weight: 500;
}
.vshow-list li::before{
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.vshow-visual{
    position: relative;
    background: var(--grad-hero);
    padding: 30px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5 / 4;
}
.vshow-visual.light{ background: #fff; border: 1px solid var(--border); }
.vshow-visual.dark{
    background: linear-gradient(140deg, #030a1a 0%, #0a1f42 100%);
    border: 1px solid rgba(255,255,255,.08);
}
.vshow-mock{
    background: rgba(255,255,255,.05);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
}
.vshow-visual.light .vshow-mock{
    background: var(--bg-soft);
    color: var(--text);
    border-color: var(--border);
}
.vshow-mock-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.vshow-visual.light .vshow-mock-head{ border-color: var(--border); }
.vshow-tile{
    padding: 12px 14px;
    background: rgba(255,255,255,.06);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
}
.vshow-visual.light .vshow-tile{ background: #fff; border: 1px solid var(--border); }
.vshow-tile b{ color: var(--brand-light); font-weight: 700; }
.vshow-visual.light .vshow-tile b{ color: var(--brand); }
.vshow-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
}
.vshow-btn{
    background: rgba(255,255,255,.06);
    border-radius: 10px;
    display: grid;
    place-items: center;
    padding: 12px;
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    min-height: 60px;
}
.vshow-btn.brand{ background: var(--brand); color: #fff; }
.vshow-visual.light .vshow-btn{ background: var(--bg-alt); }

/* ---- 12. INTEGRATIONS -------------------------------------------- */
.integrations-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.integration-card{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.integration-card:hover{
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow);
}
.integration-icon{
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-soft);
    display: grid;
    place-items: center;
    color: var(--brand);
    flex-shrink: 0;
    transition: background var(--t), color var(--t);
}
.integration-card:hover .integration-icon{ background: var(--brand); color: #fff; }
.integration-card b{ display: block; font-weight: 600; font-size: .95rem; }
.integration-card small{ color: var(--text-muted); font-size: .8rem; }

/* ---- 13. WHY CHOOSE US ------------------------------------------- */
.why-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card{
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
    overflow: hidden;
}
.why-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.why-icon{
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--grad-brand);
    color: #fff;
    margin-bottom: 18px;
    box-shadow: var(--shadow-brand);
}
.why-icon svg{ width: 26px; height: 26px; }
.why-card h3{
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.why-card p{
    color: var(--text-muted);
    font-size: .94rem;
    margin: 0;
}

/* ---- 14. HOW IT WORKS TIMELINE ----------------------------------- */
.hiw{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.hiw::before{
    content: "";
    position: absolute;
    top: 34px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-light) 15%, var(--brand-light) 85%, transparent);
    opacity: .4;
    z-index: 0;
}
.hiw-step{
    background: #fff;
    border-radius: var(--r-lg);
    padding: 26px 22px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
    transition: transform var(--t), box-shadow var(--t);
}
.hiw-step:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.hiw-num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-brand);
}
.hiw-step h4{
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-family: var(--font-display);
}
.hiw-step p{
    color: var(--text-muted);
    font-size: .88rem;
    margin: 0;
}

/* ---- 15. PRICING ------------------------------------------------- */
.pricing-toggle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-soft);
    padding: 5px;
    border-radius: 99px;
    border: 1px solid var(--border);
    margin: 0 auto 40px;
}
.pt-btn{
    padding: 10px 22px;
    border-radius: 99px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    transition: background var(--t), color var(--t);
    cursor: pointer;
}
.pt-btn.active{ background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.pt-save{
    font-size: .68rem;
    background: rgba(16,185,129,.14);
    color: var(--success);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 6px;
    font-weight: 700;
}

.pricing-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
}
.plan{
    position: relative;
    background: #fff;
    border-radius: var(--r-xl);
    padding: 36px 30px;
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
    display: flex;
    flex-direction: column;
}
.plan:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-featured{
    border-color: var(--brand);
    box-shadow: 0 20px 60px -15px rgba(37,99,235,.25);
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}
.plan-featured::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-brand);
    border-radius: var(--r-xl);
    z-index: -1;
    margin: -2px;
    opacity: .1;
}
.plan-badge{
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--grad-brand);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 99px;
    box-shadow: var(--shadow-brand);
}
.plan-name{
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 6px;
}
.plan-desc{
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 20px;
}
.plan-price{
    font-family: var(--font-display);
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}
.plan-price-amount{
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
}
.plan-price-per{
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
}
.plan-price-note{
    color: var(--text-muted);
    font-size: .8rem;
    margin-bottom: 24px;
}
.plan-cta{
    width: 100%;
    justify-content: center;
    margin-bottom: 26px;
}
.plan-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.plan-list li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: var(--text-2);
}
.plan-list li::before{
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- 16. TESTIMONIALS -------------------------------------------- */
.testi-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testi{
    background: #fff;
    padding: 30px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
    display: flex;
    flex-direction: column;
}
.testi:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars{
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testi-quote{
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
}
.testi-author{
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.testi-avatar{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.testi-name{ font-weight: 600; font-size: .92rem; color: var(--text); }
.testi-role{ font-size: .8rem; color: var(--text-muted); }

/* ---- 17. FAQ ACCORDION ------------------------------------------- */
.faq-wrap{
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open{
    border-color: var(--brand);
    box-shadow: var(--shadow);
}
.faq-q{
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    gap: 16px;
}
.faq-q-icon{
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background var(--t), transform var(--t);
    color: var(--brand);
}
.faq-item.open .faq-q-icon{
    background: var(--brand);
    color: #fff;
    transform: rotate(45deg);
}
.faq-a{
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow);
}
.faq-a-inner{
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.65;
}
.faq-item.open .faq-a{ max-height: 500px; }

/* ---- 18. FINAL CTA ----------------------------------------------- */
.final-cta{
    padding: clamp(72px, 8vw, 120px) 0;
    background: var(--grad-cta);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.final-cta::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 60% at 30% 30%, rgba(37,99,235,.35), transparent 60%),
      radial-gradient(45% 45% at 75% 70%, rgba(124,58,237,.28), transparent 60%);
    animation: ctaPulse 8s ease-in-out infinite;
}
@keyframes ctaPulse{
    0%,100%{ opacity: .8; transform: scale(1); }
    50%{ opacity: 1; transform: scale(1.05); }
}
.final-cta .container{ position: relative; z-index: 1; text-align: center; }
.final-cta h2{
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    max-width: 780px;
    margin: 0 auto 20px;
}
.final-cta p{
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 32px;
}
.final-cta-buttons{
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- 19. FOOTER --------------------------------------------------- */
.site-footer{
    background: var(--navy);
    color: var(--text-inv-muted);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-grid{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-brand img{ height: 40px; }
.footer-brand span{
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.15rem;
}
.footer-about{
    color: var(--text-inv-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 320px;
}
.footer-social{
    display: flex;
    gap: 10px;
}
.footer-social a{
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: grid;
    place-items: center;
    color: var(--text-inv-muted);
    transition: background var(--t), color var(--t);
}
.footer-social a:hover{ background: var(--brand); color: #fff; }
.footer-col h5{
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
}
.footer-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a{
    color: var(--text-inv-muted);
    font-size: .92rem;
    transition: color var(--t-fast);
}
.footer-col li a:hover{ color: #fff; }
.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .84rem;
}
.footer-bottom-links{
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-bottom-links a:hover{ color: #fff; }

/* ---- 20. LOADER --------------------------------------------------- */
#loader{
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: grid;
    place-items: center;
    transition: opacity .5s ease-out, visibility .5s ease-out;
}
#loader.hidden{ opacity: 0; visibility: hidden; pointer-events: none; }
.loader-wrap{ text-align: center; }
.loader-terminal{
    width: 140px;
    height: 100px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    margin: 0 auto 24px;
    padding: 12px;
    position: relative;
    animation: pulseTerm 1.8s ease-in-out infinite;
}
@keyframes pulseTerm{
    0%,100%{ box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
    50%{ box-shadow: 0 0 0 12px rgba(37,99,235,0); }
}
.loader-screen{ display: flex; flex-direction: column; gap: 5px; }
.loader-line{
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
    border-radius: 2px;
    opacity: 0;
    animation: loaderLine 2.4s infinite;
}
.loader-line:nth-child(1){ width: 90%; animation-delay: .0s; }
.loader-line:nth-child(2){ width: 65%; animation-delay: .15s; }
.loader-line:nth-child(3){ width: 80%; animation-delay: .3s; }
.loader-line:nth-child(4){ width: 55%; animation-delay: .45s; }
.loader-line:nth-child(5){ width: 75%; animation-delay: .6s; }
@keyframes loaderLine{
    0%,100%{ opacity: 0; transform: translateX(-20px); }
    30%,70%{ opacity: 1; transform: translateX(0); }
}
.loader-logo{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}
.loader-logo span:first-child{ color: var(--brand-light); }
.loader-logo span:last-child{ color: #fff; }
.loader-text{
    color: var(--text-inv-muted);
    font-size: .85rem;
    margin-bottom: 16px;
}
.loader-bar{
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}
.loader-bar-fill{
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
    animation: loaderFill 2s ease-in-out infinite;
}
@keyframes loaderFill{
    0%{ width: 0; }
    100%{ width: 100%; }
}
.loader-receipt{ display: none; }

/* ---- 21. ANIMATIONS & REVEALS ------------------------------------ */
.reveal-on-scroll{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-on-scroll.in{
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger > *{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-stagger.in > *{
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: .1s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: .3s; }
.reveal-stagger.in > *:nth-child(7){ transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(8){ transition-delay: .4s; }

/* Simple page header (inner pages) */
.page-hero{
    padding: calc(var(--header-h) + 80px) 0 60px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 50% at 50% 0%, rgba(37,99,235,.1), transparent 70%);
}
.page-hero .container{ position: relative; z-index: 1; }
.page-hero h1{ margin-bottom: 16px; font-size: clamp(2rem, 3.5vw + .5rem, 3.4rem); }
.page-hero p{ max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem; }

/* Forms */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field{ display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}
.form-field input, .form-field select, .form-field textarea{
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: .95rem;
    transition: border-color var(--t), box-shadow var(--t);
    color: var(--text);
    width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.form-field textarea{ resize: vertical; min-height: 120px; }
.form-card{
    background: #fff;
    padding: 40px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* ---- 22. RESPONSIVE ---------------------------------------------- */
@media (max-width: 1200px){
    .industries-grid{ grid-template-columns: repeat(3, 1fr); }
    .features-grid{ grid-template-columns: repeat(3, 1fr); }
    .integrations-grid{ grid-template-columns: repeat(3, 1fr); }
    .dash-big-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px){
    .main-nav{
        position: fixed;
        top: 0; right: 0;
        width: min(400px, 100vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: calc(var(--header-h) + 20px) 24px 40px;
        transform: translateX(100%);
        transition: transform var(--t);
        overflow-y: auto;
        box-shadow: -30px 0 60px -20px rgba(10,26,53,.2);
        z-index: 2;
    }
    .main-nav.open{ transform: translateX(0); }
    .nav-list{
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-list > li > a{
        padding: 14px 16px;
        font-size: 1rem;
        justify-content: space-between;
    }
    .nav-cta{
        flex-direction: column;
        align-items: stretch;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
    }
    .nav-login{ text-align: center; padding: 12px; }
    .mega{
        position: static;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        transform: none;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        overflow: hidden;
        transition: max-height var(--t);
    }
    .has-mega.mega-open > .mega{
        visibility: visible;
        pointer-events: auto;
        max-height: 1200px;
        padding: 16px 0;
    }
    .has-mega-cta > .mega,
    .has-mega:hover > .mega,
    .has-mega.mega-open > .mega{ transform: none; left: auto; }
    .has-mega-cta > .mega{ min-width: 0; right: auto; }
    .mega-cols{ grid-template-columns: 1fr; gap: 16px; }
    .mega-demo-grid{ grid-template-columns: 1fr; gap: 10px; }
    .mega-promo{ padding: 16px; }
    .mega-demo-foot{ flex-direction: column; align-items: stretch; text-align: center; }
    .mega-demo-foot .btn{ width: 100%; justify-content: center; }
    .nav-toggle{ display: flex; }
    .site-header.scrolled{ padding: 10px 0; }
}

@media (max-width: 960px){
    .hero-grid{ grid-template-columns: 1fr; text-align: center; }
    .hero-lead{ margin-left: auto; margin-right: auto; }
    .hero-cta{ justify-content: center; }
    .hero-badges{ justify-content: center; }
    .float-2{ right: -10px; }
    .float-3{ left: -10px; }
    .dash-showcase .dash-big-body{ grid-template-columns: 1fr; }
    .feature-showcase{ grid-template-columns: 1fr; gap: 24px; padding: 24px; }
    .fs-tabs{ flex-direction: row; overflow-x: auto; gap: 6px; padding-bottom: 6px; }
    .fs-tab{ min-width: 180px; }
    .vshow{ grid-template-columns: 1fr; }
    .vshow.reverse{ direction: ltr; }
    .why-grid{ grid-template-columns: repeat(2, 1fr); }
    .hiw{ grid-template-columns: repeat(2, 1fr); }
    .hiw::before{ display: none; }
    .pricing-grid{ grid-template-columns: 1fr; max-width: 500px; }
    .testi-grid{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-col{ grid-column: 1 / -1; }
    .industries-grid, .features-grid, .integrations-grid, .trust-stats{
        grid-template-columns: repeat(2, 1fr);
    }
    .dash-big-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
    body{ font-size: 15.5px; }
    .hero{ padding: calc(var(--header-h) + 40px) 0 60px; }
    .hero-title{ font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero-lead{ font-size: 1rem; }
    .btn-lg{ padding: 14px 22px; font-size: .95rem; }
    .float-1, .float-2, .float-3, .float-4{ display: none; }
    .dash-wrap{ transform: none; animation: none; padding: 14px; }
    .dash{ grid-template-columns: 1fr; min-height: 0; }
    .dash-side{ display: none; }
    .form-grid{ grid-template-columns: 1fr; }
    .form-card{ padding: 24px; }
    .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom{ flex-direction: column; text-align: center; }
    .section{ padding: 56px 0; }
    .final-cta-buttons{ flex-direction: column; align-items: center; }
    .final-cta-buttons .btn{ width: 100%; max-width: 300px; }
    .trust-logos{ gap: 14px 30px; }
    .trust-logo{ font-size: .95rem; }
    .hero-cta{ flex-direction: column; align-items: stretch; }
    .hero-cta .btn{ width: 100%; }
}

@media (max-width: 480px){
    .industries-grid, .features-grid, .integrations-grid{
        grid-template-columns: 1fr;
    }
    .trust-stats, .why-grid, .hiw{
        grid-template-columns: 1fr;
    }
    .dash-big-grid{ grid-template-columns: 1fr; }
    .container{ padding: 0 16px; }
    h1{ font-size: 2.1rem; }
    h2{ font-size: 1.65rem; }
    .plan{ padding: 28px 22px; }
    .brand-img{ height: 34px; }
}

@media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .1s !important;
    }
    .dash-wrap{ transform: none; }
    .float-card{ animation: none; }
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}
.contact-item{
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-soft);
}
.contact-item:last-child{ border-bottom: none; }
.contact-icon{
    width: 44px; height: 44px;
    border-radius: var(--r-2);
    background: var(--brand-soft);
    color: var(--brand);
    display: grid; place-items: center;
    flex: 0 0 44px;
}
.contact-label{
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-value{
    font-family: var(--f-display);
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 600;
}
.contact-value a{ color: var(--brand); text-decoration: none; }
.contact-value a:hover{ text-decoration: underline; }

/* Blog list */
.blog-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.blog-card{
    background: #fff;
    border-radius: var(--r-3);
    padding: 32px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 6px 20px rgba(15,23,42,.04);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.blog-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37,99,235,.12);
}
.blog-card-tag{
    display: inline-block;
    font-size: .7rem;
    padding: 4px 12px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 99px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 16px;
    align-self: flex-start;
}
.blog-card h3{
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.35;
}
.blog-card p{ color: var(--text-muted); margin-bottom: 20px; flex: 1; }
.blog-card-meta{
    font-size: .82rem;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
}

/* Version-update timeline */
.version-list{ display: flex; flex-direction: column; gap: 24px; max-width: 780px; margin: 0 auto; }
.version-item{
    background: #fff;
    border-radius: var(--r-3);
    padding: 28px 32px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 6px 20px rgba(15,23,42,.04);
}
.version-head{
    display: flex; justify-content: space-between;
    align-items: baseline; gap: 12px; margin-bottom: 12px;
    flex-wrap: wrap;
}
.version-num{
    font-family: var(--f-display);
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 700;
}
.version-date{
    font-size: .85rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--bg-soft);
    border-radius: 99px;
}
.version-item ul{ list-style: none; margin: 12px 0 0; padding: 0; }
.version-item ul li{
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-muted);
}
.version-item ul li::before{
    content: "";
    position: absolute; left: 0; top: 14px;
    width: 8px; height: 8px;
    background: var(--brand);
    border-radius: 50%;
}

@media (max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
}

/* ======================================================================
   3D ENHANCEMENTS & MODERN EFFECTS – added on top of base styles
====================================================================== */

/* ---- Gradient mesh + floating orbs backgrounds ---- */
.mesh-bg{ position: relative; overflow: hidden; }
.mesh-bg::before, .mesh-bg::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: .55;
}
.mesh-bg::before{
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(37,99,235,.7), transparent 70%);
    top: -160px; left: -160px;
    animation: orbFloat1 18s ease-in-out infinite;
}
.mesh-bg::after{
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(139,92,246,.55), transparent 70%);
    bottom: -180px; right: -180px;
    animation: orbFloat2 22s ease-in-out infinite;
}
.mesh-bg > * { position: relative; z-index: 1; }
@keyframes orbFloat1{
    0%,100%{ transform: translate(0,0) scale(1); }
    50%{ transform: translate(80px, 60px) scale(1.15); }
}
@keyframes orbFloat2{
    0%,100%{ transform: translate(0,0) scale(1); }
    50%{ transform: translate(-70px, -50px) scale(1.2); }
}

/* Hero: rich mesh + animated aurora blobs */
.hero{ position: relative; }
.hero .aurora{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero .aurora span{
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .55;
    mix-blend-mode: multiply;
}
.hero .aurora span:nth-child(1){
    width: 560px; height: 560px;
    background: radial-gradient(circle, #2563eb, transparent 70%);
    top: -150px; left: -100px;
    animation: heroBlob 20s ease-in-out infinite;
}
.hero .aurora span:nth-child(2){
    width: 480px; height: 480px;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    top: 30%; right: -120px;
    animation: heroBlob 25s ease-in-out infinite reverse;
}
.hero .aurora span:nth-child(3){
    width: 500px; height: 500px;
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
    bottom: -180px; left: 30%;
    animation: heroBlob 28s ease-in-out infinite;
}
@keyframes heroBlob{
    0%,100%{ transform: translate(0,0) scale(1); }
    33%{ transform: translate(60px,-40px) scale(1.12); }
    66%{ transform: translate(-40px,50px) scale(.92); }
}

/* Grid overlay on hero (subtle tech texture) */
.hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* ---- Enhanced 3D dashboard mockup with parallax layers ---- */
.dash-wrap{
    transform-style: preserve-3d;
    transition: transform .3s ease-out;
}
.dash-wrap.tilt-3d{
    transform: rotateY(calc(var(--tx,0) * 1deg)) rotateX(calc(var(--ty,0) * 1deg)) translateY(-2px);
}
.dash-wrap::before{
    content: "";
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(37,99,235,.5), rgba(139,92,246,.4), rgba(6,182,212,.4));
    border-radius: 30px;
    filter: blur(40px);
    opacity: .35;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse{
    0%,100%{ opacity: .3; transform: scale(1); }
    50%{ opacity: .55; transform: scale(1.06); }
}

/* Floating cards get depth and z-translate */
.float-card{
    transform-style: preserve-3d;
    box-shadow:
      0 20px 40px -12px rgba(10,26,53,.18),
      0 8px 16px -8px rgba(37,99,235,.15),
      inset 0 1px 0 rgba(255,255,255,.6);
    transition: transform .4s var(--ease-out);
}
.float-card:hover{
    transform: translateY(-6px) translateZ(20px) scale(1.06);
}

/* ---- 3D tilt (JS-driven) ---- */
.tilt-3d-card{
    transform-style: preserve-3d;
    transition: transform .3s ease-out, box-shadow .3s ease-out;
    position: relative;
}
.tilt-3d-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle 320px at var(--mx,50%) var(--my,50%), rgba(37,99,235,.15), transparent 50%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    z-index: 1;
}
.tilt-3d-card:hover::before{ opacity: 1; }

/* Feature card cursor-follow glow (upgraded) */
.feature-card{
    background:
      radial-gradient(circle 200px at var(--fx,50%) var(--fy,50%), rgba(37,99,235,.06), transparent 50%),
      #fff;
    transform-style: preserve-3d;
}
.feature-card::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent, rgba(37,99,235,.35), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.feature-card:hover::after{ opacity: 1; }

/* Industry cards: deeper 3D lift */
.industry-card{
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
}
.industry-card:hover{
    transform: translateY(-10px) translateZ(20px) rotateX(2deg);
    box-shadow:
      0 40px 80px -20px rgba(10,26,53,.35),
      0 20px 40px -12px rgba(37,99,235,.25);
}
.industry-icon{
    transition: transform .5s var(--ease-out);
}
.industry-card:hover .industry-icon{
    transform: translateZ(30px) rotate(-6deg) scale(1.1);
}

/* Why cards deeper 3D */
.why-card{
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
    background:
      radial-gradient(circle 300px at var(--mx,50%) var(--my,-20%), rgba(37,99,235,.08), transparent 60%),
      #fff;
}
.why-card:hover{
    transform: translateY(-10px) translateZ(20px);
    box-shadow:
      0 40px 80px -22px rgba(10,26,53,.3),
      0 15px 30px -10px rgba(37,99,235,.2);
}
.why-card:hover .why-icon{
    transform: translateZ(25px) scale(1.08);
}
.why-icon{ transition: transform .4s var(--ease-out); }

/* Testimonial cards float and glow */
.testi{
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.testi:hover{
    transform: translateY(-8px) translateZ(15px);
    box-shadow: 0 35px 70px -20px rgba(10,26,53,.28);
}

/* Plans: dramatic 3D on hover */
.plan{
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.plan:hover{
    transform: translateY(-12px) translateZ(25px) rotateX(2deg);
    box-shadow:
      0 50px 100px -30px rgba(10,26,53,.35),
      0 25px 50px -15px rgba(37,99,235,.3);
}
.plan-featured{
    transform: translateY(-6px);
}
.plan-featured:hover{
    transform: translateY(-16px) translateZ(30px);
}

/* Buttons: enhanced with shimmer + magnetic */
.btn{
    transform-style: preserve-3d;
    will-change: transform;
}
.btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.35) 50%, transparent 75%);
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position .6s ease-out;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}
.btn:hover::before{ background-position: 200% 0; }
.btn > *{ position: relative; z-index: 1; }
.btn.magnetic{ transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow var(--t); }

/* Hiw steps: floating number with pulse */
.hiw-num{
    position: relative;
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-out);
}
.hiw-num::after{
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--grad-brand);
    filter: blur(20px);
    opacity: .35;
    z-index: -1;
    animation: numGlow 3s ease-in-out infinite;
}
@keyframes numGlow{
    0%,100%{ opacity: .3; transform: scale(1); }
    50%{ opacity: .55; transform: scale(1.15); }
}
.hiw-step:hover .hiw-num{
    transform: translateY(-4px) translateZ(20px) rotateY(360deg);
    transition: transform .8s var(--ease-out);
}

/* Trust stat cards with counter glow */
.trust-stat{
    transform-style: preserve-3d;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.trust-stat:hover{
    transform: translateY(-6px) translateZ(15px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(37,99,235,.25);
}

/* Integration cards */
.integration-card{
    transform-style: preserve-3d;
    transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
}
.integration-card:hover{
    transform: translateY(-6px) translateZ(15px);
    box-shadow: 0 25px 50px -14px rgba(37,99,235,.25);
}
.integration-card:hover .integration-icon{
    transform: rotate(-8deg) scale(1.15);
    transition: transform .4s var(--ease-out);
}

/* Section-alt gets glass frosted look */
.section-alt{
    position: relative;
}
.section-alt::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle 500px at 15% 20%, rgba(37,99,235,.08), transparent 60%),
      radial-gradient(circle 500px at 85% 80%, rgba(139,92,246,.06), transparent 60%);
    pointer-events: none;
}
.section-alt > *{ position: relative; }

/* Section headings – glow + shimmer on gradient text */
.gradient-text{
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 40%, #8b5cf6 70%, #06b6d4 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 6s ease-in-out infinite;
}
@keyframes textShimmer{
    0%,100%{ background-position: 0% 50%; }
    50%{ background-position: 100% 50%; }
}

/* Dash showcase (dark section) – add glass on cards */
.db-kpi, .db-chart-card, .db-side-card{
    background: linear-gradient(140deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
    transition: transform .4s var(--ease-out);
}
.db-kpi:hover{
    transform: translateY(-4px) translateZ(10px);
}

/* Final CTA – add moving gradient conic */
.final-cta{
    background: linear-gradient(135deg, #05132b 0%, #12245a 50%, #1e3a8a 100%);
    position: relative;
}
.final-cta::after{
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg at 50% 50%,
      rgba(37,99,235,.15),
      rgba(139,92,246,.15),
      rgba(6,182,212,.15),
      rgba(37,99,235,.15));
    animation: rotConic 25s linear infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    opacity: .8;
}
@keyframes rotConic{ to{ transform: rotate(360deg); } }
.final-cta .container{ z-index: 2; }

/* Feature showcase: interactive preview stronger 3D */
.fs-preview{
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-out);
    box-shadow:
      0 40px 80px -20px rgba(37,99,235,.35),
      inset 0 1px 0 rgba(255,255,255,.14);
}
.fs-preview::after{
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(37,99,235,.5), transparent 70%);
    filter: blur(40px);
    opacity: .35;
    z-index: -1;
}

/* FAQ items open with lift */
.faq-item.open{
    transform: translateY(-2px);
    box-shadow:
      0 20px 40px -12px rgba(37,99,235,.18),
      0 8px 16px -6px rgba(10,26,53,.08);
}

/* Header glass upgrade */
.site-header{
    background: rgba(255,255,255,.72);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.site-header.scrolled{
    background: rgba(255,255,255,.85);
    box-shadow:
      0 6px 24px -8px rgba(10,26,53,.1),
      inset 0 -1px 0 rgba(37,99,235,.08);
}

/* Nav-cta primary button glow */
.nav-cta .btn-primary{
    box-shadow:
      0 8px 24px -8px rgba(37,99,235,.5),
      inset 0 1px 0 rgba(255,255,255,.2);
    position: relative;
}
.nav-cta .btn-primary::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: linear-gradient(135deg, #2563eb, #4f46e5, #8b5cf6);
    filter: blur(14px);
    opacity: 0;
    transition: opacity .3s;
    z-index: -1;
}
.nav-cta .btn-primary:hover::after{ opacity: .55; }

/* Mega demo cards get 3D pop */
.mega-demo-card{
    transform-style: preserve-3d;
    transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.mega-demo-card:hover{
    transform: translateY(-4px) translateZ(15px) rotateX(3deg);
    box-shadow: 0 25px 50px -14px rgba(37,99,235,.35);
}

/* Reveal-on-scroll: smoother with scale */
.reveal-on-scroll{
    opacity: 0;
    transform: translateY(30px) scale(.97);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-on-scroll.in{
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Scroll-linked parallax helpers */
.parallax{ will-change: transform; }

/* Cursor follow global on interactive elements */
.hover-lift{
    transition: transform .3s var(--ease-out), box-shadow .3s;
}
.hover-lift:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Bento-grid gradient border for premium plans */
.plan-featured{
    background:
      linear-gradient(#fff, #f5f8ff) padding-box,
      linear-gradient(135deg, #2563eb, #8b5cf6, #06b6d4) border-box;
    border: 2px solid transparent;
}

/* Animated underline for nav links */
.nav-list > li > a{ position: relative; }
.nav-list > li > a::after{
    content: "";
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--grad-brand);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease-out);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after{ transform: scaleX(1); }

/* Cursor-follow spotlight on dark sections */
.dash-showcase{
    background:
      radial-gradient(circle 800px at var(--mx,50%) var(--my,50%), rgba(37,99,235,.25), transparent 50%),
      var(--grad-hero);
}

/* Loader upgrade with 3D perspective */
.loader-terminal{
    transform: perspective(400px) rotateX(20deg);
    transform-style: preserve-3d;
}

/* Reveal stagger extended (up to 12) */
.reveal-stagger.in > *:nth-child(9){ transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(10){ transition-delay: .5s; }
.reveal-stagger.in > *:nth-child(11){ transition-delay: .55s; }
.reveal-stagger.in > *:nth-child(12){ transition-delay: .6s; }

/* Utility 3D transform stage */
.stage-3d{ perspective: 1200px; }
.card-3d{ transform-style: preserve-3d; }

/* Scroll indicator */
.scroll-indicator{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 3;
}
.scroll-indicator .line{
    width: 1.5px;
    height: 32px;
    background: linear-gradient(180deg, var(--brand), transparent);
    border-radius: 2px;
}
@keyframes scrollBounce{
    0%,100%{ transform: translateX(-50%) translateY(0); opacity: 1; }
    50%{ transform: translateX(-50%) translateY(6px); opacity: .5; }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce){
    .dash-wrap,
    .float-card,
    .aurora span,
    .mesh-bg::before, .mesh-bg::after,
    .final-cta::after,
    .hiw-num::after,
    .gradient-text,
    .scroll-indicator{ animation: none !important; }
}

/* Mobile: disable heavy 3D transforms */
@media (max-width: 960px){
    .industry-card:hover,
    .why-card:hover,
    .plan:hover,
    .testi:hover,
    .integration-card:hover,
    .trust-stat:hover,
    .mega-demo-card:hover,
    .float-card:hover{
        transform: translateY(-4px);
    }
    .dash-wrap{ transform: none !important; animation: none; }
    .hero .aurora span{ opacity: .3; }
}
