*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #071D42;
    --navy-mid: #0F3580;
    --navy-lt: #1E52B8;
    --orange: #E8721A;
    --orange-dk: #C05A0D;
    --orange-lt: #FDF0E6;
    --sky: #EBF2FD;
    --sky-mid: #B8D0F7;
    --muted: #5A7CB0;
    --white: #FFFFFF;
    --bg: #F2F5FB;
    --border: #D0DCEE;
    --text-dark: #0B1E3D;
    --text-body: #3D5A80;
    --green: #15803D;
    --green-lt: #DCFCE7;
    --teal: #0D7A6E;
    --teal-lt: #E0F2F1;
    --purple: #5E35B1;
    --purple-lt: #EDE7F6;
    --amber: #B45309;
    --amber-lt: #FEF3C7;
    --indigo: #3730A3;
    --indigo-lt: #EEF2FF;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1.5deg);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

@keyframes pulse-orange {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 114, 26, .4);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(232, 114, 26, 0);
    }
}

@keyframes sign-appear {
    0% {
        opacity: 0;
        transform: scale(.8) rotate(-5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-2deg);
    }
}

@keyframes progress-fill {
    from {
        width: 0;
    }

    to {
        width: var(--w);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── TOPBAR ── */
.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 24px rgba(7, 29, 66, .07);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-mark {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 26px;
    height: 26px;
}

.logo-name {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.01em;
}

.logo-name span {
    color: var(--orange);
}

.logo-sub {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .15s;
    white-space: nowrap;
}

.nav-item>a:hover,
.nav-item>a.active {
    background: var(--sky);
    color: var(--navy);
    font-weight: 700;
}

.chev {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: transform .2s;
}

.nav-item:hover .chev {
    transform: rotate(180deg);
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    min-width: 270px;
    box-shadow: 0 16px 48px rgba(7, 29, 66, .14);
    padding: 8px 0;
    z-index: 400;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: background .12s;
}

.dropdown a:hover {
    background: var(--sky);
    color: var(--navy);
}

.di {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

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

.btn-out {
    padding: 9px 20px;
    border: 1.5px solid var(--navy);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .15s;
    text-decoration: none;
}

.btn-out:hover {
    background: var(--navy);
    color: #fff;
}

.btn-fill {
    padding: 9px 22px;
    border: none;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(232, 114, 26, .32);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-fill:hover {
    background: var(--orange-dk);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(140deg, #030C1E 0%, #071D42 36%, #0E2D68 62%, #122E72 100%);
    padding: 80px 0 68px;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 72% 20%, rgba(232, 114, 26, .15) 0%, transparent 50%),
        radial-gradient(ellipse at 6% 80%, rgba(94, 53, 177, .14) 0%, transparent 46%),
        radial-gradient(ellipse at 90% 78%, rgba(13, 122, 110, .1) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 68px, rgba(255, 255, 255, .012) 68px, rgba(255, 255, 255, .012) 69px),
        repeating-linear-gradient(90deg, transparent, transparent 68px, rgba(255, 255, 255, .012) 68px, rgba(255, 255, 255, .012) 69px);
}

.h-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-a {
    width: 420px;
    height: 420px;
    background: rgba(232, 114, 26, .11);
    right: -80px;
    top: -80px;
    animation: float 8s ease-in-out infinite;
}

.orb-b {
    width: 280px;
    height: 280px;
    background: rgba(94, 53, 177, .1);
    left: 28%;
    bottom: -40px;
    animation: float 10s ease-in-out infinite;
    animation-delay: 3s;
}

.orb-c {
    width: 180px;
    height: 180px;
    background: rgba(13, 122, 110, .09);
    left: 6%;
    top: 22%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 52px;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero left */
.h-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.h-bc span {
    font-size: 12px;
    color: rgba(255, 255, 255, .36);
}

.h-bc .cur {
    color: var(--orange);
}

.bc-d {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.hero-ew {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(232, 114, 26, .16);
    border: 1px solid rgba(232, 114, 26, .36);
    border-radius: 28px;
    padding: 8px 20px;
    font-size: 11.5px;
    font-weight: 700;
    color: #FFAA6E;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.ew-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -.025em;
}

.hero h1 em {
    background: linear-gradient(135deg, #E8721A, #FF9A4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.hero-sub {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, .68);
    line-height: 1.74;
    margin-bottom: 34px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.hbtn-p {
    padding: 15px 32px;
    background: var(--orange);
    border: none;
    border-radius: 13px;
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 8px 26px rgba(232, 114, 26, .42);
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    animation: pulse-orange 2.8s ease-in-out infinite;
}

.hbtn-p:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
}

.hbtn-g {
    padding: 15px 28px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 13px;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hbtn-g:hover {
    background: rgba(255, 255, 255, .15);
}

.h-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.htag {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .74);
}

/* ── HERO DASHBOARD ── */
.hero-dash {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    padding: 22px;
    position: relative;
}

.hd-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.hd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hd-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
    flex: 1;
    margin-left: 4px;
}

.hd-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    color: #4ADE80;
}

.hd-ld {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    animation: blink 1.4s ease-in-out infinite;
}

/* Dashboard kpis */
.dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.dkpi {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 12px 10px;
    text-align: center;
}

.dkpi-val {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.dkpi-lbl {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .42);
    margin-top: 4px;
    line-height: 1.3;
}

/* Workflow tracker */
.workflow-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.wf-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 11px;
    padding: 10px 13px;
}

.wf-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.wf-info {
    flex: 1;
}

.wf-name {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
}

.wf-detail {
    font-size: 10px;
    color: rgba(255, 255, 255, .36);
    margin-top: 1px;
}

.wf-prog {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 80px;
}

.wf-prog-track {
    height: 4px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    overflow: hidden;
}

.wf-prog-fill {
    height: 100%;
    border-radius: 4px;
}

.wf-prog-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .35);
    text-align: right;
    font-family: var(--mono);
}

.wf-status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ws-done {
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .22);
}

.ws-pend {
    background: rgba(251, 191, 36, .12);
    color: #FBB000;
    border: 1px solid rgba(251, 191, 36, .22);
}

.ws-wait {
    background: rgba(121, 192, 255, .1);
    color: #79C0FF;
    border: 1px solid rgba(121, 192, 255, .2);
}

/* Stamp + sign summary */
.summary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sum-card {
    border-radius: 12px;
    padding: 12px 14px;
}

.sum-card-stamp {
    background: linear-gradient(135deg, rgba(232, 114, 26, .15), rgba(232, 114, 26, .06));
    border: 1px solid rgba(232, 114, 26, .25);
}

.sum-card-sign {
    background: linear-gradient(135deg, rgba(74, 222, 128, .1), rgba(74, 222, 128, .03));
    border: 1px solid rgba(74, 222, 128, .2);
}

.sum-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.sum-stamp .sum-label {
    color: rgba(232, 114, 26, .8);
}

.sum-sign .sum-label {
    color: rgba(74, 222, 128, .8);
}

.sum-val {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

.sum-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .36);
    margin-top: 3px;
}

