*,
*::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;
    --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 blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes pulse {

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

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

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

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

@keyframes flow {
    0% {
        opacity: .3;
        transform: scaleX(.7);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: .3;
        transform: scaleX(.7);
    }
}

/* ── 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: 300;
    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;
}

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

.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;
}

.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, #040D1E 0%, #071D42 38%, #0F3580 72%, #163C8A 100%);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 25%, rgba(232, 114, 26, .15) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 80%, rgba(15, 53, 128, .4) 0%, transparent 48%),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, .013) 60px, rgba(255, 255, 255, .013) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, .013) 60px, rgba(255, 255, 255, .013) 61px);
}

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

.orb1 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    right: -80px;
    top: -80px;
    animation: float 7s ease-in-out infinite;
}

.orb2 {
    width: 260px;
    height: 260px;
    background: #1E5FBF;
    left: 22%;
    bottom: -40px;
    animation: float 9s ease-in-out infinite;
    animation-delay: 3s;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

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

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

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 114, 26, .18);
    border: 1px solid rgba(232, 114, 26, .36);
    border-radius: 24px;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 700;
    color: #FFAA6E;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 1.8s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.hero h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.82;
    margin-bottom: 30px;
    max-width: 520px;
}

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

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

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

.hbtn-g {
    padding: 14px 28px;
    background: rgba(255, 255, 255, .09);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    font-size: 14px;
    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, .16);
}

.hbtn-p svg {
    width: 14px;
    height: 14px;
}

@media(max-width:480px) {
    .hbtn-p svg {
        width: 12px;
        height: 12px;
    }
}

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

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

.htb svg {
    width: 13px;
    height: 13px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

/* HERO RIGHT — LIVE DASHBOARD MOCKUP */
.hero-dash {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

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

.hdash-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.hdash-title {
    font-family: 'Sora', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
    flex: 1;
}

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

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

.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: 12px;
    padding: 12px 10px;
    text-align: center;
}

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

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

.flow-pipe {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.pipe-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 9px;
    padding: 9px 13px;
}

.pipe-left {
    display: flex;
    align-items: center;
    gap: 9px;
}

.pipe-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pipe-name {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
}

.pipe-engine {
    font-size: 10px;
    color: rgba(255, 255, 255, .38);
    font-family: var(--mono);
}

.pipe-time {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 600;
}

.pipe-ok {
    color: #4ADE80;
}

.pipe-proc {
    color: #FBB000;
}

.decision-box {
    background: linear-gradient(135deg, rgba(232, 114, 26, .2), rgba(232, 114, 26, .08));
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dec-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.dec-val {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #4ADE80;
}

.dec-score {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
}

.dec-score-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    text-align: right;
}

/* ── TRUST MARQUEE ── */
.trust-marquee-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0 22px;
    overflow: hidden;
    position: relative;
}

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

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

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

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

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

.trust-marquee-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px;
    margin-bottom: 18px;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 32s linear infinite;
    width: max-content;
}

.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 .2s;
}

.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: 6px 4px;
    letter-spacing: .02em;
    opacity: .6;
    transition: opacity .2s;
}

.logo-chip:hover .logo-chip-text {
    opacity: 1;
    color: var(--navy);
}

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

/* ── METRICS BAR ── */
.metrics-bar {
    background: var(--navy);
    padding: 36px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.met {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

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

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

.met-lbl {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .5);
    margin-top: 5px;
    line-height: 1.4;
}

/* ── SECTION FRAMEWORK ── */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.section {
    padding: 80px 0;
}

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

.sec-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: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sec-title {
    font-family: 'Sora', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -.02em;
    line-height: 1.18;
}

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

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

/* ── WHO IS IT FOR ── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

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

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

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

.aud-tag {
    display: inline-block;
    margin-top: 12px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-mid);
}

/* ── 8-STEP FLOW ── */
.flow-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.flow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 56px, rgba(255, 255, 255, .015) 56px, rgba(255, 255, 255, .015) 57px), repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255, 255, 255, .015) 56px, rgba(255, 255, 255, .015) 57px);
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    margin-bottom: 24px;
}

.flow-steps-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.fstep {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 22px 18px;
    transition: all .2s;
    position: relative;
}

.fstep:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-3px);
}

.fstep.highlight {
    border-color: rgba(232, 114, 26, .4);
    background: rgba(232, 114, 26, .08);
}

.fstep-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.fstep.highlight .fstep-num {
    background: rgba(255, 255, 255, .15);
    border: 2px solid var(--orange);
}

.fstep-engine {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 6px;
}

.fstep-title {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.fstep-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.fstep-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 9.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    gap: 12px;
}

