*,
*::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;
    --red: #DC2626;
    --red-lt: #FEE2E2;
    --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(30px);
    }

    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 8px 26px rgba(232, 114, 26, .42);
    }

    70% {
        box-shadow: 0 8px 36px rgba(232, 114, 26, .65);
    }
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

@keyframes scan {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

/* ===== 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;
    flex-shrink: 0;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.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, color .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: 260px;
    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, color .12s;
}

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

.dropdown-icon {
    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;
    display: inline-flex;
    align-items: center;
}

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

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 29, 66, .5);
    z-index: 250;
    backdrop-filter: blur(2px);
}

.mobile-overlay.open {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 299;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(7, 29, 66, .15);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    pointer-events: all;
}

.mob-section {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
}

.mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.mob-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .2s;
}

.mob-toggle svg {
    width: 14px;
    height: 14px;
    stroke: var(--navy-mid);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.mob-toggle.open {
    transform: rotate(180deg);
}

.mob-sub {
    display: none;
    padding: 6px 0 8px 12px;
}

.mob-sub.open {
    display: block;
}

.mob-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    border-radius: 10px;
    transition: background .15s;
}

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

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

.mob-btns {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-btn-out {
    padding: 13px 20px;
    border: 1.5px solid var(--navy);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all .15s;
}

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

.mob-btn-fill {
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    text-decoration: none;
    text-align: center;
    display: block;
    box-shadow: 0 4px 16px rgba(232, 114, 26, .32);
}

.mob-btn-fill:hover {
    background: var(--orange-dk);
}

/* ===== LAYOUT ===== */
.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;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(140deg, #030C1E 0%, #071D42 35%, #0A2855 58%, #0F3580 100%);
    padding: 84px 0 72px;
    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, .13) 0%, transparent 46%), 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);
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232, 114, 26, .4), transparent);
    animation: scan 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

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

.orb-a {
    width: 420px;
    height: 420px;
    background: rgba(232, 114, 26, .1);
    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;
}

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

.h-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.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);
    flex-shrink: 0;
}

.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;
    flex-wrap: wrap;
}

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

.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;
    animation: pulse-orange 2.8s ease-in-out infinite;
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tb-badge {
    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-wrap {
    position: relative;
}

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

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

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

.fw-b {
    bottom: -26px;
    left: -26px;
    animation: float2 6.5s ease-in-out infinite;
    animation-delay: 2s;
}

.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: 17px;
    font-weight: 900;
    color: #fff;
}

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

.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: pulse-green 1.6s ease-in-out infinite;
}

.mobile-input-row {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 13px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.mi-prefix {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
}

.mi-number {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
    flex: 1;
    letter-spacing: .06em;
}

.mi-consent {
    font-size: 10px;
    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);
    white-space: nowrap;
}

.intel-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

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

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

.ir-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .78);
    flex: 1;
    min-width: 0;
}

.ir-value {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
}

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

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

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

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

.score-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sc-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
}

.sc-val {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.sc-lbl {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .38);
    margin-top: 4px;
}

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

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

/* ===== MODULES ===== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

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

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

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

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

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

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

.mod-card:nth-child(7)::before {
    background: linear-gradient(90deg, #0369A1, #38BDF8);
}

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

.mod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(7, 29, 66, .12);
}

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

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

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

.mod-usecase {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 10px;
}

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

.mod-tag {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 7px;
    background: var(--sky);
    color: var(--navy-mid);
    border: 1px solid var(--border);
}

.mod-tag.consent {
    background: var(--green-lt);
    color: var(--green);
    border-color: rgba(21, 128, 61, .2);
}

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

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hiw-track {
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.hiw-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 0 0 32px;
    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;
    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: 16px;
    padding: 18px 22px;
}

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

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

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

.hiw-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

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

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

.intel-output {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 12px;
    position: relative;
}

.io-head {
    font-family: 'Sora', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 12px;
}

.io-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.io-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .06);
    border-radius: 9px;
    flex-wrap: wrap;
    gap: 4px;
}

.io-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .48);
}

.io-val {
    font-size: 12px;
    font-weight: 700;
}

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

.iov-data {
    color: rgba(255, 255, 255, .82);
    font-family: var(--mono);
    font-size: 11px;
}

.consent-stamp {
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cs-text {
    font-size: 12px;
    font-weight: 700;
    color: rgba(74, 222, 128, .9);
    flex: 1;
}

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

/* ===== USE CASES ===== */
.uc-section {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 100%);
    padding: 88px 0;
}

.uc-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.uc-tab {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all .2s;
    background: var(--white);
}

.uc-tab.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.uc-tab:hover:not(.active) {
    border-color: var(--orange);
    color: var(--navy);
}

.uc-panels {
    display: none;
}

.uc-panels.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

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

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

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

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

.ucp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

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

/* ===== COMPLIANCE ===== */
.compliance-section {
    background: var(--navy);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 25%, rgba(74, 222, 128, .08) 0%, transparent 50%), radial-gradient(ellipse at 8% 75%, rgba(94, 53, 177, .1) 0%, transparent 46%), repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255, 255, 255, .016) 28px, rgba(255, 255, 255, .016) 29px);
}

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

