    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --page-bg: #F7F8FC;
        --primary: #0D2B20;
        /* Refined Deep Emerald Racing Green */
        --accent: #C4971A;
        --accent-dark: #A8720F;
        --surface: #FFFFFF;
        --text-primary: #0A0F1E;
        --text-secondary: #4B5563;
        --border: #E2E6F0;
        --dark-bg: #0D2B20;
        --success: #1A6B4A;
        --tint: #F1F5F2;
        --green: #183D2D;
        --green-dark: #0F2B1E;

        --max-w: 1400px;
        --pad-x: 40px;
        --font-display: 'Ubuntu', sans-serif;
        --font-body: 'Ubuntu', sans-serif;
        --font-mono: 'Space Mono', monospace;
        --gold-gradient: linear-gradient(135deg, #C4971A 0%, #FACC15 100%);
    }

    .text-gold {
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline;
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: var(--font-body);
        background: var(--page-bg);
        color: var(--text-primary);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased
    }

    .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--pad-x)
    }

    section {
        width: 100%
    }

    .sec-pad {
        padding: 72px 0
    }

    .animate-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .5s ease, transform .5s ease
    }

    .animate-in.visible {
        opacity: 1;
        transform: translateY(0)
    }

    /* Hero elements visibility (above the fold) */
    .hero2-left .animate-in,
    .h2-right .animate-in,
    .hero2 .animate-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .btn-gold {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--accent);
        color: #fff;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        padding: 12px 28px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: transform .25s ease, background .25s ease, box-shadow .25s ease
    }

    .btn-gold:hover {
        background: var(--accent-dark);
        transform: scale(1.02);
        box-shadow: 0 6px 28px rgba(196, 151, 26, .35)
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--primary);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        padding: 11px 26px;
        border-radius: 12px;
        border: 1.5px solid var(--primary);
        cursor: pointer;
        text-decoration: none;
        transition: all .25s ease
    }

    .btn-ghost:hover {
        background: var(--primary);
        color: #fff
    }

    .btn-ghost-cream {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #F7F8FC;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        padding: 11px 26px;
        border-radius: 12px;
        border: 1.5px solid rgba(247, 248, 252, .5);
        cursor: pointer;
        text-decoration: none;
        transition: all .25s ease
    }

    .btn-ghost-cream:hover {
        background: rgba(247, 248, 252, .12)
    }

    .tag-chip {
        display: inline-block;
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 999px;
        background: var(--green);
        color: #fff;
        margin-bottom: 20px
    }

    .tag-chip-gold {
        background: var(--accent);
        color: #fff
    }

    .tag-chip-outline {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text-secondary)
    }





    /* ORBS */
    .orb-wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
        z-index: 0
    }

    .orb {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.08;
        animation: orbFlow 25s infinite alternate ease-in-out
    }

    .orb-1 {
        top: -10%;
        right: -10%;
        background: var(--accent)
    }

    .orb-2 {
        bottom: -10%;
        left: -10%;
        background: var(--green);
        animation-delay: -5s
    }

    .orb-3 {
        top: 20%;
        left: 20%;
        background: var(--accent);
        width: 400px;
        height: 400px;
        opacity: 0.04;
        animation-duration: 18s
    }

    @keyframes orbFlow {
        0% {
            transform: translate(0, 0) scale(1)
        }

        50% {
            transform: translate(50px, 100px) scale(1.1)
        }

        100% {
            transform: translate(-50px, 50px) scale(0.9)
        }
    }

    /* REPORTS SECTION */
    .reports-sec {
        background: #fff;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .reports-layout {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 40px;
        align-items: center;
        margin-top: 48px
    }

    .report-pills {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .report-pill {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 16px;
        padding: 16px 24px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .report-pill:hover {
        border-color: var(--accent);
        background: #fff;
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 10px 30px rgba(196, 151, 26, 0.15);
    }

    .report-pill .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 10px var(--accent);
        animation: pulseGlow 2s infinite;
    }

    @keyframes pulseGlow {
        0% {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 0 5px var(--accent);
        }

        50% {
            transform: scale(1.3);
            opacity: 0.7;
            box-shadow: 0 0 15px var(--accent);
        }

        100% {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 0 5px var(--accent);
        }
    }

    .report-card-wrap {
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 24px;
        box-shadow:
            0 4px 6px -1px rgba(0, 0, 0, 0.05),
            0 10px 15px -3px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .report-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .report-card-header .title-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .report-card-header h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.01em;
    }

    .report-card-header .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #F0FDF4;
        color: #166534;
        font-size: 11.5px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 99px;
        border: 1px solid rgba(22, 101, 52, 0.1);
    }

    .report-list {
        display: flex;
        flex-direction: column;
    }

    .report-row {
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 10px 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: background 0.2s, transform 0.2s;
    }

    .report-row:last-child {
        border-bottom: none;
    }

    .report-row:hover {
        background: #F8FAFC;
    }

    .report-row .file-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .report-row .file-icon.pdf {
        background: #FEF2F2;
        color: #EF4444;
    }

    .report-row .file-icon.xlsx {
        background: #F0FDF4;
        color: #10B981;
    }

    .report-row .file-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .report-row .file-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
    }

    .report-row .file-meta {
        font-size: 11px;
        color: var(--text-secondary);
        font-weight: 500;
        opacity: 0.8;
    }

    .report-row .row-actions {
        display: flex;
        gap: 10px;
    }

    .btn-row-action {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        background: #fff;
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.2s;
    }

    .btn-row-action:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .report-center-footer {
        margin-top: 4px;
        padding: 10px;
        background: #F8FAFC;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .report-center-footer .total-reconciled {
        font-size: 13px;
        color: var(--text-secondary);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .report-center-footer strong {
        color: var(--text-primary);
        font-family: 'JetBrains Mono', monospace;
        font-weight: 700;
    }

    .report-center-footer .check-icon {
        color: #10B981;
        display: flex;
    }

    .report-export {
        margin-top: 32px;
        display: flex;
        gap: 12px
    }

    /* Removed btn-export styling */

    @media(max-width:1024px) {
        .reports-layout {
            grid-template-columns: 1fr;
            gap: 32px
        }

        .report-pills {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px
        }
    }

    @media(max-width:600px) {
        .report-pills {
            grid-template-columns: 1fr
        }
    }


    .hero2 {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0;
        background: #fff;
        position: relative;
        overflow: hidden
    }

    .hero2::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(26, 77, 58, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 77, 58, .03) 1px, transparent 1px);
        background-size: 64px 64px;
        pointer-events: none
    }

    .hero2-inner {
        display: grid;
        grid-template-columns: 55% 45%;
        align-items: center;
        gap: 60px;
        padding: 56px var(--pad-x);
        max-width: var(--max-w);
        margin: 0 auto;
        width: 100%
    }

    /* LEFT */
    .h2-eyebrow {
        font-family: var(--font-mono);
        display: inline-block;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        background: #1A4D3A;
        color: #fff;
        padding: 6px 14px;
        border-radius: 6px;
        margin-bottom: 20px
    }

    .h2-h1 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: clamp(40px, 4.5vw, 58px);
        line-height: 1.05;
        color: #0F2820;
        margin-bottom: 20px
    }

    .h2-body {
        font-family: var(--font-body);
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 440px;
        line-height: 1.65;
        margin-bottom: 32px
    }

    .h2-form {
        display: flex;
        max-width: 480px;
        overflow: visible;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
    }

    .h2-form input {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid #D4E8DC;
        border-right: none;
        border-radius: 8px 0 0 8px;
        font-family: var(--font-body);
        font-size: 15px;
        outline: none;
        background: #fff;
        color: #0F2820;
        min-width: 0;
        transition: border-color .2s
    }

    .h2-form input:focus {
        border-color: #1A4D3A
    }

    .h2-form input::placeholder {
        color: #B3BBCF
    }

    .h2-form button {
        background: #C4971A;
        color: #0F2820;
        border: none;
        padding: 12px 22px;
        border-radius: 0 8px 8px 0;
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        white-space: nowrap;
        transition: background .2s, box-shadow .2s
    }

    .h2-form button:hover {
        background: #D4A820;
        box-shadow: 0 4px 18px rgba(196, 151, 26, .4)
    }

    .h2-trust {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 12px
    }

    .h2-trust span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        color: #8896B3
    }

    .h2-trust .ck {
        color: #059669;
        font-size: 13px;
        font-weight: 700
    }

    /* RIGHT — DASHBOARD MOCKUP */
    .h2-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0
    }

    .dash-main-card {
        background: #fff;
        border: 1px solid #D4E8DC;
        border-radius: 16px;
        padding: 20px;
        width: 280px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
        animation: dashFloat 4s ease-in-out infinite alternate;
        position: relative;
        z-index: 2
    }

    @keyframes dashFloat {
        from {
            transform: translateY(0)
        }

        to {
            transform: translateY(-6px)
        }
    }

    .dmc-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px
    }

    .dmc-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #0F2820
    }

    .dmc-live {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        color: #059669;
        font-weight: 600
    }

    .dmc-live-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #059669;
        animation: pulse-ping 1.5s infinite
    }

    .dmc-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-bottom: 14px
    }

    .dmc-stat {
        text-align: center;
        padding: 0 4px
    }

    .dmc-stat-val {
        font-family: 'JetBrains Mono', monospace;
        font-size: 16px;
        font-weight: 600;
        color: #0F2820;
        line-height: 1.2
    }

    .dmc-stat-lbl {
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: var(--text-secondary);
        margin-top: 2px
    }

    .dmc-divider {
        height: 1px;
        background: #D4E8DC;
        margin-bottom: 12px
    }

    .dmc-rows {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px
    }

    .dmc-row {
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0;
        transform: translateY(6px);
        transition: opacity .4s ease, transform .4s ease
    }

    .dmc-row.show {
        opacity: 1;
        transform: translateY(0)
    }

    .dmc-av {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 9px;
        font-weight: 600;
        color: #fff;
        flex-shrink: 0
    }

    .dmc-info {
        flex: 1;
        min-width: 0
    }

    .dmc-name {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #0F2820;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .dmc-sub {
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: var(--text-secondary)
    }

    .dmc-chip {
        font-family: 'DM Sans', sans-serif;
        font-size: 9px;
        font-weight: 600;
        padding: 2px 7px;
        border-radius: 99px;
        white-space: nowrap;
        flex-shrink: 0
    }

    .chip-green {
        background: #ECFDF5;
        color: #059669
    }

    .chip-amber {
        background: #FFFBEB;
        color: #B45309;
        animation: chipPulse 2s infinite
    }

    @keyframes chipPulse {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .6
        }
    }

    .dmc-budget {
        margin-top: 2px
    }

    .dmc-budget-label {
        display: flex;
        justify-content: space-between;
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: #5A6480;
        margin-bottom: 4px
    }

    .dmc-budget-label span:last-child {
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px
    }

    .dmc-track {
        height: 4px;
        background: #D4E8DC;
        border-radius: 99px;
        overflow: hidden
    }

    .dmc-fill {
        height: 100%;
        background: #C4971A;
        border-radius: 99px;
        width: 0;
        transition: width 1.2s ease
    }

    /* FLOATING NOTIF CARD */
    .dash-notif {
        position: absolute;
        top: -20px;
        right: -60px;
        width: 220px;
        background: #fff;
        border: 1px solid #D4E8DC;
        border-radius: 12px;
        padding: 12px 14px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
        transform: translateX(60px);
        opacity: 0;
        transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
        z-index: 3;
        animation: dashFloat 4s ease-in-out infinite alternate;
        animation-delay: .8s
    }

    .dash-notif.slide-in {
        transform: translateX(0);
        opacity: 1
    }

    .dn-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #0F2820;
        margin-bottom: 3px
    }

    .dn-detail {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        color: var(--text-secondary)
    }

    .dn-footer {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 6px;
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: var(--text-secondary)
    }

    .dn-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #059669
    }




    /* WAITLIST BADGE */
    .waitlist-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #EDFAF3;
        border: 1px solid #D4E8DC;
        border-radius: 10px;
        padding: 7px 14px;
        margin-top: 24px
    }

    /* LIVE DASHBOARD — PREMIUM THEME */
    .dash-outer-wrap {
        position: relative;
        width: 100%;
    }

    .dash-container {
        width: 100%;
        max-width: 600px;
        height: 490px;
        background: radial-gradient(circle at 0% 0%, #FDFEFF 0%, #F5F8F6 50%, #EEF3F0 100%);
        border: 1px solid rgba(200, 223, 207, 0.6);
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        box-shadow:
            0 10px 20px rgba(18, 38, 30, 0.03),
            0 30px 60px rgba(18, 38, 30, 0.10),
            0 120px 240px rgba(18, 38, 30, 0.15);
        animation: dashFadeIn 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    }

    @keyframes dashFadeIn {
        0% {
            opacity: 0;
            transform: translateY(16px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* SIDEBAR */
    .dash-sidebar {
        width: 44px;
        background: linear-gradient(180deg, #1A332B 0%, #11261F 100%);
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 16px 0;
        gap: 22px;
        flex-shrink: 0;
        position: relative;
    }

    .dash-sidebar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 0%, rgba(196, 151, 26, 0.1), transparent 70%);
        pointer-events: none;
    }

    .sidebar-logo {
        width: 24px;
        height: 24px;
        background: #C4971A;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1A332B;
        font-weight: 800;
        font-size: 14px;
        flex-shrink: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        font-family: 'DM Sans', sans-serif;
    }

    .side-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .side-icon {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .side-icon:hover {
        color: rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.04);
    }

    .side-icon.active {
        background: rgba(196, 151, 26, 0.18);
        color: #C4971A;
        box-shadow: 0 0 0 1px rgba(196, 151, 26, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .dash-sidebar::after {
        content: '';
        display: block;
        flex: 1;
    }

    /* MAIN AREA */
    .dash-main {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        min-width: 0;
    }

    /* TOPBAR */
    .dash-topbar {
        height: 42px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        flex-shrink: 0;
        z-index: 10;
    }

    .dash-topbar .top-left {
        font-weight: 700;
        font-size: 12px;
        color: #1A332B;
    }

    .dash-topbar .top-right {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .dash-topbar .top-pill {
        background: #F0F5F2;
        border: 1px solid #D4E8DC;
        border-radius: 5px;
        padding: 3px 7px;
        font-size: 10px;
        color: #5B7B68;
    }

    .dash-topbar .top-btn {
        width: 24px;
        height: 24px;
        background: #F0F5F2;
        border: 1px solid #D4E8DC;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #5B7B68;
    }

    .dash-topbar .notif-dot {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 6px;
        height: 6px;
        background: #C4971A;
        border: 1.5px solid #fff;
        border-radius: 50%;
    }

    .dash-topbar .top-av {
        width: 24px;
        height: 24px;
        background: #12261E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #C4971A;
        font-weight: 700;
        font-size: 8px;
    }

    /* CONTENT */
    .dash-content {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
        overflow: hidden;
    }

    /* STATS ROW */
    .stat-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        flex-shrink: 0;
    }

    .stat-card {
        background: #fff;
        border: 1px solid rgba(200, 223, 207, 0.4);
        border-radius: 12px;
        padding: 12px 12px 14px;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    }

    .stat-card::after {
        content: "";
        position: absolute;
        top: -100%;
        left: -100%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg,
                transparent 0%,
                rgba(255, 255, 255, 0) 45%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 55%,
                transparent 100%);
        transition: all 0.6s;
        pointer-events: none;
    }

    .stat-card:hover::after {
        top: 0;
        left: 0;
    }

    .stat-lbl {
        font-size: 9px;
        color: #5B7B68;
        margin-bottom: 3px;
    }

    .stat-val {
        font-size: 15px;
        font-weight: 700;
        color: #12261E;
        margin-bottom: 1px;
    }

    .stat-sub {
        font-size: 8px;
        font-weight: 500;
    }

    .stat-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        border-radius: 0 2px 2px 0;
    }

    /* MAIN GRID */
    .main-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 8px;
        flex: 1;
        min-height: 0;
    }

    .grid-col {
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-height: 0;
        overflow: hidden;
    }

    .card-base {
        background: #fff;
        border: 1px solid rgba(200, 223, 207, 0.4);
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 4px rgba(18, 38, 30, 0.02), 0 1px 1px rgba(0, 0, 0, 0.01);
        transition: box-shadow 0.3s;
    }

    .card-base:hover {
        box-shadow: 0 6px 18px rgba(18, 38, 30, 0.06);
    }

    .card-h {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .card-title {
        font-size: 10px;
        font-weight: 700;
        color: #12261E;
    }

    /* TRANSACTIONS */
    .tx-row {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 5px 0;
        border-bottom: 1px solid #F0F5F2;
        opacity: 0;
        transform: translateX(-6px);
    }

    .tx-row:last-child {
        border-bottom: none;
    }

    .tx-av {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 8px;
        flex-shrink: 0;
    }

    .tx-info {
        flex: 1;
        min-width: 0;
    }

    .tx-name {
        font-size: 9px;
        font-weight: 600;
        color: #12261E;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tx-type {
        font-size: 8px;
        color: #5B7B68;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tx-amt-wrap {
        text-align: right;
        flex-shrink: 0;
    }

    .tx-amt {
        font-size: 10px;
        font-weight: 700;
        color: #12261E;
    }

    .chip {
        display: inline-block;
        padding: 2px 5px;
        border-radius: 3px;
        font-size: 7px;
        font-weight: 600;
        margin-top: 2px;
        white-space: nowrap;
    }

    .dash-pulse {
        width: 6px;
        height: 6px;
        background: #1A4D3A;
        border-radius: 50%;
        animation: dashPulse 2s infinite;
        flex-shrink: 0;
    }

    @keyframes dashPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(26, 77, 58, 0.4);
        }

        70% {
            box-shadow: 0 0 0 5px rgba(26, 77, 58, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(26, 77, 58, 0);
        }
    }

    /* APPROVAL STEPPER */
    .stepper {
        display: flex;
        flex-direction: column;
    }

    .step {
        display: flex;
        gap: 8px;
    }

    .step-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 20px;
        flex-shrink: 0;
    }

    .step-circle {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: 700;
        transition: all 0.4s;
        flex-shrink: 0;
    }

    .step-line {
        width: 2px;
        height: 12px;
        background: #D4E8DC;
        margin: 2px 0;
        transition: background 0.4s;
    }

    .step-line.filled {
        background: #1A4D3A;
    }

    .step-circle.done {
        background: #1A4D3A;
        color: #fff;
    }

    .step-circle.active {
        background: #EDFAF3;
        border: 2px solid #1A4D3A;
        color: #1A4D3A;
    }

    .step-circle.waiting {
        background: #F0F5F2;
        border: 1px solid #D4E8DC;
        color: #aaa;
    }

    .step-right {
        flex: 1;
        padding-bottom: 0;
    }

    .step-name {
        font-size: 9px;
        font-weight: 600;
        color: #12261E;
    }

    .step-role {
        font-size: 8px;
        color: #5B7B68;
    }

    /* WALLET BARS */
    .wallet-bar {
        height: 5px;
        background: #E4EDE8;
        border-radius: 3px;
        margin-top: 3px;
    }

    .wallet-fill {
        height: 100%;
        border-radius: 3px;
        width: 0;
        transition: width 1s ease-out;
    }

    /* PAYMENT NOTIF CARD */
    .notif-card {
        border-top: 3px solid #1A4D3A;
        background: linear-gradient(135deg, #fff 0%, #F2FAF5 100%);
    }

    /* ANIMATIONS */
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes slideIn {
        0% {
            opacity: 0;
            transform: translateX(-6px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* h2-right override */
    .h2-right {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
    }

    /* MOBILE */
    @media (max-width: 1024px) {
        .dash-container {
            max-width: 100%;
            height: auto;
        }

        .float-card {
            display: none !important;
        }

        .stat-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .main-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .h2-right {
            padding: 12px 0;
        }

        .dash-container {
            height: auto;
            border-radius: 10px;
        }

        .dash-sidebar {
            display: none;
        }

        .dash-content {
            overflow: visible;
        }

        .main-grid {
            grid-template-columns: 1fr;
            height: auto;
        }

        .grid-col {
            overflow: visible;
        }
    }


    .rating-badge {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: fit-content;
        margin-top: 24px;
    }

    .rating-top {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rating-stars {
        display: flex;
        gap: 2px;
    }

    .r-score {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -0.01em;
    }

    .r-sub {
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 400;
        color: var(--text-secondary);
        opacity: 0.7;
        line-height: 1.4;
    }

    .r-line2 {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        font-weight: 500;
        color: var(--text-secondary);
        opacity: 0.8;
    }

    @keyframes urgencyPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(239, 68, 68, .5);
            opacity: 1
        }

        50% {
            box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
            opacity: .8
        }
    }

    /* Pre-form label */
    .h2-form-label {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #1A4D3A;
        margin-bottom: 8px;
        display: block
    }

    @keyframes pulse-ping {
        0% {
            box-shadow: 0 0 0 0 rgba(5, 150, 105, .5)
        }

        70% {
            box-shadow: 0 0 0 6px rgba(5, 150, 105, 0)
        }

        100% {
            box-shadow: 0 0 0 0 rgba(5, 150, 105, 0)
        }
    }






    .hero-featured {
        margin-top: 48px;
        padding-bottom: 56px;
        width: 100%;
        position: relative;
    }

    .hero-featured .feat-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .hero-featured .feat-label {
        font-size: 10px;
        font-weight: 700;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 0.22em;
        opacity: 0.7;
    }

    .hero-featured .feat-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 64px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-featured .feat-logo-item {
        opacity: 0.35;
        filter: grayscale(1);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: crosshair;
    }

    .hero-featured .feat-logo-item:hover {
        opacity: 1;
        filter: grayscale(0);
        transform: translateY(-2px) scale(1.02);
    }

    .hero-featured .feat-sep {
        width: 1px;
        height: 48px;
        background: linear-gradient(to bottom, transparent, var(--accent), transparent);
        opacity: 0.2;
    }

    .hero-featured .logo-toi {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 900;
        color: var(--primary);
        letter-spacing: -0.01em;
        line-height: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-featured .logo-toi span {
        display: block;
        font-size: 8px;
        letter-spacing: 0.5em;
        margin-bottom: 2px;
        color: var(--text-secondary);
        opacity: 0.8;
        font-weight: 700;
    }

    .hero-featured .logo-nyw {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
    }

    .hero-featured .logo-nyw .ny {
        font-family: 'Crimson Text', serif;
        font-size: 16px;
        font-style: italic;
        color: var(--text-secondary);
        margin-bottom: -2px;
    }

    .hero-featured .logo-nyw .weekly {
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    @media (max-width: 768px) {
        .hero-featured {
            margin-top: 40px;
            padding-bottom: 40px;
        }

        .hero-featured .feat-logos {
            gap: 32px;
            flex-wrap: wrap;
        }

        .hero-featured .feat-sep {
            display: none;
        }
    }



    .showcase-sec {
        background: var(--page-bg);
        padding: 80px 0
    }

    .sec-intro {
        text-align: center;
        max-width: 1040px;
        margin: 0 auto 72px
    }

    .sec-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--text-secondary);
        padding: 5px 14px;
        border: 1px solid var(--border);
        border-radius: 999px;
        margin-bottom: 14px
    }

    .sec-h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 46px);
        font-weight: 600;
        line-height: 1.15;
        color: var(--text-primary);
        margin-bottom: 14px
    }

    .sec-sub {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.65
    }

    .showcase-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 80px;
        padding: 48px;
        background: #fff;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 2px 24px rgba(0, 0, 0, .04);
        transition: box-shadow .3s, transform .3s
    }

    .showcase-block:hover {
        box-shadow: 0 8px 48px rgba(0, 0, 0, .1);
        transform: translateY(-3px)
    }

    .showcase-block.rev {
        direction: rtl
    }

    .showcase-block.rev>* {
        direction: ltr
    }

    .block-text .block-h3 {
        font-family: var(--font-display);
        font-size: clamp(26px, 3.2vw, 34px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 6px;
        line-height: 1.15;
    }

    .block-text .block-h4 {
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 500;
        color: var(--text-secondary);
        margin-bottom: 20px;
        line-height: 1.5;
        max-width: 480px;
    }

    .block-text p {
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.75;
        margin-bottom: 24px
    }

    .block-text ul {
        list-style: none;
        margin-bottom: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .block-text li {
        font-size: 14px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.4;
    }

    .block-text li::before {
        content: "";
        width: 14px;
        height: 14px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4971A' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        flex-shrink: 0;
    }

    .block-text .btn-showcase {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 13px 28px;
        background: var(--primary);
        /* Deep Emerald Primary */
        border: none;
        color: #FFFFFF;
        border-radius: 12px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 10px rgba(26, 77, 58, 0.1);
        margin-top: 14px;
    }

    .block-text .btn-showcase:hover {
        background: var(--green);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(26, 77, 58, 0.2);
    }

    .block-text .btn-showcase svg {
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .block-text .btn-showcase:hover svg {
        transform: translateX(4px);
    }

    .block-anim {
        background: var(--tint);
        border-radius: 16px;
        padding: 28px;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden
    }

    /* PIPELINE */
    .pipeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
        width: 100%
    }

    .pip-node {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        max-width: 280px
    }

    .pip-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all .5s cubic-bezier(0.16, 1, 0.3, 1)
    }

    .pip-icon.active {
        border-color: var(--success);
        background: #ECFDF5;
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
        animation: iconBreathe 2s infinite ease-in-out
    }

    .pip-icon svg {
        transition: stroke .4s
    }

    .pip-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-secondary);
        transition: all .4s ease
    }

    .pip-label.active {
        color: var(--text-primary);
        font-weight: 700;
        transform: translateX(4px)
    }

    @keyframes iconBreathe {

        0%,
        100% {
            transform: scale(1)
        }

        50% {
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(16, 185, 129, 0.3)
        }
    }

    .pip-connector {
        width: 2px;
        height: 32px;
        background: var(--border);
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        margin-left: 21px;
        align-self: flex-start
    }

    .pip-connector-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--success);
        transition: height .6s ease;
        box-shadow: 0 0 8px rgba(16, 185, 129, 0.3)
    }

    .pip-connector-fill.filled {
        height: 100%
    }

    .pip-badge {
        margin-top: 16px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 8px 14px;
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text-secondary)
    }

    /* PO ANIMATION */
    .po-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
    }

    .po-line-items {
        margin-bottom: 12px
    }

    .po-item {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border-bottom: 1px solid var(--border);
        font-size: 12px;
        opacity: 0;
        transition: opacity .4s
    }

    .po-item.show {
        opacity: 1
    }

    .po-item span:first-child {
        color: var(--text-secondary)
    }

    .po-item span:last-child {
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 700;
        color: var(--text-primary)
    }

    .po-total {
        display: flex;
        justify-content: space-between;
        font-weight: 700;
        padding: 8px 0 10px;
        font-size: 13px
    }

    .po-total .amt {
        font-family: var(--font-mono);
        color: var(--green)
    }

    .po-status {
        height: 5px;
        border-radius: 99px;
        background: var(--tint);
        overflow: hidden;
        margin-bottom: 8px
    }

    .po-status-fill {
        height: 100%;
        border-radius: 99px;
        background: var(--accent);
        width: 0;
        transition: width .8s ease
    }

    .po-badge {
        text-align: center;
        font-size: 11px;
        font-weight: 700;
        color: var(--success);
        opacity: 0;
        transition: opacity .4s;
        padding: 6px;
        background: #ECFDF5;
        border-radius: 6px
    }

    /* RECEIPT STEPS */
    .receipt-step {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        transition: opacity .5s ease
    }

    .receipt-step.active {
        opacity: 1;
        position: relative;
        inset: auto
    }

    .r-panel {
        background: #fff;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08)
    }

    .r-title {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--text-secondary);
        margin-bottom: 8px;
        font-weight: 600
    }

    .r-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 0;
        font-size: 12px
    }

    .r-row svg {
        flex-shrink: 0;
        color: var(--green)
    }

    .typewriter {
        font-size: 12px;
        color: var(--text-primary);
        border-right: 2px solid var(--green);
        white-space: nowrap;
        overflow: hidden;
        width: 0;
        transition: width 1s steps(28, end)
    }

    .typewriter.typed {
        width: auto;
        border-right: none
    }

    /* VENDOR CARD */
    .vendor-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
    }

    .v-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px
    }

    .v-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--tint);
        display: flex;
        align-items: center;
        justify-content: center
    }

    .v-name {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.3
    }

    .v-cat {
        display: inline-block;
        font-size: 10px;
        background: var(--tint);
        color: var(--primary);
        padding: 2px 8px;
        border-radius: 99px;
        margin-top: 2px
    }

    .v-bank {
        font-size: 11px;
        color: var(--text-secondary);
        padding: 8px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin-bottom: 8px;
        font-family: var(--font-mono)
    }

    .v-po-count {
        font-size: 11px;
        color: var(--text-secondary);
        margin-bottom: 10px
    }

    .v-po-num {
        font-family: var(--font-mono);
        font-size: 18px;
        font-weight: 700;
        color: var(--green)
    }

    .v-timeline {
        margin-bottom: 12px
    }

    .v-entry {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
        font-size: 11px;
        opacity: 0;
        transform: translateX(-8px);
        transition: all .4s
    }

    .v-entry.show {
        opacity: 1;
        transform: translateX(0)
    }

    .v-entry .dt {
        color: var(--text-secondary)
    }

    .v-entry .amt {
        font-family: var(--font-mono);
        font-weight: 700;
        color: var(--success)
    }

    .v-entry .chk {
        font-size: 10px;
        color: var(--success)
    }

    .v-pay-btn {
        width: 100%;
        padding: 9px;
        background: var(--accent);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 12px;
        cursor: pointer;
        animation: softPulse 2s infinite
    }

    @keyframes softPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(196, 151, 26, .4)
        }

        50% {
            box-shadow: 0 0 0 6px rgba(196, 151, 26, 0)
        }
    }






    /* ── PAY HERO SPLIT LAYOUT ───────────────────────────────── */
    .pay-hero {
        background: var(--green);
        padding: 64px 0;
        overflow: hidden;
        position: relative;
    }

    /* Subtle noise/grain overlay */
    .pay-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 80% 20%, rgba(196, 151, 26, .08) 0%, transparent 55%),
            radial-gradient(circle at 10% 80%, rgba(255, 255, 255, .04) 0%, transparent 40%);
        pointer-events: none;
        z-index: 0;
    }

    .pay-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* ── LEFT: CONTENT ───────────────────────────── */
    .pay-left .pay-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .06em;
        color: var(--accent);
        margin-bottom: 16px;
        background: rgba(196, 151, 26, .1);
        border: 1px solid rgba(196, 151, 26, .3);
        padding: 6px 14px 6px 10px;
        border-radius: 999px;
        backdrop-filter: blur(8px);
    }

    .pay-left .pay-eyebrow .ew-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 2px rgba(196, 151, 26, .25);
        animation: eyebrowPulse 2s infinite;
        flex-shrink: 0;
    }

    @keyframes eyebrowPulse {

        0%,
        100% {
            box-shadow: 0 0 0 2px rgba(196, 151, 26, .25);
        }

        50% {
            box-shadow: 0 0 0 5px rgba(196, 151, 26, .0);
        }
    }

    .pay-left h2 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: clamp(28px, 3vw, 42px);
        line-height: 1.15;
        color: #F7F8FC;
        margin-bottom: 16px;
    }

    .pay-left h2 .h2-line2 {
        display: block;
        color: var(--accent);
        font-size: clamp(24px, 2.4vw, 34px);
        font-weight: 600;
        margin-top: 6px;
    }

    .pay-left .pay-desc {
        font-size: 16.5px;
        line-height: 1.85;
        color: rgba(247, 248, 252, .7);
        margin-bottom: 24px;
    }

    .pay-left .pay-desc strong {
        color: rgba(247, 248, 252, .9);
        font-weight: 600;
    }

    .pay-bullets {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 40px;
    }

    .pay-bullet {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        font-size: 15px;
        color: rgba(247, 248, 252, .8);
        line-height: 1.6;
    }

    .pay-bullet .bul-icon {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        border-radius: 6px;
        background: rgba(196, 151, 26, .18);
        border: 1px solid rgba(196, 151, 26, .3);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
    }

    .pay-bullet .bul-icon svg {
        display: block;
    }

    .pay-bullet strong {
        color: #F7F8FC;
        font-weight: 600;
    }

    .pay-left-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .pay-banks-inline {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 24px;
    }

    .pay-bank-tag {
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 999px;
        padding: 5px 14px;
        font-size: 11px;
        font-weight: 600;
        color: rgba(247, 248, 252, .55);
        letter-spacing: .02em;
    }

    .pay-bank-more {
        font-size: 11px;
        color: rgba(247, 248, 252, .3);
    }

    /* ── RIGHT: INFOGRAPHIC CARD ─────────────────── */
    .pay-right {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pay-card {
        background: rgba(255, 255, 255, .055);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 2px 4px rgba(0, 0, 0, .15),
            0 24px 64px rgba(0, 0, 0, .25),
            inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .pay-card-top {
        padding: 20px 24px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .pay-card-label {
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: rgba(247, 248, 252, .4);
    }

    .pay-total-bar {
        font-family: var(--font-mono);
        font-size: 22px;
        font-weight: 700;
        color: #F7F8FC;
        letter-spacing: -.02em;
    }

    .pay-total-bar span {
        color: var(--accent);
    }

    .pay-process-btn {
        background: rgba(255, 255, 255, 0.08);
        /* Sophisticated Ghost style */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #F7F8FC;
        padding: 9px 24px;
        border-radius: 12px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        white-space: nowrap;
    }

    .pay-process-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--accent);
        transform: translateY(-1px);
    }

    .pay-process-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background: rgba(255, 255, 255, 0.05);
    }

    .pay-table {
        background: transparent;
        border: none;
        border-radius: 0;
        overflow: hidden;
        margin: 0;
        max-width: unset;
    }

    .pay-table-head {
        display: grid;
        grid-template-columns: 1fr 110px 140px 100px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, .06);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: rgba(247, 248, 252, .35)
    }

    .pay-row {
        display: grid;
        grid-template-columns: 1fr 110px 140px 100px;
        padding: 13px 20px;
        border-top: 1px solid rgba(255, 255, 255, .05);
        align-items: center;
        transition: background .3s
    }

    .pay-row:hover {
        background: rgba(255, 255, 255, .04)
    }

    .pay-name {
        font-size: 13px;
        font-weight: 600;
        color: #F7F8FC
    }

    .pay-sub {
        font-size: 11px;
        color: rgba(247, 248, 252, .5)
    }

    .pay-amt {
        font-family: var(--font-mono);
        font-size: 13px;
        font-weight: 700;
        color: #F7F8FC
    }

    .pay-type {
        font-size: 11px;
        color: rgba(247, 248, 252, .6);
        background: rgba(255, 255, 255, .08);
        padding: 3px 9px;
        border-radius: 99px;
        display: inline-block
    }

    .pay-status {
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px
    }

    .pay-status.pending {
        color: rgba(247, 248, 252, .5)
    }

    .pay-status.paid {
        color: #4ADE80
    }



    .pay-total-bar {
        font-family: var(--font-mono);
        font-size: 28px;
        font-weight: 700;
        color: #F7F8FC;
        margin-bottom: 8px
    }

    .pay-success-banner {
        background: rgba(74, 222, 128, .1);
        border-top: 1px solid rgba(74, 222, 128, .2);
        padding: 13px 20px;
        font-size: 12px;
        color: #4ADE80;
        font-weight: 600;
        opacity: 0;
        transition: opacity .5s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pay-success-banner.show {
        opacity: 1
    }

    @media (max-width: 1024px) {
        .pay-split {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .pay-left .pay-desc {
            max-width: 100%;
        }
    }

    @media (max-width: 600px) {
        .pay-card-top {
            flex-wrap: wrap;
            gap: 12px;
        }
    }



    .int-sec {
        background: #f9fafc;
        padding: 80px 0;
        overflow: hidden
    }

    .int-inner {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: center
    }

    .int-visual {
        position: relative;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .int-hub {
        width: 80px;
        height: 80px;
        background: var(--green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 0 40px rgba(24, 61, 45, 0.2);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 2px solid rgba(255, 255, 255, 0.1)
    }

    .int-hub .j-mark {
        font-family: var(--font-display);
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        line-height: 1
    }

    .int-node {
        position: absolute;
        width: 100px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(24, 61, 45, 0.1);
        border-radius: 99px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
        z-index: 5;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        color: var(--text-primary);
        letter-spacing: 0.02em;
        backdrop-filter: blur(8px);
        transform: translate(-50%, -50%)
    }

    .int-node:hover {
        transform: translate(-50%, -50%) scale(1.1);
        border-color: var(--green);
        box-shadow: 0 15px 40px rgba(24, 61, 45, 0.15)
    }

    .int-node.active {
        border-color: var(--green);
        background: var(--tint)
    }

    /* Node positions - fine-tuned */
    .n1 {
        top: 12%;
        left: 22%
    }

    .n2 {
        top: 6%;
        left: 52%
    }

    .n3 {
        top: 18%;
        left: 82%
    }

    .n4 {
        top: 48%;
        left: 12%
    }

    .n5 {
        top: 48%;
        left: 92%
    }

    .n6 {
        top: 78%;
        left: 18%
    }

    .n7 {
        top: 88%;
        left: 48%
    }

    .n8 {
        top: 78%;
        left: 82%
    }

    .int-spokes-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 2
    }

    .int-spoke-line {
        stroke: rgba(24, 61, 45, 0.08);
        stroke-width: 1.5;
        stroke-dasharray: 4, 4;
        fill: none
    }

    .int-spoke-pulse {
        stroke: var(--accent);
        stroke-width: 2.5;
        stroke-linecap: round;
        fill: none;
        stroke-dasharray: 12, 1000;
        animation: spokeFlow 3s linear infinite
    }

    @keyframes spokeFlow {
        0% {
            stroke-dashoffset: 0
        }

        100% {
            stroke-dashoffset: -1000
        }
    }

    @media(max-width:768px) {
        .int-sec {
            padding: 60px 0
        }

        .int-inner {
            grid-template-columns: 1fr;
            text-align: center
        }

        .int-content {
            display: flex;
            flex-direction: column;
            align-items: center
        }

        .int-visual {
            height: 320px;
            margin-top: 20px;
            width: 100%;
            max-width: 360px;
            margin-left: auto;
            margin-right: auto
        }

        .int-hub {
            width: 56px;
            height: 56px
        }

        .int-hub .j-mark {
            font-size: 24px
        }

        .int-node {
            width: 80px;
            height: 32px;
            font-size: 9px
        }

        /* mobile relative center positioning */
        .n1 {
            top: 12%;
            left: 22%
        }

        .n2 {
            top: 4%;
            left: 50%
        }

        .n3 {
            top: 12%;
            left: 78%
        }

        .n4 {
            top: 50%;
            left: 15%
        }

        .n5 {
            top: 50%;
            left: 85%
        }

        .n6 {
            top: 88%;
            left: 22%
        }

        .n7 {
            top: 96%;
            left: 50%
        }

        .n8 {
            top: 88%;
            left: 78%
        }
    }




    .stats-strip {
        background: #fff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06)
    }

    .stats-strip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 70% 30%, rgba(196, 151, 26, 0.04), transparent);
        pointer-events: none
    }

    .stats-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px
    }

    .stat-item {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 20px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: all 0.3s;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02)
    }

    .stat-item:hover {
        transform: translateY(-3px);
        border-color: var(--accent);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05)
    }

    .stat-icon {
        width: 20px;
        height: 20px;
        color: var(--accent);
        margin-bottom: 8px
    }

    .stat-num {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 4px;
        letter-spacing: -0.03em
    }

    .stat-label {
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1.4
    }

    @media(max-width:1024px) {
        .stats-inner {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px
        }
    }

    @media(max-width:600px) {
        .stats-strip {
            padding: 32px 0
        }

        .stats-inner {
            grid-template-columns: 1fr
        }
    }





    .how-sec {
      background: var(--green);
      padding: 80px 0;
      position: relative;
      overflow: hidden
    }

    .how-sec::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 90%, rgba(196, 151, 26, 0.05), transparent);
      pointer-events: none
    }

    .how-sec .sec-h2 {
      color: #fff
    }

    .how-sec .sec-sub {
      color: rgba(255, 255, 255, 0.7)
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
      position: relative
    }

    .how-connector {
      position: absolute;
      top: 32px;
      left: calc(16.667% + 24px);
      right: calc(16.667% + 24px);
      height: 1px;
      z-index: 0
    }

    .how-connector svg {
      width: 100%;
      height: 1px;
      overflow: visible;
      opacity: 0.2
    }

    .how-card {
      background: #fff;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
    }

    .how-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15)
    }

    .how-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(24, 61, 45, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      color: var(--green)
    }

    .how-step {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 6px
    }

    .how-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      letter-spacing: -0.01em
    }

    .how-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6
    }










    .pricing-sec {
      background: #fff;
      padding: 80px 0
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 48px
    }

    .price-card {
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      background: #fff;
      transition: transform .3s, box-shadow .3s;
      position: relative
    }

    .price-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 48px rgba(0, 0, 0, .1)
    }

    .price-card.hero-plan {
      background: var(--green);
      border-color: transparent;
      color: #F7F8FC
    }

    .price-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--accent);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 999px;
      letter-spacing: .04em;
      text-transform: uppercase
    }

    .price-tier {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 12px
    }

    .price-card.hero-plan .price-tier {
      color: rgba(247, 248, 252, .6)
    }

    .price-amount {
      font-family: var(--font-mono);
      font-size: 36px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 4px
    }

    .price-card.hero-plan .price-amount {
      color: #F7F8FC
    }

    .price-period {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 8px
    }

    .price-card.hero-plan .price-period {
      color: rgba(247, 248, 252, .6)
    }

    .price-desc {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border)
    }

    .price-card.hero-plan .price-desc {
      color: rgba(247, 248, 252, .7);
      border-color: rgba(255, 255, 255, .15)
    }

    .price-features {
      list-style: none;
      margin-bottom: 28px
    }

    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      padding: 5px 0;
      color: var(--text-secondary)
    }

    .price-card.hero-plan .price-features li {
      color: rgba(247, 248, 252, .8)
    }

    .price-features li svg {
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--success)
    }

    .price-card.hero-plan .price-features li svg {
      color: #4ADE80
    }

    .price-footer {
      font-size: 12px;
      color: var(--text-secondary);
      text-align: center;
      margin-top: 16px
    }

    .price-footer a {
      color: var(--text-secondary);
      text-decoration: underline
    }
  




















    .security-sec {
      background: var(--green);
      padding: 80px 0
    }

    .security-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px
    }

    .sec-block {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 16px;
      padding: 32px;
      transition: background .3s
    }

    .sec-block:hover {
      background: rgba(255, 255, 255, .1)
    }

    .sec-block-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(196, 151, 26, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px
    }

    .sec-block h3 {
      font-size: 17px;
      font-weight: 600;
      color: #F7F8FC;
      margin-bottom: 8px
    }

    .sec-block p {
      font-size: 14px;
      color: rgba(247, 248, 252, .65);
      line-height: 1.65
    }
    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(196, 151, 26, 0.1);
      border: 1px solid rgba(196, 151, 26, 0.2);
      padding: 6px 14px;
      border-radius: 999px;
      color: #C4971A;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }

    .sec-tag svg {
      flex-shrink: 0;
    }
  
















  
    .lead-sec {
      background: #f9fafb;
      padding: 72px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.02)
    }

    .lead-h2 {
      font-family: var(--font-display);
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 700;
      color: var(--primary);
      text-align: center;
      line-height: 1.1;
      margin-bottom: 12px;
      letter-spacing: -0.03em
    }

    .lead-sub {
      font-size: 16px;
      color: var(--text-secondary);
      text-align: center;
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.6
    }

    .lead-card {
      background: #fff;
      border-radius: 16px;
      padding: 40px;
      max-width: 520px;
      margin: 0 auto;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.05)
    }

    .lead-card label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.04em
    }

    .lead-card input,
    .lead-card select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-primary);
      margin-bottom: 20px;
      transition: all .2s;
      outline: none;
      background: #fcfcfd
    }

    .lead-card input:focus,
    .lead-card select:focus {
      border-color: var(--accent);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(196, 151, 26, 0.06)
    }

    .lead-card select {
      color: var(--text-secondary)
    }

    .lead-submit {
      width: 100%;
      padding: 14px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all .2s;
      margin-top: 4px
    }

    .lead-submit:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(196, 151, 26, 0.2)
    }

    .lead-assurance {
      text-align: center;
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .lead-assurance span {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-secondary);
      font-weight: 500
    }

    .lead-assurance svg {
      flex-shrink: 0;
      color: var(--accent)
    }

    /* TOAST */
    .toast {
      position: fixed;
      top: 80px;
      right: 24px;
      background: var(--success);
      color: #fff;
      padding: 14px 22px;
      border-radius: 12px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
      transform: translateX(120%);
      transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .toast.show {
      transform: translateX(0)
    }

    /* DEMO MODAL */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(18, 38, 30, .6);
      backdrop-filter: blur(8px);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all
    }

    .modal-card {
      background: #fff;
      border-radius: 24px;
      width: 95%;
      max-width: 720px;
      padding: 48px 32px;
      position: relative;
      box-shadow: 0 12px 64px rgba(0, 0, 0, .25);
      transform: scale(.95) translateY(20px);
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
      overflow: hidden
    }

    .modal-overlay.open .modal-card {
      transform: scale(1) translateY(0)
    }

    .modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f1f5f2;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--text-secondary);
      transition: all .2s
    }

    .modal-close:hover {
      background: var(--border);
      color: var(--text-primary);
      transform: rotate(90deg)
    }

    .modal-dots {
      position: absolute;
      width: 60px;
      height: 30px;
      opacity: .2
    }

    .modal-dots-l {
      bottom: 40px;
      left: 40px
    }

    .modal-dots-r {
      bottom: 40px;
      right: 40px
    }

    .modal-h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 36px);
      font-weight: 700;
      text-align: center;
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 16px
    }

    .modal-h2 span {
      color: var(--accent)
    }

    .modal-sub {
      font-size: 16px;
      color: var(--text-secondary);
      text-align: center;
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.6
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px
    }

    .modal-form .btn-gold {
      padding: 14px 48px;
      font-size: 16px
    }
  




















  

















    /* FAQ SECTION */
    .faq-sec {
      background: #fff;
      padding: 80px 0;
    }

    .faq-list {
      max-width: 1200px;
      margin: 60px auto 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #F4F9F6; /* Light green tone */
      border: 1px solid rgba(15, 40, 32, 0.05);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      background: #EDF5F0;
    }

    .faq-item.active {
      background: #EDF5F0;
      border-color: rgba(15, 40, 32, 0.1);
    }

    .faq-header {
      padding: 24px 32px;
      display: flex;
      align-items: center; /* Vertical alignment */
      gap: 16px;
      cursor: pointer;
      user-select: none;
    }

    .faq-q {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-primary);
      flex: 1;
    }

    .faq-icon-wrap {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon-wrap {
      transform: rotate(180deg);
      background: var(--accent);
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    }

    .faq-item.active .faq-body {
      max-height: 1000px;
      transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    }

    .faq-content {
      padding: 0 32px 32px 76px; /* Offset to align with text */
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-secondary);
    }

    /* FINAL CTA SECTION */
    .final-cta-sec {
      background: #0B1D17; /* Sightly darker than green-dark for separation */
      padding: 72px 0;
      position: relative;
      overflow: hidden;
      color: #fff;
      border-top: 1px solid rgba(196, 151, 26, 0.15);
    }

    .cta-mesh {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 0% 0%, rgba(196, 151, 26, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(196, 151, 26, 0.08) 0%, transparent 50%);
      opacity: 0.8;
    }

    .cta-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 60px;
    }

    .cta-left {
      flex: 1;
      text-align: left;
    }

    .cta-right {
      flex: 0 0 auto;
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 24px;
    }

    .cta-buttons-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
    }


    .star-group {
      display: flex;
      gap: 2px;
      color: var(--accent);
    }

    .cta-h2 {
      font-size: 48px;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .cta-p {
      font-size: 18px;
      line-height: 1.5;
      color: rgba(255,255,255,0.6);
      max-width: 500px;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
    }

    .btn-signup-main {
      padding: 16px 36px;
      background: var(--accent);
      color: var(--primary);
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(196, 151, 26, 0.2);
    }

    .btn-signup-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(196, 151, 26, 0.3);
    }

    .btn-signup-main::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 20%;
      height: 200%;
      background: rgba(255,255,255,0.3);
      transform: rotate(30deg);
      animation: shimmerBtn 4s infinite;
    }

    @keyframes shimmerBtn {
      0% { left: -60%; }
      15% { left: 140%; }
      100% { left: 140%; }
    }

    .btn-book-demo {
      padding: 16px 36px;
      background: rgba(255,255,255,0.03);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .btn-book-demo:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.3);
      transform: translateY(-2px);
    }

    .cta-trust-items {
      display: flex;
      gap: 24px;
      opacity: 0.6;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
    }

    .trust-item svg {
      color: var(--accent);
    }

    .faq-sec .sec-intro {
      max-width: none;
      margin-bottom: 48px;
    }

    @media (max-width: 991px) {
      .cta-flex { flex-direction: column; text-align: center; gap: 40px; }
      .cta-left, .cta-right { text-align: center; align-items: center; }
      .cta-p { margin: 0 auto; }
      .cta-right { align-items: center; }
      .cta-buttons-wrap { align-items: center; }
      .cta-h2 { font-size: 36px; }
    }
  


















    @media(max-width:1024px) {

      .hero-inner,
      .pain-inner,
      .security-grid,
      .how-grid {
        grid-template-columns: 1fr
      }

      .showcase-block,
      .showcase-block.rev {
        grid-template-columns: 1fr;
        direction: ltr
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr)
      }

      .stat-item+.stat-item::before {
        display: none
      }

      .pay-table-head,
      .pay-row {
        grid-template-columns: 1fr 100px 100px 100px;
        font-size: 12px
      }

      .hub-wrap {
        height: 340px;
        max-width: 400px
      }
    }

    @media(max-width:768px) {
      :root {
        --pad-x: 16px
      }

      .sec-pad,
      .pain-sec,
      .showcase-sec,
      .pay-hero,
      .pricing-sec,
      .security-sec,
      .lead-sec {
        padding: 48px 0
      }

      .showcase-block {
        padding: 28px;
        margin-bottom: 24px
      }



      /* HERO — mobile stack */
      .hero2-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px var(--pad-x) 40px
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px var(--pad-x)
      }

      .hero-right {
        display: none
      }

      .h2-h1 {
        font-size: 36px;
        line-height: 1.1
      }

      .h2-body {
        font-size: 15px
      }

      /* Form: stacked on mobile */
      .h2-form {
        flex-direction: column;
        box-shadow: none;
        gap: 10px;
        max-width: 100%
      }

      .h2-form input {
        border-right: 1px solid #D4E8DC;
        border-radius: 8px;
        width: 100%
      }

      .h2-form button {
        border-radius: 8px;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 13px 22px
      }

      /* Trust items: stack vertically centered */
      .h2-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center
      }

      /* Dashboard card: stacked, centered, no floating notif */
      .h2-right {
        display: flex;
        padding: 0 0 40px
      }

      .dash-main-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        animation: none
      }

      .dash-notif {
        display: none
      }

      /* Waitlist badge & label centering */
      .h2-form-label {
        text-align: center
      }

      .waitlist-badge {
        margin: 24px auto 0;
        display: flex;
        max-width: max-content
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
      }

      .pricing-grid {
        grid-template-columns: 1fr
      }

      .pay-table-head,
      .pay-row {
        grid-template-columns: 1fr 80px 80px
      }

      .pay-row>div:nth-child(3) {
        display: none
      }
    }

    @media(max-width:480px) {
      :root {
        --pad-x: 12px
      }

      .sec-h2 {
        font-size: 28px
      }

      .hero-h1 {
        font-size: 38px
      }

      .h2-h1 {
        font-size: 32px
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr
      }
    }