/* Float widgets */
.fw {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 12px 16px;
    z-index: 4;
}

.fw-a {
    top: 12px;
    right: 12px;
    animation: float2 5s ease-in-out infinite;
}

.fw-t {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.fw-v {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fw-s {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

@media(max-width:900px) {
    .fw {
        display: none;
    }
}

/* ── TRUST BAR ── */
/* CLIENT LOGO MARQUEE — reusable component */
.marquee-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0 28px;
}

.marquee-heading {
    text-align: center;
    margin-bottom: 6px;
}

.marquee-heading-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.01em;
}

.marquee-heading-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 5px;
    margin-bottom: 18px;
}

.marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--white), transparent);
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    animation: marquee 32s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.logo-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    flex-shrink: 0;
}

.logo-chip img {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.5);
    transition: filter .25s ease;
}

.logo-chip:hover img {
    filter: grayscale(0) opacity(1);
}

.logo-chip-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
    padding: 0 4px;
    letter-spacing: .02em;
}

@media(max-width:768px) {
    .marquee-track {
        animation-duration: 44s;
    }

    .logo-chip {
        padding: 0 20px;
    }

    .logo-chip img {
        height: 20px;
    }

    .marquee-wrap::before,
    .marquee-wrap::after {
        width: 56px;
    }

    .marquee-heading-title {
        font-size: 15px;
    }

    .marquee-heading-sub {
        font-size: 12px;
    }

    .marquee-section {
        padding: 32px 0 22px;
    }
}

.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tb-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 52px;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
}

.tbi {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 26px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
}

.tbi:last-child {
    border-right: none;
}