.comp-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, .14);
    border: 1px solid rgba(74, 222, 128, .28);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 10.5px;
    font-weight: 700;
    color: #4ADE80;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

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

.comp-title em {
    background: linear-gradient(135deg, #4ADE80, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

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

.comp-principles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cp-item {
    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;
}

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

.cp-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

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

.comp-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.cb-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
}

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

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

.cbb-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .42);
}

.comp-note {
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 14px;
    padding: 18px 20px;
}

.cn-head {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #4ADE80;
    margin-bottom: 8px;
}

.cn-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

/* ===== PLATFORM METRICS ===== */
.adv-section {
    background: var(--bg);
    padding: 88px 0;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

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

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(7, 29, 66, .1);
}

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

.adv-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.adv-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
}

/* ===== 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);
}

.api-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    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: 22px;
}

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

.api-governance {
    background: rgba(74, 222, 128, .06);
    border: 1px solid rgba(74, 222, 128, .18);
    border-radius: 13px;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.ag-head {
    font-size: 12px;
    font-weight: 700;
    color: #4ADE80;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ag-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ag-item {
    font-size: 12.5px;
    color: rgba(74, 222, 128, .8);
}

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

.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;
    -webkit-overflow-scrolling: touch;
}

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

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

.comp-guarantee {
    background: rgba(74, 222, 128, .05);
    border: 1px solid rgba(74, 222, 128, .16);
    border-radius: 13px;
    padding: 15px 18px;
}

.cg-head {
    font-size: 11px;
    font-weight: 700;
    color: #4ADE80;
    margin-bottom: 8px;
}

.cg-body {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
}

/* ===== 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: 26px 22px;
    box-shadow: 0 4px 16px rgba(7, 29, 66, .06);
    transition: all .22s;
}

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

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

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

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

.secf-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-lt);
    border: 1px solid rgba(21, 128, 61, .18);
    border-radius: 8px;
    padding: 4px 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;
}

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

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

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

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

.fci-title {
    font-family: 'Sora', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -.025em;
}

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

.fci-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 28px;
}

.fci-compliance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .22);
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: #4ADE80;
    margin-bottom: 32px;
}

.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 {
    transform: translateY(-2px);
}

.fcb-g {
    padding: 17px 38px;
    background: rgba(255, 255, 255, .09);
    border: 1.5px solid rgba(255, 255, 255, .24);
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
}

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

/* ===== 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-legal {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
}

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

.footer-btm-links {
    display: flex;
    gap: 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 5px;
}

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

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

/* ===== RESPONSIVE 1100px ===== */
@media(max-width:1100px) {
    .topbar {
        padding: 0 32px;
    }

    .wrap {
        padding: 0 32px;
    }

    .hero-inner {
        padding: 0 32px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero {
        min-height: auto;
    }

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

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

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

    .comp-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .api-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .fw-a {
        top: -16px;
        right: -16px;
    }

    .fw-b {
        bottom: -16px;
        left: -16px;
    }
}

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

    .nav-links,
    .nav-btns {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .topbar {
        padding: 0 20px;
        height: 64px;
    }

    .mobile-menu {
        top: 64px;
        max-height: calc(100vh - 64px);
    }

    .wrap {
        padding: 0 20px;
    }

    .hero {
        padding: 52px 0 44px;
    }

    .hero-inner {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .hero-sub {
        font-size: 15px;
    }

    .hbtn-p,
    .hbtn-g {
        padding: 13px 22px;
        font-size: 13.5px;
    }

    .fw-a,
    .fw-b {
        display: none;
    }

    .hero-dash {
        padding: 16px;
    }

    .ir-value {
        display: none;
    }

    .sc-val {
        font-size: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .hiw-section,
    .uc-section,
    .compliance-section,
    .adv-section,
    .api-section,
    .sec-section {
        padding: 56px 0;
    }

    .final-cta {
        padding: 64px 0;
    }

    .sec-head {
        margin-bottom: 32px;
    }

    .sec-title {
        font-size: 26px;
    }

    .sec-desc {
        font-size: 15px;
    }

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

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

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

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

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

    .comp-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .hiw-track::before {
        left: 28px;
    }

    .hiw-num {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .comp-title {
        font-size: 26px;
    }

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

    .fci-desc {
        font-size: 15px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-btm-links {
        justify-content: center;
    }

    .score-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== RESPONSIVE 480px ===== */
@media(max-width:480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-ew {
        font-size: 10px;
        padding: 6px 14px;
    }

    .trust-badges {
        gap: 6px;
    }

    .tb-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

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

    .comp-badges {
        grid-template-columns: 1fr 1fr;
    }

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

    .fcb-p,
    .fcb-g {
        padding: 14px 22px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hiw-track::before {
        display: none;
    }

    .sla-row {
        grid-template-columns: 1fr 1fr;
    }

    .api-btns {
        flex-direction: column;
    }

    .abtn-p,
    .abtn-g {
        justify-content: center;
        text-align: center;
    }

    .cb-body {
        padding: 12px 14px;
    }

    .cl {
        font-size: 11px;
    }

    .uc-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hbtn-p,
    .hbtn-g {
        justify-content: center;
    }
}