/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-thumb {
    background: var(--accent)
}

/* ── TOKENS ── */
:root {
    --ink: #0D1117;
    --ink-2: #3D4451;
    --ink-3: #6E7787;
    --border: #E2E5EA;
    --surface: #F7F8FA;
    --paper: #FFFFFF;
    --accent: #1B6EF3;
    --accent-dk: #0F52CC;
    --accent-lt: #EBF1FE;
    --green: #0D9E6E;
    --green-lt: #E6F7F1;
    --amber: #E8831A;
    --r: 6px;
    --r-lg: 12px;
    --shadow: 0 1px 3px rgba(13, 17, 23, .06), 0 4px 16px rgba(13, 17, 23, .06);
    --shadow-lg: 0 8px 40px rgba(13, 17, 23, .10);
    --f: 'Source Sans 3', 'Source Sans Pro', sans-serif;
}

body {
    font-family: var(--f);
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px
}

img {
    display: block
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.3px
}

p {
    color: var(--ink-2)
}

/* ── UTILITIES ── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid var(--border);
    color: var(--ink-3);
    background: var(--surface)
}

.chip-blue {
    border-color: rgba(27, 110, 243, .2);
    color: var(--accent);
    background: var(--accent-lt)
}

.chip-green {
    border-color: rgba(13, 158, 110, .2);
    color: var(--green);
    background: var(--green-lt)
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .1px
}

.btn-solid {
    background: var(--ink);
    color: #fff;
    padding: 8px 15px;
}

.btn-solid:hover {
    background: #1a2233;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 17, 23, .18);
    color: #fff
}

.btn-line {
    background: #4d40b6;
    color: #fff;
    border: 1.5px solid var(--border);
    padding: 8px 20px;
}

.btn-line:hover {
    border-color: var(--ink);
    background: var(--surface);
    color: var(--ink)
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    box-shadow: 0 4px 14px rgba(27, 110, 243, .3)
}

.btn-accent:hover {
    background: var(--accent-dk);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(27, 110, 243, .36);
    color: #fff
}

/* ══════════════════════════════════ NAV ══════════════════════════════════ */
#nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 0
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    padding-right: 28px;
    border-right: 1px solid var(--border);
    flex-shrink: 0
}

.nav-mark {
    width: 30px;
    height: 30px;
    background: var(--ink);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.5px
}

.nav-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink)
}

.nav-name b {
    font-weight: 600
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0 6px;
    flex: 1;
    flex-wrap: nowrap;
    overflow: hidden
}

.nav-links a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
    padding: 5px 11px;
    border-radius: var(--r);
    white-space: nowrap;
    transition: all .18s;
    display: block
}

.nav-links a:hover {
    color: var(--ink);
    background: var(--surface)
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-left: 16px;
    border-left: 1px solid var(--border)
}

.nav-phone {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-2);
    padding-right: 10px;
    white-space: nowrap
}

.nav-phone a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500
}

.nav-burger {
    display: none;
    background: none;
    border: 1.5px solid #292c31;
    width: 36px;
    height: 36px;
    border-radius: var(--r);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #0d1117;
}

/* ══════════════════════════════════ HERO — Minimal editorial split ══════════════════════════════════ */
#hero {
    min-height: 60vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: none;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, #5444D1 0%, #40388B 100%);
}

/* Left panel */
.hero-l {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 56px 44px 28px;
    position: relative;
    z-index: 2;
}

/* Thin vertical accent line */
.hero-l::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .5), transparent);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 28px;
    height: 1.5px;
    background: rgba(255, 255, 255, .6)
}

.hero-h1 {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-h1 em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .7)
}

.hero-h1 strong {
    font-weight: 600;
    color: #fff
}

.hero-p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.hero-numbers {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 22px;
}

.hn {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, .15)
}

.hn:last-child {
    border: none;
    padding-right: 0;
    padding-left: 24px
}

.hn-val {
    font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px
}

.hn-lbl {
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
    font-weight: 400
}

/* Right panel — Geometric dashboard */
.hero-r {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 48px 32px;
}