.flow-conn-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(232, 114, 26, .2));
    border-radius: 2px;
    max-width: 200px;
}

.flow-conn-text {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    white-space: nowrap;
}

.flow-result {
    background: linear-gradient(135deg, rgba(232, 114, 26, .15), rgba(232, 114, 26, .05));
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 18px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.fr-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fr-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fr-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 3px;
}

.fr-val {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

/* ── AI ENGINES ── */
.engines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

.engine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
}

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

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

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

.engine-card:nth-child(4)::before {
    background: linear-gradient(90deg, #0D7A6E, #14B8A6);
}

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

.engine-card:nth-child(6)::before {
    background: linear-gradient(90deg, #1D4ED8, #60A5FA);
}

.engine-card:nth-child(7)::before {
    background: linear-gradient(90deg, #BE123C, #FB7185);
}

.engine-card:nth-child(8)::before {
    background: linear-gradient(90deg, #065F46, #10B981);
}

.engine-card:nth-child(9)::before {
    background: linear-gradient(90deg, #1E3A5F, #3B82F6);
}

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

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

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

.eng-badge {
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .25);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
}

.eng-badge.new {
    background: linear-gradient(135deg, rgba(232, 114, 26, .15), rgba(232, 114, 26, .05));
    border-color: rgba(232, 114, 26, .3);
    color: var(--orange);
}

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

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

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

.eng-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eng-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
}

.eng-feat-icon {
    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;
}

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

.eng-sla {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--navy-mid);
}

/* ── DATA SOURCES ── */
.data-section {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 100%);
    padding: 80px 0;
}

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

.data-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(7, 29, 66, .05);
    transition: all .22s;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.data-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(7, 29, 66, .09);
    border-color: var(--sky-mid);
}

.data-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.data-title {
    font-family: 'Sora', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

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

.data-badge {
    display: inline-block;
    margin-top: 8px;
    background: var(--green-lt);
    border: 1px solid rgba(21, 128, 61, .2);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--green);
}

/* ── HOW IT WORKS ── */
.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: all .2s;
}

.hiw-step:last-child {
    border-bottom: none;
}

.hiw-step:hover {
    padding-left: 8px;
}

.hiw-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

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

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

.hiw-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .22);
    border-radius: 7px;
    padding: 4px 11px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
}

.hiw-visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.hiw-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255, 255, 255, .025) 24px, rgba(255, 255, 255, .025) 25px);
}

.hiw-vis-inner {
    position: relative;
}

.output-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.out-head {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 6px;
}

.out-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 11px;
    padding: 12px 16px;
}

.out-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

.out-val {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}

.out-val.good {
    color: #4ADE80;
}

.out-val.warn {
    color: #FBB000;
}

.out-val.score {
    color: var(--orange);
    font-size: 18px;
}

.decision-pill {
    background: linear-gradient(135deg, rgba(74, 222, 128, .15), rgba(74, 222, 128, .05));
    border: 1px solid rgba(74, 222, 128, .3);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
    margin-top: 4px;
}

.dp-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 8px;
}

.dp-val {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #4ADE80;
    margin-bottom: 4px;
}

.dp-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

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

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

.comp-table th {
    padding: 18px 24px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.comp-table th:first-child {
    background: var(--bg);
    color: var(--muted);
    width: 32%;
}

.comp-table th:nth-child(2) {
    background: var(--navy);
    color: #fff;
    width: 34%;
}

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

.comp-table th:last-child {
    background: #F8F9FC;
    color: var(--muted);
    width: 34%;
}

.comp-table td {
    padding: 15px 24px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
}

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

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

.comp-table td:nth-child(2) {
    background: rgba(7, 29, 66, .02);
    font-weight: 600;
    color: var(--navy);
}

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

.comp-yes {
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.comp-no {
    color: #DC2626;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* ── INTEGRATIONS ── */
.int-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

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

.int-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(7, 29, 66, .09);
    border-color: var(--sky-mid);
}

.int-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.int-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}

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

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

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

.uc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(7, 29, 66, .1);
    border-color: var(--sky-mid);
}

.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: 14px;
}

.uc-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.uc-feat::before {
    content: '→';
    color: var(--orange);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── OUTPUT REPORT ── */
.report-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.report-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 56px, rgba(255, 255, 255, .015) 56px, rgba(255, 255, 255, .015) 57px), repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255, 255, 255, .015) 56px, rgba(255, 255, 255, .015) 57px);
}

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

.report-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ritem {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 16px 18px;
    transition: all .2s;
}

.ritem:hover {
    background: rgba(255, 255, 255, .09);
}

.ritem-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    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;
}

