* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --blue: #1A6EF5;
    --blue2: #0A52CC;
    --blue-light: #EBF2FF;
    --blue-mid: #DBEAFE;
    --red: #E83535;
    --green: #22C55E;
    --orange: #F97316;
    --purple: #7C3AED;
    --text: #1A1A2E;
    --text2: #4A5068;
    --text3: #8888AA;
    --border: #E2E8F0;
    --bg: #FFFFFF;
    --bg2: #F7F9FC;
    --bg3: #EEF2FF;
    --shadow: 0 4px 24px rgba(26, 110, 245, 0.08);
    --shadow2: 0 12px 48px rgba(26, 110, 245, 0.13);
    --grad: linear-gradient(135deg, #1A6EF5, #7C3AED);
}

html {
    scroll-behavior: smooth
}

/* ── KEYFRAME ANIMATIONS ── */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 110, 245, .35);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(26, 110, 245, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 110, 245, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scalePop {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    60% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

/* body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0
} */

/* ── NAV ── */
/* nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px
}

.logo-wrap {
    display: flex;
    flex-direction: column
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-bars {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.lb {
    height: 3px;
    border-radius: 2px
}

.lb1 {
    background: var(--red);
    width: 20px
}

.lb2 {
    background: var(--blue);
    width: 14px
}

.lb3 {
    background: var(--green);
    width: 17px
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px
}

.lnav {
    color: var(--blue)
}

.lforms {
    color: var(--red)
}

.logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--text3);
    text-transform: uppercase;
    margin-left: 28px;
    margin-top: 1px
}

.nav-links {
    display: flex;
    gap: 2px;
    list-style: none
}

.nav-links a {
    color: var(--text2);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 8px;
    transition: all .2s
}

.nav-links a:hover {
    color: var(--blue);
    background: var(--blue-light)
}

.nav-btns {
    display: flex;
    gap: 10px
}

.btn-ghost {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 9px 22px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s
}

.btn-ghost:hover {
    background: var(--blue-light)
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(26, 110, 245, .3);
    transition: all .2s
}

.btn-blue:hover {
    background: var(--blue2);
    transform: translateY(-1px)
} */

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bh1 {
    width: 700px;
    height: 700px;
    background: rgba(26, 110, 245, .07);
    top: -150px;
    right: -120px
}

.bh2 {
    width: 450px;
    height: 450px;
    background: rgba(232, 53, 53, .05);
    bottom: -50px;
    left: -100px
}

.bh3 {
    width: 320px;
    height: 320px;
    background: rgba(124, 58, 237, .06);
    top: 38%;
    left: 28%
}

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF7ED;
    border: 1.5px solid #FED7AA;
    border-radius: 100px;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #EA580C;
    margin-bottom: 28px
}

.bspark {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F97316;
    animation: spark 1.5s infinite
}

@keyframes spark {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.6);
        opacity: .5
    }
}

.hero-text {
    font-size: clamp(42px, 5.5vw, 68px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 22px !important;
    max-width: 860px !important;
}

.hblue {
    color: var(--blue) !important;
}

.hred {
    color: var(--red) !important;
}

.hero-p {
    font-size: 18px !important;
    color: var(--text2);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 38px
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px
}

.btn-big {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s
}

.btn-pbig {
    background: var(--blue);
    color: #fff;
    border: none;
    box-shadow: 0 6px 24px rgba(26, 110, 245, .35)
}

.btn-pbig:hover {
    background: var(--blue2);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(26, 110, 245, .45)
}

.btn-obig {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border)
}

.btn-obig:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light)
}

/* ── HERO SCREENS ── */
.hero-screens {
    width: 100%;
    max-width: 1100px;
    position: relative;
    height: 430px
}

.scr {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow2);
    border: 1px solid var(--border);
    overflow: hidden
}

.scr-main {
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    top: 0;
    z-index: 3
}

.scr-left {
    left: 0;
    width: 268px;
    top: 60px;
    z-index: 2
}

.scr-right {
    right: 0;
    width: 268px;
    top: 60px;
    z-index: 2
}

.scr-bar {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 5px
}