.tbi-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.tbi-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.tbi-sub {
    font-size: 11.5px;
    color: var(--muted);
}

/* ── WRAP/SECTION ── */
.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 52px;
}

.section {
    padding: 88px 0;
}

.sec-head {
    text-align: center;
    margin-bottom: 56px;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 28px;
    padding: 7px 20px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sec-title {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.sec-title em {
    color: var(--orange);
    font-style: normal;
}

.sec-desc {
    font-size: 16.5px;
    color: var(--text-body);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.84;
}

/* ── 4 PILLARS ── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(7, 29, 66, .08);
}

.pillar {
    background: var(--white);
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    transition: all .24s;
    position: relative;
    overflow: hidden;
}

.pillar:last-child {
    border-right: none;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pillar:nth-child(1)::before {
    background: linear-gradient(90deg, #0F3580, #1E52B8);
}

.pillar:nth-child(2)::before {
    background: linear-gradient(90deg, #15803D, #22C55E);
}

.pillar:nth-child(3)::before {
    background: linear-gradient(90deg, #5E35B1, #7B50D4);
}

.pillar:nth-child(4)::before {
    background: linear-gradient(90deg, #B45309, #F59E0B);
}

.pillar:hover {
    background: var(--sky);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(7, 29, 66, .1);
}

.pillar-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.pillar-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.pillar-sub {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pillar-feats {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pillar-feat {
    font-size: 12.5px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.pf-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── USE CASES ── */
.uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.uc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 2px 14px rgba(7, 29, 66, .05);
    transition: all .24s;
    position: relative;
    overflow: hidden;
}

.uc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.uc-card:nth-child(3n+1)::before {
    background: linear-gradient(90deg, #0F3580, #1E52B8);
}

.uc-card:nth-child(3n+2)::before {
    background: linear-gradient(90deg, #15803D, #22C55E);
}

.uc-card:nth-child(3n)::before {
    background: linear-gradient(90deg, #5E35B1, #7B50D4);
}

.uc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(7, 29, 66, .11);
}

.uc-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.uc-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.uc-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.68;
    margin-bottom: 13px;
}

.uc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.uc-tag {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 7px;
    background: var(--orange-lt);
    color: var(--orange);
    border: 1px solid rgba(232, 114, 26, .2);
}

/* ── BANNER 1: LOAN AGREEMENT ── */
.banner-1 {
    background: linear-gradient(140deg, #040D1E 0%, #071D42 40%, #0F3580 80%, #163C8A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 25%, rgba(232, 114, 26, .14) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 75%, rgba(94, 53, 177, .12) 0%, transparent 46%),
        repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255, 255, 255, .019) 28px, rgba(255, 255, 255, .019) 29px);
}

.b1-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
    position: relative;
}

.b1-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 114, 26, .18);
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 10.5px;
    font-weight: 700;
    color: #FFAA6E;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.b1-title {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.b1-title em {
    background: linear-gradient(135deg, #E8721A, #FF9A4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.b1-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.82;
    margin-bottom: 28px;
}

.b1-metrics {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.b1-met-num {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--orange);
}

.b1-met-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
    line-height: 1.4;
}

/* Loan agreement flow visual */
.loan-flow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lf-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.lf-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
}

.lf-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 7px;
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .22);
}

.agreement-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 18px 20px;
}

.ac-doc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ac-doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(232, 114, 26, .15);
    border: 1px solid rgba(232, 114, 26, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ac-doc-name {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
}

.ac-doc-meta {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .38);
    margin-top: 2px;
}

.ac-stamp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(232, 114, 26, .08);
    border: 1px solid rgba(232, 114, 26, .18);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.ac-stamp-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
}

.ac-stamp-val {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
}

.signers-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.signer-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .05);
    border-radius: 9px;
}

.sr-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.sr-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
    flex: 1;
}

.sr-role {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
}

.sr-status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}

.srs-signed {
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .2);
}

.srs-pend {
    background: rgba(251, 191, 36, .1);
    color: #FBB000;
    border: 1px solid rgba(251, 191, 36, .2);
}

.srs-next {
    background: rgba(121, 192, 255, .08);
    color: #79C0FF;
    border: 1px solid rgba(121, 192, 255, .18);
}

.closure-pill {
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .22);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.cp-lbl {
    font-size: 11px;
    color: rgba(74, 222, 128, .8);
    font-weight: 700;
}

