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

    :root {
        --page-bg: #F7F8FC;
        --primary: #0B1437;
        /* Premium Deep Electric Navy */
        --accent: #2563EB;
        --accent-dark: #1D4ED8;
        --surface: #FFFFFF;
        --text-primary: #0A0F1E;
        --text-secondary: #4B5563;
        --border: #E2E6F0;
        --dark-bg: #0B1437;
        --success: #1E40AF;
        --tint: #F0F4FF;
        --dark: #1338BE;
        --dark-deep: #0B1437;

        --max-w: 1400px;
        --pad-x: 40px;
        --font-display: 'Ubuntu', sans-serif;
        --font-body: 'Ubuntu', sans-serif;
        --font-mono: 'Space Mono', monospace;
    }

    .text-blue {
        color: var(--accent);
        display: inline;
    }

    /* Visual mockups use Poppins */
    .dash-container,
    .dash-container *,
    .card-base,
    .card-base *,
    .po-card,
    .po-card *,
    .r-panel,
    .r-panel *,
    .vendor-card,
    .vendor-card *,
    .pay-card,
    .pay-card *,
    .report-card-wrap,
    .report-card-wrap * {
        font-family: 'Poppins', sans-serif !important;
    }

    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-accent {
        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;
        box-shadow: 0 2px 12px rgba(37, 99, 235, .2)
    }

    .btn-accent:hover {
        background: var(--accent-dark);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 32px rgba(37, 99, 235, .4)
    }

    .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(--dark);
        color: #fff;
        border-color: #1338BE
    }

    .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(--dark);
        color: #fff;
        margin-bottom: 20px
    }

    .tag-chip-accent {
        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(--dark);
        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(37, 99, 235, 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: #F8FAFF;
    }

    .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(--dark);
        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: #F8FAFF;
        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(15, 23, 42, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
        background-size: 64px 64px;
        pointer-events: none
    }

    .hero2-inner {
        display: grid;
        grid-template-columns: minmax(0, calc(50% - 30px)) minmax(0, calc(50% - 30px));
        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: var(--dark);
        color: #fff;
        padding: 6px 14px;
        border-radius: 6px;
        margin-bottom: 20px
    }

    .hero2 .h2-h1 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: clamp(36px, 3.2vw, 52px) !important;
        line-height: 1.1;
        color: #0F172A;
        margin-bottom: 20px;
        letter-spacing: -0.01em;
    }

    .hero2 .h2-body {
        font-family: var(--font-body);
        font-size: 17px;
        color: var(--text-secondary);
        max-width: 580px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .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 #CBD5E1;
        border-right: none;
        border-radius: 8px 0 0 8px;
        font-family: var(--font-body);
        font-size: 15px;
        outline: none;
        background: #fff;
        color: #0F172A;
        min-width: 0;
        transition: border-color .2s
    }

    .h2-form input:focus {
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08)
    }

    .h2-form input::placeholder {
        color: #B3BBCF
    }

    .h2-form button {
        background: var(--accent);
        color: #FFFFFF;
        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, transform .2s;
        box-shadow: 0 2px 10px rgba(37, 99, 235, .25)
    }

    .h2-form button:hover {
        background: var(--accent-dark);
        box-shadow: 0 6px 24px rgba(37, 99, 235, .45);
        transform: translateY(-1px)
    }

    .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: #2563EB;
        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 #CBD5E1;
        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: #0F172A
    }

    .dmc-live {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        color: #16A34A;
        font-weight: 600
    }

    .dmc-live-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #16A34A;
        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: #0F172A;
        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: #CBD5E1;
        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: #0F172A;
        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-blue {
        background: #EFF6FF;
        color: #2563EB
    }

    .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: #CBD5E1;
        border-radius: 99px;
        overflow: hidden
    }

    .dmc-fill {
        height: 100%;
        background: #2563EB;
        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 #CBD5E1;
        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: #0F172A;
        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: #16A34A
    }




    /* WAITLIST BADGE */
    .waitlist-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #EFF6FF;
        border: 1px solid #BFDBFE;
        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: 680px;
        height: 540px;
        background: var(--tint);
        border: 1px solid rgba(148, 163, 184, 0.4);
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        box-shadow:
            0 10px 20px rgba(15, 23, 42, 0.03),
            0 30px 60px rgba(15, 23, 42, 0.10),
            0 120px 240px rgba(15, 23, 42, 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: var(--dark);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        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: none;
        pointer-events: none;
    }

    .sidebar-logo {
        width: 26px;
        height: 26px;
        background: var(--accent);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-weight: 800;
        font-size: 14px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
        font-family: 'DM Sans', sans-serif;
    }

    .side-nav {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .side-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .side-icon:hover {
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.06);
    }

    .side-icon.active {
        background: rgba(255, 255, 255, 0.1);
        color: #60A5FA;
        box-shadow: none;
    }

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

    .dash-topbar .top-right {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .dash-topbar .top-pill {
        background: #F1F5F9;
        border: 1px solid #CBD5E1;
        border-radius: 5px;
        padding: 3px 7px;
        font-size: 10px;
        color: #64748B;
    }

    .dash-topbar .top-btn {
        width: 24px;
        height: 24px;
        background: #F1F5F9;
        border: 1px solid #CBD5E1;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #64748B;
    }

    .dash-topbar .notif-dot {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 6px;
        height: 6px;
        background: #2563EB;
        border: 1.5px solid #fff;
        border-radius: 50%;
    }

    .dash-topbar .top-av {
        width: 24px;
        height: 24px;
        background: var(--dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #60A5FA;
        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(148, 163, 184, 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: #64748B;
        margin-bottom: 3px;
    }

    .stat-val {
        font-size: 15px;
        font-weight: 700;
        color: #0F172A;
        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(148, 163, 184, 0.4);
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 4px rgba(15, 23, 42, 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(15, 23, 42, 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: #0F172A;
    }

    /* TRANSACTIONS */
    .tx-row {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 5px 0;
        border-bottom: 1px solid #F1F5F9;
        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: #0F172A;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tx-type {
        font-size: 8px;
        color: #64748B;
        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: #0F172A;
    }

    .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: #16A34A;
        border-radius: 50%;
        animation: dashPulse 2s infinite;
        flex-shrink: 0;
    }

    @keyframes dashPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
        }

        70% {
            box-shadow: 0 0 0 5px rgba(22, 163, 74, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(30, 64, 175, 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: #CBD5E1;
        margin: 2px 0;
        transition: background 0.4s;
    }

    .step-line.filled {
        background: #16A34A;
    }

    .step-circle.done {
        background: #16A34A;
        color: #fff;
    }

    .step-circle.active {
        background: #F0FDF4;
        border: 2px solid #16A34A;
        color: #16A34A;
    }

    .step-circle.waiting {
        background: #F1F5F9;
        border: 1px solid #CBD5E1;
        color: #aaa;
    }

    .step-right {
        flex: 1;
        padding-bottom: 0;
    }

    .step-name {
        font-size: 9px;
        font-weight: 600;
        color: #0F172A;
    }

    .step-role {
        font-size: 8px;
        color: #64748B;
    }

    /* WALLET BARS */
    .wallet-bar {
        height: 5px;
        background: #E2E8F0;
        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 #16A34A;
        background: #fff;
    }

    /* 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: #1E40AF;
        margin-bottom: 8px;
        display: block
    }

    @keyframes pulse-ping {
        0% {
            box-shadow: 0 0 0 0 rgba(22, 163, 74, .5)
        }

        70% {
            box-shadow: 0 0 0 6px rgba(22, 163, 74, 0)
        }

        100% {
            box-shadow: 0 0 0 0 rgba(22, 163, 74, 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: var(--border);
        opacity: 1;
    }

    .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(37, 99, 235, .08), 0 4px 16px rgba(0, 0, 0, .06);
        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='%232563EB' 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(--dark);
        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(37, 99, 235, 0.1);
        margin-top: 14px;
    }

    .block-text .btn-showcase:hover {
        background: var(--dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 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: #EFF6FF;
        box-shadow: 0 0 15px rgba(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 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(--dark)
    }

    .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: #EFF6FF;
        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(--dark)
    }

    .typewriter {
        font-size: 12px;
        color: var(--text-primary);
        border-right: 2px solid var(--dark);
        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(--dark)
    }

    .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(37, 99, 235, .4)
        }

        50% {
            box-shadow: 0 0 0 6px rgba(37, 99, 235, 0)
        }
    }






    /* ── PAY HERO SPLIT LAYOUT ───────────────────────────────── */
    .pay-hero {
        background: var(--dark);
        padding: 64px 0;
        overflow: hidden;
        position: relative;
    }

    /* Subtle noise/grain overlay */
    .pay-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: none;
        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: rgba(255, 255, 255, .85);
        margin-bottom: 16px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        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: #60A5FA;
        box-shadow: 0 0 0 2px rgba(96, 165, 250, .3);
        animation: eyebrowPulse 2s infinite;
        flex-shrink: 0;
    }

    @keyframes eyebrowPulse {

        0%,
        100% {
            box-shadow: 0 0 0 2px rgba(96, 165, 250, .3);
        }

        50% {
            box-shadow: 0 0 0 5px rgba(96, 165, 250, .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: #93C5FD;
        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(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        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, .1);
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 999px;
        padding: 5px 14px;
        font-size: 11px;
        font-weight: 600;
        color: rgba(247, 248, 252, .7);
        letter-spacing: .02em;
    }

    .pay-bank-more {
        font-size: 11px;
        color: rgba(247, 248, 252, .45);
    }

    /* ── RIGHT: INFOGRAPHIC CARD ─────────────────── */
    .pay-right {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pay-card {
        background: #FFFFFF;
        border: 1px solid var(--border);
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 2px 4px rgba(15, 23, 42, .04),
            0 24px 64px rgba(15, 23, 42, .12);
    }

    .pay-card-top {
        padding: 20px 24px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        background: #F8FAFF;
    }

    .pay-card-label {
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

    .pay-total-bar {
        font-family: var(--font-mono);
        font-size: 22px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -.02em;
    }

    .pay-total-bar span {
        color: var(--text-secondary);
        font-weight: 500;
    }

    .pay-process-btn {
        background: var(--accent);
        border: 1px solid var(--accent);
        color: #FFFFFF;
        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;
        box-shadow: 0 2px 8px rgba(37, 99, 235, .2);
    }

    .pay-process-btn:hover {
        background: var(--accent-dark);
        border-color: var(--accent-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(37, 99, 235, .32);
    }

    .pay-process-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background: #E2E6F0;
        border-color: #E2E6F0;
        color: var(--text-secondary);
        box-shadow: none;
    }

    .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: #F0F4FF;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

    .pay-row {
        display: grid;
        grid-template-columns: 1fr 110px 140px 100px;
        padding: 13px 20px;
        border-top: 1px solid var(--border);
        align-items: center;
        transition: background .3s;
        background: #FFFFFF;
    }

    .pay-row:hover {
        background: #F7F8FC;
    }

    .pay-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
    }

    .pay-sub {
        font-size: 11px;
        color: var(--text-secondary);
    }

    .pay-amt {
        font-family: var(--font-mono);
        font-size: 13px;
        font-weight: 700;
        color: var(--primary);
    }

    .pay-type {
        font-size: 11px;
        color: var(--text-secondary);
        background: #F1F5F9;
        padding: 4px 10px;
        border-radius: 99px;
        display: inline-block;
        font-weight: 600;
        border: 1px solid var(--border);
    }

    .pay-type-invoice {
        background: #EFF6FF;
        color: #1D4ED8;
        border-color: #BFDBFE;
    }

    .pay-type-reimb {
        background: #F5F3FF;
        color: #6D28D9;
        border-color: #DDD6FE;
    }

    .pay-type-po {
        background: #ECFDF5;
        color: #047857;
        border-color: #A7F3D0;
    }

    .pay-type-claim {
        background: #FFFBEB;
        color: #B45309;
        border-color: #FDE68A;
    }

    .pay-status {
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .pay-status.pending {
        color: var(--text-secondary);
    }

    .pay-status.paid {
        color: #047857;
    }



    .pay-success-banner {
        background: #ECFDF5;
        border-top: 1px solid #A7F3D0;
        padding: 13px 20px;
        font-size: 12px;
        color: #047857;
        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
    }

    /* Clean integration grid (replaces old spokes layout) */
    .int-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .int-card {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 18px;
        background: #FFFFFF;
        border: 1px solid #E5E5E5;
        border-radius: 12px;
        transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .int-card:hover {
        border-color: rgba(0, 48, 219, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 48, 219, 0.08);
    }

    .int-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(0, 48, 219, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .int-card-icon i {
        color: #0030DB;
        font-size: 16px;
    }

    .int-card-body {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
    }

    .int-card-body strong {
        font-size: 0.95rem;
        font-weight: 700;
        color: #0F172A;
        letter-spacing: -0.005em;
    }

    .int-card-body span {
        font-size: 0.82rem;
        line-height: 1.45;
        color: #64748B;
    }

    @media (max-width: 768px) {
        .int-grid {
            grid-template-columns: 1fr;
        }
    }

    .int-hub {
        width: 80px;
        height: 80px;
        background: var(--dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 0 40px rgba(30, 64, 175, 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(30, 64, 175, 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(--dark);
        box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15)
    }

    .int-node.active {
        border-color: var(--dark);
        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(15, 23, 42, 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: none;
        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 28px rgba(37, 99, 235, 0.12)
    }

    .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(--dark);
      padding: 80px 0;
      position: relative;
      overflow: hidden
    }

    .how-sec::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: none;
      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.12), 0 0 0 1px rgba(37, 99, 235, 0.1)
    }

    .how-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      color: var(--dark)
    }

    .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(37, 99, 235, .1), 0 4px 16px rgba(0, 0, 0, .06)
    }

    .price-card.hero-plan {
      background: var(--dark);
      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-amount-inr {
      font-family: var(--font-mono);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-secondary);
      line-height: 1;
      margin-top: 6px;
      margin-bottom: 6px;
    }

    .price-card.hero-plan .price-amount-inr {
      color: rgba(247, 248, 252, 0.7);
    }

    .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(--dark);
      padding: 80px 0;
      position: relative;
      z-index: 1;
      overflow: hidden
    }

    .security-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px
    }

    .sec-block {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 16px;
      padding: 32px;
      transition: background .3s, box-shadow .3s, transform .3s;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px)
    }

    .sec-block:hover {
      background: rgba(255, 255, 255, .12);
      box-shadow: 0 8px 32px rgba(37, 99, 235, .15);
      transform: translateY(-2px)
    }

    .sec-block-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .1);
      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
    }
    .security-sec .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 6px 14px;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.8);
      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: 96px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.02)
    }

    .lead-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 80px;
      align-items: center;
    }

    .lead-content {
      max-width: 520px;
    }

    .lead-eyebrow {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      background: #EFF6FF;
      border: 1px solid #DBEAFE;
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 20px;
    }

    .lead-h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 2.6vw, 40px);
      font-weight: 700;
      color: var(--primary);
      text-align: left;
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: -0.02em
    }

    .lead-sub {
      font-size: 16px;
      color: var(--text-secondary);
      text-align: left;
      max-width: none;
      margin: 0 0 28px;
      line-height: 1.65
    }

    .lead-card {
      background: #fff;
      border-radius: 16px;
      padding: 36px;
      max-width: 520px;
      margin: 0;
      box-shadow: 0 2px 4px rgba(15, 23, 42, .04), 0 18px 48px rgba(15, 23, 42, .08);
      border: 1px solid var(--border);
      justify-self: end;
      width: 100%;
    }

    .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(37, 99, 235, 0.1)
    }

    .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(-2px);
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35)
    }

    .lead-assurance {
      text-align: left;
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .lead-assurance span {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-primary);
      font-weight: 500
    }

    .lead-assurance svg {
      flex-shrink: 0;
      color: var(--accent);
      background: #EFF6FF;
      border-radius: 999px;
      padding: 3px;
      box-sizing: content-box;
    }

    @media (max-width: 900px) {
      .lead-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .lead-content { max-width: none; }
      .lead-card { justify-self: stretch; max-width: none; }
    }

    /* 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(15, 23, 42, .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: #F0F4FF;
      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-accent {
      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: #F0F4FF;
      border: 1px solid rgba(15, 23, 42, 0.05);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      background: #E8EFFE;
    }

    .faq-item.active {
      background: #E8EFFE;
      border-color: rgba(15, 23, 42, 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(--dark-deep);
      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: var(--dark);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
      color: #fff;
      border-top: 2px solid rgba(37, 99, 235, 0.25);
    }

    .cta-mesh {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: none;
      opacity: 0.9;
    }

    .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: #FFFFFF;
      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(37, 99, 235, 0.2);
    }

    .btn-signup-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(37, 99, 235, 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 #CBD5E1;
        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
      }
    }
/* ============================================
   Jesto Signup Page - Integrated Styles
   ============================================ */