.sd {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.sd-r {
    background: #FF5F57
}

.sd-y {
    background: #FFBD2E
}

.sd-g {
    background: #28CA41
}

.callout {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10
}

.cdash {
    top: -34px;
    left: 20px;
    color: var(--blue)
}

.cform {
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--green)
}

.cshare {
    top: -34px;
    right: 20px;
    color: var(--orange)
}

.mnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px 14px;
    border-bottom: 1px solid var(--border)
}

.mtabs {
    display: flex;
    gap: 7px
}

.mtab {
    font-size: 9px;
    color: var(--text3);
    padding: 3px 8px;
    border-radius: 4px
}

.mtab.on {
    background: var(--blue);
    color: #fff
}

.mcontent {
    display: flex;
    height: 260px
}

.mside {
    width: 112px;
    background: var(--bg2);
    border-right: 1px solid var(--border);
    padding: 10px 8px;
    overflow: hidden
}

.mstt {
    font-size: 8px;
    font-weight: 700;
    color: var(--text3);
    letter-spacing: 1px;
    margin-bottom: 7px
}

.mitem {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 7px;
    border-radius: 6px;
    margin-bottom: 2px
}

.mic {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    flex-shrink: 0
}

.mit {
    font-size: 9px;
    color: var(--text2)
}

.mform {
    flex: 1;
    padding: 12px;
    overflow: hidden
}

.mfield {
    margin-bottom: 7px
}

.mfl {
    font-size: 8px;
    color: var(--text3);
    margin-bottom: 3px
}

.mfi {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 9px;
    color: var(--text2);
    width: 100%
}

.dgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 8px
}

.dcard {
    background: var(--bg2);
    border-radius: 8px;
    padding: 10px
}

.dnum {
    font-size: 19px;
    font-weight: 800;
    color: var(--blue)
}

.dlbl {
    font-size: 8px;
    color: var(--text3);
    margin-top: 2px
}

.dchart {
    background: var(--bg2);
    border-radius: 8px;
    padding: 10px
}

.dcttl {
    font-size: 9px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px
}

.mbars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px
}

.mbar {
    flex: 1;
    border-radius: 3px 3px 0 0
}

.slink {
    background: var(--blue-light);
    border: 1px solid rgba(26, 110, 245, .2);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 9px;
    color: var(--blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.scopy {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 8px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.sopt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 5px
}

.soico {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px
}

.sotxt {
    font-size: 9px;
    color: var(--text2)
}

/* ── STATS ── */
.stats {
    padding: 52px 32px;
    border-top: 1px solid var(--border);
    background: #fff
}

.stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

.si {
    padding: 0 24px;
    border-right: 1px solid var(--border);
    text-align: center
}

.si:first-child {
    padding-left: 0;

}

.si:last-child {
    border-right: none;

}

.snum {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--blue)
}

.slbl {
    font-size: 13px;
    color: var(--text3);
    margin-top: 4px;
    line-height: 1.4
}

/* ── SECTIONS ── */
.section {
    padding: 50px 32px
}

.section-inner {
    max-width: 1240px;
    margin: 0 auto
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue-light);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .5px;
    margin-bottom: 16px
}

.pdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue)
}

h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px
}

h2 .ac {
    color: var(--blue)
}

.sub {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 52px
}

.ctr {
    text-align: center
}

.ctr .sub {
    margin-left: auto;
    margin-right: auto
}

.bg2 {
    background: var(--bg2)
}

/* ── ADVANTAGES (vs forms) ── */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.adv-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s
}

.adv-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow2);
    transform: translateY(-3px)
}

.adv-card:hover::before {
    transform: scaleX(1)
}

.adv-ico {
    font-size: 26px;
    margin-bottom: 14px
}

.adv-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px
}

.adv-desc {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.65
}

/* ── COMPARISON TABLE (vs PowerApps etc) ── */
.vs-section {
    background: linear-gradient(135deg, #EEF4FF 0%, #F5F0FF 100%)
}

.platform-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.ptab {
    padding: 10px 22px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    background: #fff
}

.ptab.active,
.ptab:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.platform-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow2);
    overflow: hidden
}

.pc-header {
    background: var(--grad);
    padding: 32px 40px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center
}