.cp-val {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #4ADE80;
}

.cp-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
}

/* ── HOW IT WORKS ── */
.hiw-section {
    background: var(--white);
    padding: 88px 0;
}

.hiw-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.hiw-track::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(180deg, var(--orange), var(--navy-mid), var(--orange));
    border-radius: 2px;
}

.hiw-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 0 0 36px;
    position: relative;
}

.hiw-step:last-child {
    padding-bottom: 0;
}

.hiw-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(232, 114, 26, .2);
}

.hiw-content {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 26px;
    transition: all .22s;
}

.hiw-content:hover {
    border-color: var(--sky-mid);
    box-shadow: 0 8px 28px rgba(7, 29, 66, .09);
}

.hiw-tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.hiw-title {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.hiw-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.74;
}

.hiw-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.hiw-chip {
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy-mid);
}

/* ── MODULES GRID ── */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 3px 14px rgba(7, 29, 66, .06);
    transition: all .24s;
    position: relative;
    overflow: hidden;
}

.mod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
}

.mod-card:nth-child(5n+1)::before {
    background: linear-gradient(90deg, #0F3580, #1E52B8);
}

.mod-card:nth-child(5n+2)::before {
    background: linear-gradient(90deg, #15803D, #22C55E);
}

.mod-card:nth-child(5n+3)::before {
    background: linear-gradient(90deg, #5E35B1, #7B50D4);
}

.mod-card:nth-child(5n+4)::before {
    background: linear-gradient(90deg, #B45309, #F59E0B);
}

.mod-card:nth-child(5n)::before {
    background: linear-gradient(90deg, #DC2626, #F87171);
}

.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(7, 29, 66, .11);
}

.mod-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.mod-title {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 7px;
    line-height: 1.3;
}

.mod-desc {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.65;
}

/* ── BANNER 2: HR ONBOARDING ── */
.banner-2 {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 50%, #EDE7F6 100%);
    padding: 80px 0;
}

.b2-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.hr-flow {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hr-doc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 4px 20px rgba(7, 29, 66, .07);
    transition: all .22s;
}

.hr-doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(7, 29, 66, .1);
}

.hdc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hdc-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.hdc-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.hdcb-g {
    background: var(--green-lt);
    color: var(--green);
    border: 1px solid rgba(21, 128, 61, .2);
}

.hdcb-o {
    background: var(--orange-lt);
    color: var(--orange);
    border: 1px solid rgba(232, 114, 26, .22);
}

.hdcb-p {
    background: var(--purple-lt);
    color: var(--purple);
    border: 1px solid rgba(94, 53, 177, .2);
}

.offer-letter {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.ol-head {
    font-family: 'Sora', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.ol-fields {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ol-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.olf-label {
    color: var(--muted);
}

.olf-val {
    font-weight: 700;
    color: var(--navy);
    font-family: var(--mono);
    font-size: 11.5px;
}

.candidate-signing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 14px;
    background: var(--green-lt);
    border: 1px solid rgba(21, 128, 61, .18);
    border-radius: 12px;
}

.cs-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.cs-info {
    flex: 1;
}

.cs-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.cs-status {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
    margin-top: 2px;
}

.cs-timestamp {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--muted);
}

.onboard-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 11px;
    border: 1px solid var(--border);
}

.ob-step.done {
    background: var(--green-lt);
    border-color: rgba(21, 128, 61, .18);
}

.ob-step.active {
    background: var(--orange-lt);
    border-color: rgba(232, 114, 26, .22);
}

.ob-step.wait {
    background: var(--bg);
}

.obs-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.obs-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
}

.obs-sub {
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 1px;
}

.obs-status {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 700;
}

.obs-done {
    color: var(--green);
}

.obs-active {
    color: var(--orange);
}

.obs-wait {
    color: var(--muted);
}

.b2-right {}

.b2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.b2-title {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.b2-title em {
    color: var(--orange);
    font-style: normal;
}

.b2-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.82;
    margin-bottom: 24px;
}

.b2-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b2-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.b2-ii {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--green-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.b2-ii svg {
    width: 13px;
    height: 13px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* ── INDUSTRIES ── */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ind-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 2px 14px rgba(7, 29, 66, .05);
    transition: all .24s;
    text-align: center;
}

.ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(7, 29, 66, .1);
    border-color: var(--sky-mid);
}

.ind-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.ind-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.ind-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.68;
}

.ind-tag {
    display: inline-block;
    margin-top: 12px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .2);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
}