.signup-main {
    --primary: var(--primary); /* Midnight Navy from Expense local style.css */
    --primary-hover: var(--dark-deep);
    --primary-light: rgba(37, 99, 235, 0.06);
    --secondary: #0F172A;
    --text-main: #1D1D1F;
    --text-muted: #6E6E73;
    --text-light: #94A3B8;
    --border: #E2E6F0;
    --bg-white: #FFFFFF;
    --bg-alt: #F7F8FC;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --header-height: 90px;
    --success: #1A6B4A;
    --error: #EF4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.signup-main .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.signup-main {
    min-height: calc(100vh - var(--header-height));
    background: var(--bg-white);
    overflow: hidden;
}

.signup-container {
    display: flex;
    min-height: 100%;
    background: #FFFFFF;
}

.visual-section {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: visible;
    padding: 4rem;
    color: var(--text-main);
}

.visual-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: blobMove 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.3);
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.2);
    bottom: -100px;
    right: -80px;
}

@keyframes blobMove {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(30px, 20px) scale(1.05); }
}

.visual-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
}

.visual-content-inner {
    text-align: left;
}

.visual-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    letter-spacing: -0.03em;
}

.visual-title span {
    color: var(--primary);
}

.visual-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
}

.hero-trust {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 2;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--text-light);
}