.pc-header-title {
    font-size: 13px;
    font-weight: 600;
    opacity: .75;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.pc-header h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2
}

.pc-header p {
    font-size: 14px;
    opacity: .85;
    line-height: 1.6;
    margin-top: 10px
}

.pc-badge {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    padding: 16px 20px
}

.pc-badge-label {
    font-size: 11px;
    font-weight: 600;
    opacity: .7;
    margin-bottom: 6px
}

.pc-badge-val {
    font-size: 22px;
    font-weight: 800
}

.pc-body {
    padding: 32px 40px
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.cl-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: start
}

.cl-row:last-child {
    border-bottom: none
}

.cl-feature {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.5;
    padding-right: 20px
}

.cl-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px
}

.cl-val {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 0
}

.cl-head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--text3);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border)
}

.cl-head.nav {
    color: var(--blue)
}

.yes {
    color: var(--green)
}

.no {
    color: #CCC;
    font-size: 18px
}

.partial {
    color: var(--orange)
}

.nav-val {
    color: var(--blue);
    font-weight: 700
}

/* ── FEATURES GRID ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.adv-grid+.feat-grid {
    margin-top: 32px
}

.platform-card-order-1 {
    order: 1
}

.platform-card-order-2 {
    order: 2
}

.platform-card-order-3 {
    order: 3
}

.platform-card-order-4 {
    order: 4
}

.platform-card-order-5 {
    order: 5
}

.platform-card-order-6 {
    order: 6
}

.platform-card-order-7 {
    order: 7
}

.platform-card-order-8 {
    order: 8
}

.platform-card-order-9 {
    order: 9
}

.fc {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.fc::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity .3s
}

.fc:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow2);
    transform: translateY(-4px)
}

.fc:hover::after {
    opacity: 1
}

.fc.f1::after {
    background: linear-gradient(90deg, var(--blue), var(--purple))
}

.fc.f2::after {
    background: linear-gradient(90deg, #00C9A7, var(--blue))
}

.fc.f3::after {
    background: linear-gradient(90deg, var(--orange), var(--red))
}

.fc.f4::after {
    background: linear-gradient(90deg, var(--red), #EC4899)
}

.fc.f5::after {
    background: linear-gradient(90deg, var(--purple), var(--blue))
}

.fc.f6::after {
    background: linear-gradient(90deg, var(--green), var(--blue))
}

.fc.f7::after {
    background: linear-gradient(90deg, #F59E0B, var(--orange))
}

.fc.f8::after {
    background: linear-gradient(90deg, #14B8A6, var(--green))
}

.fico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 16px
}

.ib {
    background: var(--blue-light)
}

.it {
    background: #E6FFF9
}

.io {
    background: #FFF7ED
}

.ir {
    background: #FFF0F0
}

.ip {
    background: #F5F0FF
}

.ig {
    background: #F0FDF4
}

.iy {
    background: #FFFBEB
}

.ic {
    background: #E0F7FA
}

.ftitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 9px
}

.fdesc {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.65
}

/* ── APPS ── */
.agrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px
}

#apps .ac {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    transition: all .25s;
}

#apps .ac:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-2px)
}

#apps .ac>div:last-child {
    min-width: 0
}

.aem {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--blue);
}

.aem svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue);
}

.an {
    font-size: 14px;
    font-weight: 700
}

.at {
    font-size: 11px;
    color: var(--text3);
    margin-top: 2px
}

/* ── AI SECTION ── */
.ai-wrap {
    background: linear-gradient(135deg, #EEF2FF, #FFF7ED);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.asteps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px
}

.astep {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.anum {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.anum.done {
    background: var(--green)
}

.ah {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.ap {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6
}

.chatwin {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow2);
    border: 1px solid var(--border);
    overflow: hidden
}

.ctopbar {
    background: var(--bg2);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px
}

.cav {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-weight: 700
}

.cbody {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.msg {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.6;
    max-width: 90%
}

.mu {
    background: var(--blue);
    color: #fff;
    align-self: flex-end;
    border-radius: 14px 14px 2px 14px
}

.ma {
    background: var(--bg2);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-radius: 14px 14px 14px 2px
}

.malbl {
    font-size: 10px;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: .5px
}

.typ {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    width: fit-content
}

.tdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text3);
    animation: td 1.2s infinite
}

.tdot:nth-child(2) {
    animation-delay: .2s
}

.tdot:nth-child(3) {
    animation-delay: .4s
}

@keyframes td {

    0%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-7px)
    }
}