/* Grid pattern */
.hero-r::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* Accent glow */
.hero-r::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 65%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.dash-frame {
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: dashIn .9s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes dashIn {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* Dashboard card base */
.dc {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 18px;
    backdrop-filter: blur(10px);
    transition: background .2s;
}

.dc:hover {
    background: rgba(255, 255, 255, .09)
}

/* Row layout */
.dc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.dc-label {
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 5px
}

.dc-val {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: -.5px
}

.dc-sub {
    font-size: .65rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 3px
}

.dc-badge {
    font-size: .6rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 30px;
    letter-spacing: .3px
}

.dc-badge-g {
    background: rgba(13, 158, 110, .2);
    color: #4ade80
}

.dc-badge-a {
    background: rgba(232, 131, 26, .2);
    color: #fbbf24
}

.dc-badge-b {
    background: rgba(27, 110, 243, .25);
    color: #60a5fa
}

/* Mini bar chart */
.dc-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    margin-top: 10px
}

.dc-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: rgba(255, 255, 255, .1);
    transition: all .3s
}

.dc-bar.active {
    background: var(--accent)
}

.dc-bar.hi {
    background: rgba(255, 255, 255, .6)
}

/* Invoice rows */
.dc-inv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.dc-inv:last-child {
    border: none
}

.dc-inv-name {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8)
}

.dc-inv-num {
    font-size: .62rem;
    color: rgba(255, 255, 255, .25);
    margin-top: 1px
}

.dc-inv-amt {
    font-size: .82rem;
    font-weight: 500;
    color: #fff
}

/* Notification pill */
.dc-notif {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 158, 110, .12);
    border: 1px solid rgba(13, 158, 110, .25);
    border-radius: var(--r);
    padding: 12px 14px;
    animation: notifPop 3s ease-in-out infinite 2s;
}

@keyframes notifPop {

    0%,
    100% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.02)
    }

    20% {
        transform: scale(1)
    }
}

.dc-notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.dc-notif-text {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 400
}

.dc-notif-amt {
    font-size: .82rem;
    font-weight: 600;
    color: #4ade80;
    margin-left: auto
}

/* GST breakdown */
.dc-gst-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0
}

.dc-gst-label {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45)
}

.dc-gst-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, .08);
    margin: 0 12px;
    border-radius: 2px;
    overflow: hidden
}

.dc-gst-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--accent)
}

.dc-gst-val {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7)
}

/* ══════════════════════════════════ TRUST STRIP ══════════════════════════════════ */
#trust {
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    background: var(--surface);
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none
}

.trust-inner::-webkit-scrollbar {
    display: none
}

.trust-lbl {
    font-size: .68rem;
    font-weight: 500;
    color: var(--ink-3);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-right: 28px;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
    white-space: nowrap
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 0;
    padding-left: 28px;
    flex: 1
}

.trust-it {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 22px;
    border-right: 1px solid var(--border);
    font-size: .8rem;
    font-weight: 400;
    color: var(--ink-3);
    white-space: nowrap
}

.trust-it:last-child {
    border: none
}

.trust-em {
    font-size: 1rem
}

/* ══════════════════════════════════ FEATURES ══════════════════════════════════ */
#features {
    padding: 30px 0;
    background: var(--paper)
}

.sec-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 64px
}

.sec-kicker {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 5px
}

.sec-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -.5px;
    line-height: 1.2
}

.sec-title strong {
    font-weight: 600
}

.sec-desc {
    font-size: .92rem;
    color: var(--ink-3);
    line-height: 1.8;
    font-weight: 300
}

.sec-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s
}

.sec-link:hover {
    border-bottom-color: var(--accent)
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border)
}

.feat-card {
    background: var(--paper);
    padding: 20px 20px;
    transition: background .2s;
    cursor: default;
    position: relative
}

.feat-card:hover {
    background: var(--surface)
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.feat-card:hover::after {
    transform: scaleX(1)
}

.fc-num {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ink-3);
    margin-bottom: 14px
}

.fc-heading {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 14px
}

.fc-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -.2px
}
.f-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #e9e9e9;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -.2px
}
.fc-desc {
    font-size: .83rem;
    color: var(--ink-2);
    line-height: 1.75;
    font-weight: 300
}

/* ══════════════════════════════════ DOCUMENT TYPES ══════════════════════════════════ */
#docs {
    padding: 30px 0;
    /* background:var(--surface);
    border-top:1px solid var(--border);*/
    border-bottom: 1px solid var(--border)
}

.docs-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start
}

.doc-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--paper)
}

.dt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all .18s;
    border-left: 2px solid transparent;
    background: var(--paper)
}

.dt:last-child {
    border-bottom: none
}

.dt.active {
    border-left-color: var(--accent);
    background: var(--accent-lt)
}

.dt:hover:not(.active) {
    background: var(--surface)
}

.dt-ico {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--ink-3);
    flex-shrink: 0;
    transition: all .2s
}