.form-section {
    flex: 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    overflow-y: auto;
}

.form-wrapper {
    width: 100%;
    max-width: 460px;
}

.premium-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.premium-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.steps-indicator {
    display: flex;
    background: var(--bg-alt);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 1.75rem;
    gap: 4px;
}

.step-item {
    flex: 1;
    padding: 10px 16px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.step-item.active {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.step-item.completed {
    color: var(--success);
}

.step-number {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.glass-panel {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-header .material-symbols-outlined {
    font-size: 18px;
}

.form-group-grid {
    display: grid;
    gap: 1.25rem;
}

.premium-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.premium-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
}

.premium-input::placeholder {
    color: #C7C7CC;
}

.premium-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.premium-input.invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.error-text {
    color: var(--error);
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
}

.submit-btn {
    width: 100%;
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn .material-symbols-outlined {
    font-size: 20px;
}

.secondary-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-main);
    margin-top: 0.75rem;
}

.secondary-btn:hover,
.submit-btn.secondary-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: none;
}

.message-box {
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.message-error {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    color: #991B1B;
}

.message-success {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    color: #166534;
}

.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal .glass-panel {
    max-width: 460px;
    width: 90%;
    text-align: center;
    padding: 2.5rem;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.modal-text {
    margin: 1rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-text strong {
    color: var(--primary);
    font-weight: 700;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-cancel {
    margin-top: 1.25rem;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
}

.modal-cancel:hover {
    color: var(--primary);
}

.suggestions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.suggestion-chip {
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.suggestion-chip:hover,
.suggestion-chip.selected {
    border-color: var(--primary);
    background: var(--dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.status-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.hidden {
    display: none !important;
}

.mt-1 { margin-top: 0.25rem; }
.mt-6 { margin-top: 1.5rem; }

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .signup-container {
        flex-direction: column;
        height: auto;
    }

    .signup-main {
        height: auto;
        overflow: auto;
    }

    .visual-section {
        min-height: 350px;
        padding: 3rem 2rem;
    }

    .form-section {
        padding: 2.5rem 1.5rem;
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 640px) {
    .visual-section {
        min-height: 280px;
        padding: 2.5rem 1.5rem;
    }

    .visual-title {
        font-size: 2rem;
    }

    .form-section {
        padding: 2rem 1.25rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .hero-trust {
        display: none;
    }
}

/* ============================================
   FAQ Section (Project Management style)
   ============================================ */
.pm-faq {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #E2E8F0;
}

.pm-faq .wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pm-faq-grid {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: 65px;
    align-items: start;
}

.pm-faq-info {
    position: sticky;
    top: 120px;
}

.pm-faq-heading {
    font-size: 60px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 24px;
    letter-spacing: -2.5px;
    line-height: 1.05;
    font-family: 'Ubuntu', sans-serif;
}

.pm-faq-subtext {
    font-size: 18px;
    color: #64748B;
    line-height: 1.65;
    margin: 0 0 40px;
    font-family: 'Ubuntu', sans-serif;
}

.pm-faq-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pm-faq-cta .pm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #0030DB;
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.pm-faq-cta .pm-btn-primary:hover {
    background: #0025A8;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 48, 219, 0.22);
}

.pm-faq-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pm-faq .faq-item {
    background: #F8F9FA;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pm-faq .faq-item:hover {
    background: #fff;
    border-color: rgba(0, 48, 219, 0.12);
    box-shadow: 0 10px 32px rgba(0, 48, 219, 0.05);
    transform: translateY(-2px);
}

.pm-faq .faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    user-select: none;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.pm-faq .faq-question i {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #0030DB;
    font-size: 13px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.pm-faq .faq-answer {
    display: none;
}

.pm-faq .faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #64748B;
}

.pm-faq .faq-item.active {
    background: #fff;
    border-color: rgba(0, 48, 219, 0.2);
    box-shadow: 0 20px 48px rgba(0, 48, 219, 0.08);
}

.pm-faq .faq-item.active .faq-question {
    color: #0030DB;
}

.pm-faq .faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: #0030DB;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 48, 219, 0.25);
}

.pm-faq .faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 1024px) {
    .pm-faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .pm-faq-info {
        position: static;
    }
    .pm-faq-heading {
        font-size: 44px;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 640px) {
    .pm-faq {
        padding: 80px 0;
    }
    .pm-faq .wrap {
        padding: 0 20px;
    }
    .pm-faq-heading {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .pm-faq-subtext {
        font-size: 16px;
    }
    .pm-faq .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
    .pm-faq .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}