/* ── VERIF ── */
.vgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.vc {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .25s
}

.vc:hover {
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(34, 197, 94, .1);
    transform: translateY(-2px)
}

.vico {
    width: 44px;
    height: 44px;
    background: #F0FDF4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

.vico svg {
    width: 22px;
    height: 22px;
    stroke: var(--green);
}

.vn {
    font-size: 14px;
    font-weight: 700
}

.vs {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px
}

.vtag {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 6px
}

/* ── WORKFLOW ── */
.wf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.wf-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    transition: all .3s
}

.wf-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.wf-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--blue-light);
    border-radius: 14px;
    margin: 0 auto 16px;
    color: var(--blue);
}

.wf-ico svg {
    stroke: var(--blue);
}

.wf-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px
}

.wf-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6
}

/* ── ALERTS ── */
.algrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.alcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all .3s
}

.alcard:hover {
    box-shadow: var(--shadow2);
    transform: translateY(-3px)
}

.alico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--blue-light);
    border-radius: 16px;
    margin-bottom: 20px;
    color: var(--blue);
}

.alico svg {
    stroke: var(--blue);
}

.alh {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px
}

.alp {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 18px
}

.altag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green)
}

/* ── PAYMENTS ── */
.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.pcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all .3s
}

.pcard:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow2);
    transform: translateY(-3px)
}

.plgo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--blue-light);
    border-radius: 16px;
    margin: 0 auto 16px;
    color: var(--blue);
}

.plgo svg {
    stroke: var(--blue);
}

.pnm {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px
}

.psub {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6
}

.pnote {
    margin-top: 28px;
    background: var(--blue-light);
    border: 1.5px solid rgba(26, 110, 245, .15);
    border-radius: 14px;
    padding: 18px 24px;
    font-size: 14px;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 14px
}

/* ── CTA ── */
.ctawrap {
    background: linear-gradient(135deg, #1A6EF5, #7C3AED);
    border-radius: 28px;
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cb1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
    top: -120px;
    left: -100px
}

.cb2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -80px;
    right: -80px
}

.ctawrap h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    letter-spacing: -.5px
}

.ctawrap p {
    font-size: 17px;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 38px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    position: relative;
    z-index: 2
}

.ctabtns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2
}

.bw {
    background: #fff;
    color: var(--blue);
    border: none;
    padding: 14px 36px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    transition: all .2s
}

.bw:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2)
}

.bwg {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    padding: 14px 36px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s
}

.bwg:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1)
}

/* ── FOOTER ── */
footer {
    padding: 18px 32px;
    border-top: 1px solid var(--border)
}

.fi {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px
}

.fl {
    display: flex;
    gap: 24px;
    list-style: none
}

.fl a {
    font-size: 13px;
    color: var(--text3);
    text-decoration: none;
    transition: color .2s
}

.fl a:hover {
    color: var(--blue)
}

.fc2 {
    font-size: 13px;
    color: var(--text3)
}

/* ── COMPARISON TABLE CORE ── */
.compare-table {
    background-color: #fff;
    border-collapse: collapse;
    width: 100%;
    min-width: 860px;
}

.compare-table thead th {
    font-weight: 700;
    vertical-align: middle;
}

.compare-table tbody tr {
    background-color: #ffffff;
}

.compare-table tbody tr.alt {
    background-color: #F7F9FC;
}

.compare-table tbody tr:hover {
    background-color: #EEF4FF;
}

.compare-table tbody td {
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    background-color: inherit;
    color: #1A1A2E;
}

.compare-table tbody td.td-nav {
    background-color: rgba(26, 110, 245, 0.06) !important;
}

/* Reset Bootstrap table variables for compare-table */
.compare-table> :not(caption)>*>* {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: transparent;
    box-shadow: none;
    color: #1A1A2E;
}

.trow {
    background-color: #ffffff;
    transition: background-color 0.15s;
}

.trow td {
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    background-color: inherit;
}