.dt.active .dt-ico {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.dt-title {
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px
}

.dt.active .dt-title {
    color: var(--accent)
}

.dt-sub {
    font-size: .72rem;
    color: var(--ink-3)
}

/* Preview card */
.doc-preview {
    flex: 1
}

.dpc {
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 25px;
    display: none;
    animation: pcFade .3s ease both
}

.dpc.active {
    display: block
}

@keyframes pcFade {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.dpc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px
}

.dpc-co {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 3px
}

.dpc-ref {
    font-size: .72rem;
    color: var(--ink-3)
}

.dpc-badge-type {
    font-size: .62rem;
    font-weight: 600;
    padding: 4px 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--ink-2)
}

.dpc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px
}

.dpc-fl {
    font-size: .62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--ink-3);
    margin-bottom: 4px
}

.dpc-fv {
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink)
}

.dpc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px
}

.dpc-table th {
    font-size: .62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--ink-3);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    text-align: left
}

.dpc-table td {
    font-size: .78rem;
    color: var(--ink-2);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 300
}

.dpc-total {
    text-align: right;
    padding-top: 12px
}

.dpc-total-big {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent)
}

.dpc-total-sub {
    font-size: .72rem;
    color: var(--ink-3);
    margin-bottom: 4px
}

.dpc-pills {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: wrap
}

.dpc-pill {
    font-size: .62rem;
    font-weight: 500;
    padding: 3px 9px;
    border: 1px solid var(--border);
    color: #fff;
}

/* ══════════════════════════════════ STATS ══════════════════════════════════ */
#stats {
    padding: 25px 0;
    background: linear-gradient(90deg, #5444D1 0%, #40388B 100%);
    position: relative;
    overflow: hidden
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 44px 44px
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
    gap: 0
}

.si {
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.si:first-child {
    padding-left: 0
}

.si:last-child {
    border: none
}

.si-n {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 8px
}

.si-l {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 300
}

/* ══════════════════════════════════ WHY — Two column editorial ══════════════════════════════════ */
#why {
    padding: 30px 0;
    background: var(--paper)
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.why-sticky {
    position: sticky;
    top: 88px
}

.why-pts {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    border-top: 1px solid var(--border)
}

.wp {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: all .2s
}

.wp:hover .wp-ico {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.wp-ico {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--ink-3);
    flex-shrink: 0;
    transition: all .25s;
    margin-top: 2px
}

.wp-title {
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0px
}

.wp-desc {
    font-size: .82rem;
    color: var(--ink-3);
    line-height: 1.7;
    font-weight: 300
}

/* ══════════════════════════════════ INDUSTRIES MARQUEE ══════════════════════════════════ */
#industries {
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #f7f8fa;
    overflow: hidden;
}

.mq-wrap {
    overflow: hidden;
    position: relative
}

.mq-wrap::before,
.mq-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.mq-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--surface), transparent)
}

.mq-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--surface), transparent)
}

.mq-track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: mqScroll 32s linear infinite;
    padding: 2px 0
}

.mq-track:hover {
    animation-play-state: paused
}

@keyframes mqScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.mq-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--paper);
    border: 1px solid #433a9857;
    padding: 5px 9px;
    flex-shrink: 0;
    white-space: nowrap;
    transition: all .2s;
    font-size: .8rem;
    font-weight: 400;
    color: var(--ink-2)
}

.mq-pill:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.mq-em {
    font-size: 1rem
}

/* ══════════════════════════════════ TESTIMONIALS ══════════════════════════════════ */
#testi {
    padding: 30px 0;
    background: var(--paper);
    overflow: hidden
}

.testi-header {
    text-align: left;
    max-width: 480px;
    margin-bottom: 56px
}

.testi-wrap {
    overflow: hidden;
    position: relative;
    margin: 0 -28px
}

.testi-wrap::before,
.testi-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.testi-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--paper), transparent)
}

.testi-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--paper), transparent)
}

.testi-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: tScroll 40s linear infinite;
    padding: 8px 28px 8px
}

.testi-track:hover {
    animation-play-state: paused
}

@keyframes tScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.tc {
    width: 280px;
    flex-shrink: 0;
    background: var(--surface);

    padding: 24px;
    transition: all .25s
}