/* ── BANNER 3: ONE PLATFORM ── */
.banner-3 {
    background: linear-gradient(140deg, #040D1E 0%, #071D42 45%, #0F3580 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(94, 53, 177, .14) 0%, transparent 46%),
        radial-gradient(ellipse at 88% 65%, rgba(232, 114, 26, .12) 0%, transparent 44%),
        repeating-linear-gradient(135deg, transparent, transparent 28px, rgba(255, 255, 255, .016) 28px, rgba(255, 255, 255, .016) 29px);
}

.b3-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: center;
    position: relative;
}

.b3-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 114, 26, .18);
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 10.5px;
    font-weight: 700;
    color: #FFAA6E;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.b3-title {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.b3-title em {
    color: var(--orange);
    font-style: normal;
}

.b3-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.82;
    margin-bottom: 28px;
}

.b3-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b3-feat {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 13px 16px;
}

.b3-fi {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.b3-ft {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.doc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dc-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    padding: 16px 14px;
    transition: all .2s;
}

.dc-card:hover {
    background: rgba(255, 255, 255, .11);
    transform: translateY(-2px);
}

.dc-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.dc-name {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 4px;
}

.dc-sig {
    font-size: 10px;
    color: rgba(255, 255, 255, .38);
}

.dc-status {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
}

.dcs-done {
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .2);
}

.dcs-pend {
    background: rgba(251, 191, 36, .1);
    color: #FBB000;
    border: 1px solid rgba(251, 191, 36, .2);
}

/* ── COMPARISON ── */
.comp-section {
    background: var(--white);
    padding: 88px 0;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(7, 29, 66, .09);
}

.comp-table thead th {
    padding: 20px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.comp-table thead th:first-child {
    background: var(--bg);
    color: var(--muted);
    text-align: left;
    width: 30%;
}

.comp-table thead th:nth-child(2) {
    background: var(--navy);
    color: #fff;
    width: 35%;
    text-align: center;
}

.comp-table thead th:nth-child(2) span {
    color: var(--orange);
}

.comp-table thead th:last-child {
    background: #F5F7FA;
    color: var(--muted);
    width: 35%;
    text-align: center;
}

.comp-table td {
    padding: 16px 28px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table td:first-child {
    font-weight: 700;
    color: var(--text-body);
    background: var(--bg);
}

.comp-table td:nth-child(2) {
    background: rgba(7, 29, 66, .015);
    text-align: center;
}

.comp-table td:last-child {
    background: #FAFBFD;
    text-align: center;
    color: var(--muted);
}

.c-yes {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-weight: 700;
}

.c-yes svg {
    width: 16px;
    height: 16px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.c-no {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #DC2626;
    font-weight: 500;
}

.c-no svg {
    width: 16px;
    height: 16px;
    stroke: #DC2626;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* ── API SECTION ── */
.api-section {
    background: var(--navy);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.api-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 78% 25%, rgba(232, 114, 26, .1) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 56px, rgba(255, 255, 255, .014) 56px, rgba(255, 255, 255, .014) 57px),
        repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255, 255, 255, .014) 56px, rgba(255, 255, 255, .014) 57px);
}

.api-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
    position: relative;
}

.api-left .sec-tag {
    background: rgba(232, 114, 26, .18);
    border-color: rgba(232, 114, 26, .3);
}

.api-left .sec-title {
    color: #fff;
    text-align: left;
    font-size: 30px;
}

.api-left .sec-desc {
    color: rgba(255, 255, 255, .58);
    text-align: left;
    margin: 0 0 28px;
}

.api-specs {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px;
}

.api-spec {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 13px 17px;
}

.asi {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(232, 114, 26, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.as-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.as-val {
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
}

.sla-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-bottom: 28px;
}

.sla-b {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 16px 12px;
    text-align: center;
}

.sla-num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
}