.trow.alt {
    background-color: #F7F9FC;
}

.trow:hover {
    background-color: #EEF4FF !important;
}

/* Feature column - always plain white / alt bg, clean text */
.td-feat {
    padding: 16px 24px;
    width: 28%;
    background-color: inherit !important;
}

.td-name {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 3px;
}

.td-sub {
    font-size: 12px;
    color: #8888AA;
    line-height: 1.4;
    font-weight: 400;
}

/* NavForms column highlight */
.td-nav {
    padding: 16px;
    text-align: center;
    background-color: rgba(26, 110, 245, 0.05) !important;
}

.td-other {
    padding: 16px;
    text-align: center;
    background-color: inherit !important;
}

.tag-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F0FDF4;
    color: var(--green);
    border: 1.5px solid #BBF7D0;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    gap: 3px
}

.tag-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFF0F0;
    color: var(--red);
    border: 1.5px solid #FECACA;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    gap: 3px
}

.tag-partial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFF7ED;
    color: var(--orange);
    border: 1.5px solid #FED7AA;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    gap: 3px
}

/* ── COMPARISON TABLE ENHANCEMENTS ── */

/* Group header row: NavForms vs Microsoft Stack */
.grp-hdr-row th {
    padding: 7px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

.grp-hdr-nav {
    background: rgba(26, 110, 245, 0.1) !important;
    color: var(--blue) !important;
    border-top: 3px solid var(--blue) !important;
    border-left: 1.5px solid rgba(26, 110, 245, 0.3) !important;
    border-right: 1.5px solid rgba(26, 110, 245, 0.3) !important;
    border-bottom: 1px solid rgba(26, 110, 245, 0.25) !important;
    text-align: center;
}

.grp-hdr-ms {
    background: var(--bg2) !important;
    color: var(--text3) !important;
    border-left: 1px solid var(--border) !important;
    text-align: center;
}

/* NavForms main column header: blue top-bar + tinted bg */
.th-nav-hdr {
    background: rgba(26, 110, 245, 0.08) !important;
    border-left: 1.5px solid rgba(26, 110, 245, 0.28) !important;
    border-right: 1.5px solid rgba(26, 110, 245, 0.28) !important;
}

/* "Best Choice" badge inside NavForms header */
.rec-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--blue);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 9px 3px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 5px;
    white-space: nowrap;
}

/* NavForms data cells: continuous left/right accent border */
.td-nav {
    border-left: 1.5px solid rgba(26, 110, 245, 0.2) !important;
    border-right: 1.5px solid rgba(26, 110, 245, 0.2) !important;
}

/* Category section rows: colored left accent bar */
.cat-row.cat-blue > td  { border-left: 4px solid var(--blue) !important; }
.cat-row.cat-teal > td  { border-left: 4px solid #059669 !important; }
.cat-row.cat-orange > td { border-left: 4px solid var(--orange) !important; }
.cat-row.cat-purple > td { border-left: 4px solid var(--purple) !important; }
.cat-row.cat-green > td  { border-left: 4px solid var(--green) !important; }

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 1200px) {
    .stats-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .si {
        border-right: none;
        padding: 0 10px;
        text-align: center !important;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
    }

    .hero .container {
        max-width: 100%;
        overflow: hidden;
    }

    .banner {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 24px auto 0;
        object-fit: contain;
    }

    .hero-screens {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .scr-main,
    .scr-left,
    .scr-right {
        position: relative;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 520px;
        top: 0;
    }

    .adv-grid,
    .feat-grid,
    .pgrid,
    .vgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agrid,
    .wf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-wrap {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .bh1,
    .bh2,
    .bh3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 110px 16px 35px;
    }

    h1 {
        font-size: clamp(32px, 8vw, 42px);
    }

    .hero-text {
        font-size: clamp(30px, 9vw, 42px) !important;
        line-height: 1.15 !important;
        letter-spacing: -0.8px !important;
    }

    .hero-p {
        font-size: 15px !important;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .banner {
        width: 100%;
        max-width: 100%;
        margin-top: 18px;
    }

    h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .section {
        padding: 35px 20px;
    }

    .adv-grid,
    .feat-grid,
    .pgrid,
    .vgrid,
    .algrid {
        grid-template-columns: 1fr;
    }

    .agrid,
    .wf-grid {
        grid-template-columns: 1fr;
    }

    #apps .agrid {
        gap: 12px;
    }

    #apps .ac {
        padding: 14px;
        gap: 12px;
    }

    #apps .aem {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    #apps .aem svg {
        width: 20px;
        height: 20px;
    }

    #apps .an {
        font-size: 13px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    #apps .at {
        font-size: 10px;
        line-height: 1.3;
    }

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ctawrap {
        padding: 50px 20px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns a,
    .hero-btns button {
        width: 100%;
        text-align: center;
    }

    .vs-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .compare-table {
        min-width: 720px;
        font-size: 12px;
    }

    .compare-table thead th {
        padding: 14px 10px !important;
    }

    .td-feat,
    .td-nav,
    .td-other {
        padding: 12px 10px;
    }

    .td-name {
        font-size: 12px;
    }

    .td-sub {
        font-size: 10px;
    }

    .tag-yes,
    .tag-no,
    .tag-partial {
        font-size: 10px;
        padding: 4px 7px;
        white-space: normal;
        line-height: 1.25;
    }
}