.tc:hover {
    border-color: var(--accent);
    background: var(--paper);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.tc-stars {
    color: #F59E0B;
    font-size: .68rem;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.tc-text {
    font-size: .97rem;
    color: var(--ink-2);
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 13px;
    font-style: italic;
}

.tc-hr {
    height: 1px;
    background: var(--border);
    margin-bottom: 14px
}

.tc-name {
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink)
}

.tc-role {
    font-size: .8rem;
    color: var(--ink-3);
    margin-top: 2px
}

/* ══════════════════════════════════ FAQ — Magazine accordion style ══════════════════════════════════ */
#faq {
    padding: 30px 0;
    background: var(--surface);

}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start
}

.faq-sticky {
    position: sticky;
    top: 88px
}

.faq-sticky .sec-title {
    margin-bottom: 16px
}

.faq-contact-card {
    margin-top: 32px;
    background: linear-gradient(135deg, #5444D1 0%, #40388B 100%);
    padding: 28px;
    color: #fff;
}

.fcc-label {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px
}

.fcc-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 8px
}

.fcc-sub {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px
}

.fcc-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 10px;
    margin-bottom: 10px;
    transition: border-color .2s
}

.fcc-link:hover {
    border-bottom-color: #fff
}

.fcc-link:last-child {
    border: none;
    margin: 0;
    padding: 0
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;

}

.fa {
    border-bottom: 1px solid #a49ce24d;
}

.fa-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--f);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
    transition: color .18s;
    line-height: 1.4;
}

.fa-btn:hover {
    color: var(--accent)
}

.fa-btn.open {
    color: var(--accent)
}

.fa-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px solid #433d98;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #433a95;
    transition: all .25s;
}

.fa-btn.open .fa-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg)
}

.fa-body {
    font-size: 1rem;
    color: var(--ink-3);
    line-height: 1.8;
    padding: 0 0 22px;
    display: none;
    font-weight: 400
}

.fa-body.open {
    display: block
}

/* ══════════════════════════════════ CONTACT — Clean, form-forward ══════════════════════════════════ */
#contact {
    padding: 30px 0;
    background: var(--paper);

}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start
}

.contact-l .sec-title {
    margin-bottom: 16px
}

.contact-l-sub {
    font-size: .9rem;
    color: var(--ink-3);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border)
}

.cc {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    transition: background .2s
}

.cc:last-child {
    border: none
}

.cc:hover {
    background: var(--surface)
}

.cc-ico {
    width: 30px;
    height: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: all .2s
}

.cc:hover .cc-ico {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.cc-lbl {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--ink-3);
    font-weight: 500;
    margin-bottom: 2px
}

.cc-val {
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink)
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: .75rem;
    color: var(--ink-3)
}

.ch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite
}

/* Form */
.contact-form {
    background: var(--surface);

    padding: 40px
}

.cf-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.cf-sub {
    font-size: .78rem;
    color: var(--ink-3);
    margin-bottom: 28px;
    font-weight: 300
}

.fg {
    margin-bottom: 16px
}

.fl {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: .2px
}

.fi {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 11px 14px;
    font-size: .875rem;
    font-family: var(--f);
    color: var(--ink);
    background: var(--paper);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-weight: 300
}

.fi:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27, 110, 243, .08)
}

.fi::placeholder {
    color: var(--ink-3);
    font-weight: 300
}

select.fi {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E7787' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.btn-submit {
    width: 100%;
    margin-top: 4px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 12px;
    font-family: var(--f);
    font-weight: 500;
    font-size: .88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
    letter-spacing: .2px
}

.btn-submit:hover {
    background: #1a2233;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 17, 23, .15)
}

.cf-note {
    font-size: .68rem;
    color: var(--ink-3);
    text-align: center;
    margin-top: 12px;
    font-weight: 300
}

/* ══════════════════════════════════ CTA ══════════════════════════════════ */
#cta {
    padding: 35px 0;
    background: linear-gradient(135deg, #5444D1 0%, #40388B 100%);
    border-top: none;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 44px 44px
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 14px
}

.cta-title strong {
    font-weight: 500
}

.cta-sub {
    font-size: .92rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 300
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.cta-note {
    font-size: .7rem;
    color: rgb(255 255 255 / 65%);
    margin-top: 20px;
    letter-spacing: .3px
}

/* ══════════════════════════════════ FOOTER ══════════════════════════════════ */
#footer {
    background: #3D4350;
    padding: 40px 0 15px;
    border-top: none
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px
}

.footer-desc {
    font-size: .98rem;
    color: #dbd6d6;
    line-height: 1.8;
    max-width: 210px;
    margin-bottom: 20px;
    font-weight: 300
}

.footer-social {
    display: flex;
    gap: 8px
}

.fsoc {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
    font-size: .8rem;
    text-decoration: none;
    transition: all .2s
}