.ritem-title {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ritem-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.ritem-new {
    display: inline-block;
    background: var(--orange);
    border-radius: 5px;
    padding: 1px 7px;
    font-size: 9.5px;
    font-weight: 700;
    color: #fff;
    margin-left: 8px;
    vertical-align: middle;
}

.report-preview {
    background: #0A0F1C;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    overflow: hidden;
}

.rp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #060A14;
}

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

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

.rp-title {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .04em;
}

.rp-body {
    padding: 20px;
}

.rp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.rp-row:last-child {
    border-bottom: none;
}

.rp-key {
    font-family: var(--mono);
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
}

.rp-val {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
}

.rp-green {
    color: #4ADE80;
}

.rp-orange {
    color: var(--orange);
}

.rp-blue {
    color: #79C0FF;
}

.rp-white {
    color: rgba(255, 255, 255, .82);
}

.rp-badge {
    background: rgba(74, 222, 128, .15);
    border: 1px solid rgba(74, 222, 128, .25);
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #4ADE80;
}

/* ── CASE STUDIES ── */
.cs-section {
    background: linear-gradient(160deg, #F7F9FD 0%, #EEF3FB 100%);
    padding: 80px 0;
}

.cs-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cs-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(7, 29, 66, .07);
    display: grid;
    grid-template-columns: 3fr 2fr;
    transition: box-shadow .2s;
}

.cs-card:hover {
    box-shadow: 0 12px 40px rgba(7, 29, 66, .12);
}

.cs-body {
    padding: 32px 36px;
}

.cs-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cs-badge-nbfc {
    background: #EEF2FF;
    color: #4338CA;
    border: 1px solid rgba(99, 102, 241, .22);
}

.cs-badge-fintech {
    background: #FFF7ED;
    color: #C2410C;
    border: 1px solid rgba(234, 88, 12, .22);
}

.cs-badge-bank {
    background: #F0FDF4;
    color: #15803D;
    border: 1px solid rgba(22, 163, 74, .22);
}

.cs-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

.cs-segment {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

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

.cs-problem-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}

.cs-problem {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 14px;
}

.cs-solution-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--navy-mid);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}

.cs-solution {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.75;
}

.cs-metrics {
    background: linear-gradient(135deg, var(--navy), #0F3580);
    border-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 32px 28px;
}

.cs-metric {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-metric:last-child {
    border-bottom: none;
}

.cs-metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.cs-metric-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.4;
}

/* ── TESTIMONIALS ── */
.testi-section {
    background: var(--white);
    padding: 80px 0;
}

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

.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 2px 14px rgba(7, 29, 66, .05);
    transition: all .22s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.testi-quote-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-quote-icon svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, .7);
}

.testi-text {
    font-size: 14.5px;
    color: var(--text-dark);
    line-height: 1.82;
    font-style: italic;
    flex: 1;
}

.testi-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

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

.testi-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.testi-org {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.testi-star {
    color: var(--orange);
    font-size: 12px;
}

/* ── API CREDIBILITY ── */
.api-section {
    background: linear-gradient(160deg, #040D1E 0%, #071D42 50%, #0A1F4E 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.api-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 64px, rgba(255, 255, 255, .012) 64px, rgba(255, 255, 255, .012) 65px), repeating-linear-gradient(90deg, transparent, transparent 64px, rgba(255, 255, 255, .012) 64px, rgba(255, 255, 255, .012) 65px);
}

.api-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .1;
    pointer-events: none;
    width: 360px;
    height: 360px;
    background: var(--orange);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.api-inner {
    position: relative;
}

.api-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

.api-overview {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.api-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.api-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 8px;
    padding: 6px 14px;
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 600;
}

.api-pill-url {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .7);
}

.api-pill-auth {
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .22);
    color: #4ADE80;
}

.api-pill-rest {
    background: rgba(121, 192, 255, .1);
    border: 1px solid rgba(121, 192, 255, .22);
    color: #79C0FF;
}

.api-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.api-feat {
    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: 12px 14px;
}

.api-feat-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.api-feat-text {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.code-block {
    background: #060C1A;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    overflow: hidden;
}

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

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

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

.code-lang {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, .28);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.code-body {
    padding: 20px 22px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.8;
    overflow-x: auto;
}

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

.c-str {
    color: #A5D6FF;
}

.c-val {
    color: #CE9EFF;
}

.c-num {
    color: #F8C96B;
}

.c-green {
    color: #4ADE80;
}

.c-comment {
    color: rgba(255, 255, 255, .3);
}

.c-method {
    color: #FF8C6E;
}

.c-url {
    color: #A5D6FF;
}

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

.api-cap-block {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 22px 20px;
}

.api-cap-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.api-cap-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.api-cap-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.api-cap-item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.api-sla-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.api-sla-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
}