.sla-lbl {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

.api-btns {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.abtn-p {
    padding: 13px 24px;
    background: var(--orange);
    border: none;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.abtn-p:hover {
    background: var(--orange-dk);
}

.abtn-g {
    padding: 13px 24px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.abtn-g:hover {
    background: rgba(255, 255, 255, .14);
}

.api-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.code-block {
    background: #050A14;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    overflow: hidden;
}

.cb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #030710;
}

.cb-dots {
    display: flex;
    gap: 6px;
}

.cb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cb-lbl {
    font-family: var(--mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .04em;
}

.cb-body {
    padding: 16px 20px;
    overflow-x: auto;
}

.cl {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 2;
    white-space: pre;
}

.c-comment {
    color: #4A5A6A;
}

.c-method {
    color: #CE9EFF;
}

.c-url {
    color: #79C0FF;
}

.c-key {
    color: #79C0FF;
}

.c-str {
    color: #A5D6A7;
}

.c-num {
    color: #FFB37D;
}

.c-bracket {
    color: rgba(255, 255, 255, .65);
}

.resp-block {
    background: #071810;
    border: 1px solid rgba(74, 222, 128, .15);
    border-radius: 17px;
    overflow: hidden;
}

.rb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(74, 222, 128, .1);
}

.rb-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: #4ADE80;
}

.rb-time {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, .26);
}

/* ── SECURITY ── */
.sec-section {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 100%);
    padding: 88px 0;
}

.sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.secf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(7, 29, 66, .06);
    transition: all .24s;
}

.secf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(7, 29, 66, .1);
}

.secf-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.secf-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.secf-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.72;
}

.secf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: var(--green-lt);
    border: 1px solid rgba(21, 128, 61, .18);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}

.secf-badge svg {
    width: 12px;
    height: 12px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* ── CASE STUDIES ── */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(7, 29, 66, .07);
    transition: all .24s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(7, 29, 66, .12);
}

.cc-header {
    padding: 24px 26px 18px;
    border-bottom: 1px solid var(--border);
}

.cc-industry {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-mid);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cc-company {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 5px;
}

.cc-tagline {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
}

.cc-body {
    padding: 18px 26px 22px;
}

.cc-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.cc-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cc-ri {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--green-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.cc-ri svg {
    width: 11px;
    height: 11px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.cc-rt {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.cc-rt strong {
    color: var(--navy);
    font-weight: 700;
}

.cc-footer {
    padding: 0 26px 24px;
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    transition: gap .15s;
}

.cc-link:hover {
    gap: 11px;
}

.cc-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

/* ── TESTIMONIALS ── */
.testi-section {
    background: linear-gradient(140deg, #040D1E 0%, #071D42 45%, #0F3580 100%);
    padding: 88px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    padding: 30px 26px;
    transition: all .22s;
}

.testi-card:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-3px);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testi-stars span {
    color: #FBB000;
    font-size: 15px;
}

.testi-quote {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.testi-role {
    font-size: 12px;
    color: rgba(255, 255, 255, .42);
    margin-top: 2px;
}

/* ── FINAL CTA ── */
.final-cta {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 100%);
    padding: 96px 0;
}

.fci {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.fci-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 28px;
    padding: 7px 20px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fci-title {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -.025em;
}

.fci-title em {
    color: var(--orange);
    font-style: normal;
}

.fci-desc {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fci-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.fcb-p {
    padding: 17px 38px;
    background: var(--orange);
    border: none;
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 10px 30px rgba(232, 114, 26, .4);
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.fcb-p:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
}

.fcb-navy {
    padding: 17px 38px;
    background: var(--navy);
    border: none;
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.fcb-navy:hover {
    background: var(--navy-mid);
}

.fcb-g {
    padding: 17px 38px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.fcb-g:hover {
    background: var(--sky);
}

/* FOOTER */
footer {
    background: #040D1E;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 48px;
}

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .15s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .26);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .36);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* RESPONSIVE */
@media(max-width:1100px) {

    .hero-inner,
    .b1-inner,
    .b2-inner,
    .b3-inner,
    .api-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-grid,
    .uc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sec-grid,
    .cases-grid,
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .doc-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .wrap {
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .fci-title {
        font-size: 30px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ind-grid {
        grid-template-columns: 1fr 1fr;
    }

    .uc-grid,
    .cases-grid,
    .testi-grid,
    .sec-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dash-kpis {
        grid-template-columns: repeat(2, 1fr);
    }

    .comp-table {
        font-size: 12px;
    }

    .comp-table td,
    .comp-table th {
        padding: 12px 16px;
    }
}

@media(max-width:480px) {

    .modules-grid,
    .ind-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--sky-mid);
    border-radius: 6px;
}