.fsoc:hover {
    border-color: rgba(255, 255, 255, .35);
    color: #fff
}

.fc-title {
    font-size: .92rem;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-weight: 500;
    color:rgb(75 75 75 / 63%);
    margin-bottom: 16px
}

.fl-link {
    display: block;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    color: #A3A9B6;
    padding: 4px 0;
    transition: color .2s
}

.fl-link:hover {
    color: #fff
}

.footer-bot {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.footer-copy {
    font-size: .90rem;
    color: #A3A9B6
}

.footer-bot-links {
    display: flex;
    gap: 20px
}

.footer-bot-links a {
    font-size: .72rem;
    color: #A3A9B6;
    text-decoration: none;
    transition: color .2s
}

.footer-bot-links a:hover {
    color: #fff
}

/* ══════════════════════════════════ BACK TO TOP ══════════════════════════════════ */
#btt {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--ink);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s;
    z-index: 800;
    font-size: .9rem
}

#btt.show {
    opacity: 1;
    transform: translateY(0)
}

#btt:hover {
    background: #1a2233
}

/* ══════════════════════════════════ MODAL — Clean white ══════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 17, 23, .55);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all
}

.modal-box {
    background: var(--paper);
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    transform: translateY(16px) scale(.98);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1)
}

.modal-head {
    background: linear-gradient(90deg, #5444D1 0%, #40388B 100%);
    border-bottom: 1px solid var(--border);
    padding: 24px 28px
}

.modal-brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.modal-mark {
    width: 26px;
    height: 26px;
    background: var(--ink);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 600;
    color: #fff
}

.modal-brand-nm {
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink)
}

.modal-title {
    font-size: 1.35rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -.1px;
}

.modal-sub {
    font-size: 1rem;
    color: #fff;
    font-weight: 300
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #41398e;
    font-size: .75rem;
    transition: all .2s
}

.modal-close:hover {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--ink)
}

.modal-body {
    padding: 24px 28px 28px
}

.mfg {
    margin-bottom: 14px
}

.mfl {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.mfi-wrap {
    position: relative
}

.mfi {
    width: 100%;
    border: 1px solid #bbc0c8;
    padding: 11px 14px;
    font-size: .975rem;
    font-family: var(--f);
    color: var(--ink);
    background: var(--paper);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-weight: 400
}

.mfi:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27, 110, 243, .08)
}

.mfi-wrap .mfi {
    padding-left: 38px
}

.mfi-ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .82rem;
    color: var(--ink-3);
    pointer-events: none
}

.mfi-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .92rem;
    color: var(--ink-3);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color .2s
}

.mfi-eye:hover {
    color: var(--accent)
}

.modal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px
}

.modal-rem {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .85rem;
    color: var(--ink-2);
    cursor: pointer;
    font-weight: 500
}

.modal-rem input {
    accent-color: var(--accent);
    width: 13px;
    height: 13px
}

.modal-forgot {
    font-size: .92rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 400
}

.modal-forgot:hover {
    text-decoration: underline
}

.btn-modal {
    width: 100%;
    margin-top: 18px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 11px;
    font-family: var(--f);
    font-weight: 500;
    font-size: .88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all .22s;
    letter-spacing: .2px
}

.btn-modal:hover {
    background: #1a2233;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 17, 23, .18)
}

/* ══════════════════════════════════ MOBILE MENU ══════════════════════════════════ */
#mm {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 850;
    padding: 72px 28px 28px;
    display: none;
    flex-direction: column
}

#mm.open {
    display: flex
}

.mm-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: 1px solid var(--border);
    width: 34px;
    height: 34px;
    border-radius: var(--r);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--ink)
}

#mm a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border)
}

#mm a:hover {
    color: var(--accent)
}

.mm-btn {
    margin-top: 24px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: var(--r);
    padding: 13px;
    font-family: var(--f);
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s
}

/* ══════════════════════════════════ RESPONSIVE ══════════════════════════════════ */
@media(max-width:1060px) {
    #hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-l {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 48px 28px
    }

    .hero-r {
        min-height: 380px;
        padding: 36px 28px
    }

    .hero-l::before {
        display: none
    }

    .why-layout {
        grid-template-columns: 1fr
    }

    .why-sticky {
        position: static
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr
    }

    .footer-top>:first-child {
        grid-column: 1/-1
    }

    .docs-layout {
        grid-template-columns: 1fr
    }

    .faq-layout {
        grid-template-columns: 1fr
    }

    .faq-sticky {
        position: static
    }

    .faq-contact-card {
        margin-bottom: 32px
    }

    .contact-layout {
        grid-template-columns: 1fr
    }
}