.api-sla-val {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 5px;
}

.api-sla-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.4;
}

.api-dev-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.api-dev-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

.api-dev-pill span {
    font-size: 14px;
}

.api-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.api-btn-p {
    padding: 13px 26px;
    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;
    box-shadow: 0 6px 20px rgba(232, 114, 26, .38);
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.api-btn-g {
    padding: 13px 26px;
    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;
}

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

/* ── CTA ── */
.cta-section {
    background: linear-gradient(140deg, #040D1E 0%, #071D42 45%, #0F3580 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(232, 114, 26, .14) 0%, transparent 55%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

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

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

.cta-g {
    padding: 16px 36px;
    background: rgba(255, 255, 255, .09);
    border: 1.5px solid rgba(255, 255, 255, .24);
    border-radius: 13px;
    font-size: 15px;
    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: 9px;
}

.cta-g:hover {
    background: rgba(255, 255, 255, .16);
}

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

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

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    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, .55);
    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, .3);
}

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

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

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .cs-card {
        grid-template-columns: 1fr;
    }

    .cs-metrics {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .1);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 24px 28px;
    }

    .cs-metric {
        padding: 14px 20px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, .1);
        flex: 1;
        min-width: 120px;
    }

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

    .api-top-grid {
        grid-template-columns: 1fr;
    }

    .api-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .hero-inner {
        padding: 0 24px;
    }

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

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

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

    .flow-steps,
    .flow-steps-2 {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .cs-card {
        grid-template-columns: 1fr;
    }

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

    .api-bottom-grid {
        grid-template-columns: 1fr;
    }

    .api-feature-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

/* ── ENHANCED RESPONSIVE ── */
@media(max-width:900px) {
    .hero-dash {
        display: none;
    }
    
    .hero-inner {
        text-align: center;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
}

@media(max-width:768px) {
    .topbar {
        padding: 0 20px;
        height: 60px;
    }
    
    .hero {
        padding: 48px 0 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }
    
    .hbtn-p, .hbtn-g {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .htb {
        width: 100%;
        justify-content: center;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
    }
    
    .met {
        padding: 0 10px;
    }
    
    .met-num {
        font-size: 22px;
    }
    
    .met-lbl {
        font-size: 10px;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .sec-title {
        font-size: 24px;
    }
    
    .sec-desc {
        font-size: 14px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-section {
        padding: 48px 0;
    }
    
    .flow-steps,
    .flow-steps-2 {
        grid-template-columns: 1fr;
    }
    
    .flow-result {
        grid-template-columns: 1fr;
    }
    
    .engines-grid {
        grid-template-columns: 1fr;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .hiw-grid {
        grid-template-columns: 1fr;
    }
    
    .hiw-visual {
        margin-top: 24px;
    }
    
    .comp-table {
        display: block;
        overflow-x: auto;
    }
    
    .comp-table th,
    .comp-table td {
        min-width: 150px;
    }
    
    .int-grid {
        grid-template-columns: 1fr;
    }
    
    .uc-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-body {
        padding: 20px;
    }
    
    .cs-title {
        font-size: 16px;
    }
    
    .cs-metrics {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cs-metric {
        flex: 1 1 45%;
    }
    
    .testi-grid {
        grid-template-columns: 1fr;
    }
    
    .api-top-grid {
        grid-template-columns: 1fr;
    }
    
    .api-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .api-sla-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .hbtn-p, .hbtn-g {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .hbtn-p svg {
        width: 11px;
        height: 11px;
    }
    
    .logo-name {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-eyebrow {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .hero-bc span {
        font-size: 11px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .met {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding: 12px 10px;
    }
    
    .met:last-child {
        border-bottom: none;
    }
    
    .sec-title {
        font-size: 20px;
    }
    
    .aud-card {
        padding: 20px 16px;
    }
    
    .aud-icon {
        font-size: 32px;
    }
    
    .fstep {
        padding: 16px 14px;
    }
    
    .fstep-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .fstep-title {
        font-size: 12px;
    }
    
    .engine-card {
        padding: 20px 16px;
    }
    
    .eng-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .eng-title {
        font-size: 14px;
    }
    
    .hiw-step {
        gap: 12px;
    }
    
    .hiw-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .hiw-title {
        font-size: 14px;
    }
    
    .hiw-visual {
        padding: 20px;
    }
    
    .out-row {
        padding: 10px 12px;
    }
    
    .cs-metrics {
        padding: 16px;
    }
    
    .cs-metric {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
    
    .cs-metric:last-child {
        border-bottom: none;
    }
    
    .cs-metric-val {
        font-size: 24px;
    }
}