/* ─────────────────────────────────────────
   APPLIED ANIMATIONS
───────────────────────────────────────── */

/* Hero badge – float gently */
.hero-badge {
    animation: floatY 3.5s ease-in-out infinite;
}

/* Spark dot inside hero badge – blink */
.bspark {
    animation: blink 1.8s ease-in-out infinite;
}

/* Hero headline – slide up on load */
.hero-text {
    animation: fadeSlideUp .9s ease both;
    animation-delay: .1s;
}

/* Hero paragraph – slide up slightly after */
.hero-p {
    animation: fadeSlideUp .9s ease both;
    animation-delay: .25s;
}

/* Banner – gentle float */
.banner {
    animation: floatY 5s ease-in-out infinite;
}

/* Stats – each SI pops in */
.si {
    animation: fadeSlideUp .7s ease both;
}

.si:nth-child(1) {
    animation-delay: .0s;
}

.si:nth-child(2) {
    animation-delay: .1s;
}

.si:nth-child(3) {
    animation-delay: .2s;
}

.si:nth-child(4) {
    animation-delay: .3s;
}

.si:nth-child(5) {
    animation-delay: .4s;
}

/* Pill pdot – ring pulse */
.pdot {
    animation: pulse-ring 2s ease-out infinite;
}

/* Advantage cards – lift + glow on hover */
.adv-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 110, 245, .14);
}

/* Icon containers – pop + tilt on hover */
.aem,
.vico,
.wf-ico,
.alico,
.plgo,
.adv-ico,
.fico {
    transition: transform .2s ease;
}

.ac:hover .aem,
.vc:hover .vico,
.wf-card:hover .wf-ico,
.alcard:hover .alico,
.pcard:hover .plgo,
.adv-card:hover,
.fc:hover .fico {
    transform: scale(1.15) rotate(-4deg);
}

/* Feature cards – lift */
.fc {
    transition: transform .25s ease, box-shadow .25s ease;
}

.fc:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(26, 110, 245, .11);
}

/* Verification cards */
.vc {
    transition: transform .22s ease, box-shadow .22s ease;
}

.vc:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(34, 197, 94, .12);
}

/* Alert + Payment cards – ring glow on hover */
.alcard:hover {
    box-shadow: 0 0 0 3px rgba(26, 110, 245, .15), 0 12px 40px rgba(26, 110, 245, .1);
}

.pcard:hover {
    box-shadow: 0 0 0 3px rgba(26, 110, 245, .15), 0 12px 40px rgba(26, 110, 245, .1);
}

/* Stat numbers – shimmer gradient animation */
.snum {
    background: linear-gradient(90deg, currentColor 25%, rgba(255, 255, 255, .55) 50%, currentColor 75%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* CTA buttons – subtle lift + pulse ring */
.btn-get-started,
.bw {
    transition: transform .18s ease, box-shadow .18s ease;
}

.btn-get-started:hover,
.bw:hover {
    transform: translateY(-2px) scale(1.03);
    animation: pulse-ring .6s ease;
}