@media(max-width:800px) {
    #allinone .container>div {
        grid-template-columns: 1fr !important
    }

    .nav-links,
    .nav-phone {
        display: none
    }

    .nav-burger {
        display: flex
    }

    .nav-r {
        gap: 6px;
        padding-left: 160px;
        border-left: none
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr
    }

    #allinone [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0
    }

    .si {
        padding: 24px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .si:last-child {
        border: none
    }

    .sec-header {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-top>:first-child {
        grid-column: 1/-1
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .testi-wrap {
        margin: 0 -16px
    }

    .trust-inner {
        flex-wrap: wrap;
        gap: 8px
    }

    .trust-lbl {
        border: none;
        padding: 0;
        width: 100%;
        text-align: center
    }

    .trust-items {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        gap: 0
    }

    .trust-it {
        padding: 6px 14px;
        font-size: .75rem
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .modal-demo-grid {
        grid-template-columns: 1fr !important
    }

    .hero-h1 {
        font-size: clamp(2rem, 7vw, 2.8rem)
    }
}

@media(max-width:520px) {
    .feat-grid {
        grid-template-columns: 1fr
    }

    .hero-numbers {
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 18px
    }

    .hn {
        border: none;
        padding: 0 !important;
        flex: auto;
        min-width: 40%
    }

    .nav-r .btn {
        display: none
    }

    .nav-r .btn:last-child {
        display: inline-flex
    }

    .nav-burger {
        display: flex !important
    }

    .hero-l {
        padding: 36px 20px
    }

    .hero-r {
        padding: 28px 20px;
        min-height: 320px
    }

    .container {
        padding: 0 16px
    }

    #features,
    #docs,
    #why,
    #testi,
    #faq,
    #contact,
    #cta {
        padding: 72px 0
    }

    .feat-card {
        padding: 24px 20px
    }

    .stats-row {
        grid-template-columns: 1fr 1fr
    }

    .contact-form {
        padding: 24px 20px
    }

    .faq-contact-card {
        padding: 20px
    }

    #footer {
        padding: 48px 0 24px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-top>:first-child {
        grid-column: auto
    }
}

/* ── DEMO MODAL ── */
.demo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 17, 23, .55);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    overflow-y: auto
}

.demo-overlay.open {
    opacity: 1;
    pointer-events: all
}

.demo-box {
    background: var(--paper);
    width: 100%;
    max-width: 560px;
    box-shadow: 0 32px 80px rgba(13, 17, 23, .18);
    transform: translateY(16px) scale(.98);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    margin: auto
}

.demo-overlay.open .demo-box {
    transform: translateY(0) scale(1)
}

.demo-head {
    background: linear-gradient(90deg, #5444D1 0%, #40388B 100%);
    padding: 28px 32px 24px
}

.demo-head-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

.demo-mark {
    width: 26px;
    height: 26px;
    background: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 600;
    color: #fff
}

.demo-brand {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7)
}

.demo-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -.3px;
    margin-bottom: 4px
}

.demo-sub {
    font-size: .95rem;
    color: #fff;
    font-weight: 300
}

.demo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(67 58 148);
    font-size: .95rem;
    transition: all .2s
}

.demo-close:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff
}

.demo-body {
    padding: 28px 32px 32px
}

.modal-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.dfg {
    margin-bottom: 0
}

.dfg.full {
    grid-column: 1/-1
}

.dfl {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: .2px
}

.dfi {
    width: 100%;
    border: 1px solid var(--border);
    padding: 10px 13px;
    font-size: .875rem;
    font-family: var(--f);
    color: var(--ink);
    background: var(--paper);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-weight: 300
}

.dfi:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27, 110, 243, .08)
}

.dfi::placeholder {
    color: var(--ink-3);
    font-weight: 300
}

select.dfi {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E7787' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center
}

.btn-demo-submit {
    width: 100%;
    margin-top: 6px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 13px;
    font-family: var(--f);
    font-weight: 500;
    font-size: .88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all .22s;
    letter-spacing: .2px
}

.btn-demo-submit:hover {
    background: #1a2233;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 17, 23, .18)
}

.demo-note {
    font-size: .78rem;
    color: var(--ink-3);
    text-align: center;
    margin-top: 12px;
    font-weight: 400
}
/* Keep SweetAlert above login/demo modals. */
.swal2-container {
    z-index: 9999 !important;
}