/* =========================================================
   VERRALINQ SHARED CSS
   Global foundations + shared header + shared footer
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --brand-blue: #0147D1;
    --brand-blue-hover: #003FB9;
    --brand-blue-deep: #00349A;
    --brand-blue-soft: #EEF4FF;
    --emerald: #089B53;
    --ink: #0F172A;
    --nav-ink: #111827;
    --muted: #6B7280;
    --white: #FFFFFF;
    --page-bg: #F4F8FF;
    --border: #E5E7EB;
    --header-height: 76px;
    --container-width: 1280px;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   GLOBAL RESET
========================================================= */

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

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100vh;
    background: var(--page-bg);
    color: var(--ink);
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    font-synthesis: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: none;
}

svg {
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.025), 0 10px 28px rgba(15, 23, 42, 0.025);
    animation: headerDrop 720ms var(--ease-premium) both;
}

.site-header__inner {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}


/* =========================================================
   BRANDING
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    animation: brandReveal 760ms var(--ease-premium) 80ms both;
}

.brand__logo {
    display: block;
    width: 190px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    animation: navReveal 760ms var(--ease-premium) 140ms both;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

    .nav-list li {
        display: flex;
        align-items: center;
        opacity: 0;
        transform: translateY(-4px);
        animation: navItemIn 620ms var(--ease-premium) both;
    }

        .nav-list li:nth-child(1) {
            animation-delay: 170ms;
        }

        .nav-list li:nth-child(2) {
            animation-delay: 210ms;
        }

        .nav-list li:nth-child(3) {
            animation-delay: 250ms;
        }

        .nav-list li:nth-child(4) {
            animation-delay: 290ms;
        }

        .nav-list li:nth-child(5) {
            animation-delay: 330ms;
        }

        .nav-list li:nth-child(6) {
            animation-delay: 370ms;
        }

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    color: #101827;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.005em;
    white-space: nowrap;
    transition: color 220ms ease, opacity 220ms ease;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 2px;
        right: 2px;
        bottom: -10px;
        height: 2px;
        border-radius: 999px;
        background: var(--brand-blue);
        transform: scaleX(0);
        transform-origin: center;
        opacity: 0;
        transition: transform 300ms var(--ease-premium), opacity 220ms ease;
    }

    .nav-link:hover {
        color: var(--brand-blue);
    }

        .nav-link:hover::after {
            transform: scaleX(1);
            opacity: 1;
        }

.nav-link--active {
    color: var(--brand-blue);
    font-weight: 600;
}

    .nav-link--active::after {
        transform: scaleX(1);
        opacity: 1;
    }

.nav-link__chevron {
    width: 16px;
    height: 16px;
    color: #4B5563;
    flex-shrink: 0;
    transform: translateY(1px);
    transition: color 220ms ease, transform 280ms var(--ease-premium);
}

.nav-link:hover .nav-link__chevron,
.nav-link--active .nav-link__chevron {
    color: var(--brand-blue);
}

.nav-link:hover .nav-link__chevron {
    transform: translateY(2px);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 34px;
    flex-shrink: 0;
    animation: actionsReveal 760ms var(--ease-premium) 240ms both;
}

.login-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    color: #101827;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.005em;
    white-space: nowrap;
    transition: color 220ms ease;
}

    .login-link::after {
        content: "";
        position: absolute;
        left: 2px;
        right: 2px;
        bottom: -10px;
        height: 2px;
        border-radius: 999px;
        background: var(--brand-blue);
        transform: scaleX(0);
        transform-origin: center;
        opacity: 0;
        transition: transform 300ms var(--ease-premium), opacity 220ms ease;
    }

    .login-link:hover {
        color: var(--brand-blue);
    }

        .login-link:hover::after {
            transform: scaleX(1);
            opacity: 1;
        }

.demo-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 42px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    background: linear-gradient( 180deg, #0B57E8 0%, var(--brand-blue) 56%, var(--brand-blue-deep) 100% );
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.005em;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(1, 71, 209, 0.23), 0 2px 4px rgba(1, 71, 209, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    transition: transform 240ms var(--ease-premium), box-shadow 240ms var(--ease-premium), background 240ms ease;
}

    .demo-button::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: -80%;
        width: 58%;
        height: 100%;
        background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100% );
        transform: skewX(-20deg);
        transition: left 720ms var(--ease-premium);
    }

    .demo-button::after {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: 7px;
        background: linear-gradient( 180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.08) 100% );
        pointer-events: none;
    }

    .demo-button:hover {
        transform: translateY(-1px);
        background: linear-gradient( 180deg, #1763F1 0%, var(--brand-blue-hover) 58%, #002F8A 100% );
        box-shadow: 0 18px 38px rgba(1, 71, 209, 0.30), 0 4px 10px rgba(1, 71, 209, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.30), inset 0 -1px 0 rgba(0, 0, 0, 0.14);
    }

        .demo-button:hover::before {
            left: 125%;
        }

    .demo-button:active {
        transform: translateY(0);
    }


/* =========================================================
   SHARED FOOTER
========================================================= */

/* =========================================================
   VERRALINQ FOOTER
   Shared premium footer styling
========================================================= */

.vlq-footer {
    width: 100%;
    background: #020617;
    color: #FFFFFF;
    font-family: inherit;
}

.vlq-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 32px;
}


/* =========================================================
   MAIN FOOTER GRID
========================================================= */

.vlq-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}


/* =========================================================
   BRAND COLUMN
========================================================= */

.vlq-footer__brand {
    min-width: 0;
}

.vlq-footer__logo {
    display: inline-flex;
    align-items: center;
    width: auto;
    text-decoration: none;
}

.vlq-footer__logo-image {
    display: block;
    width: 168px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) !important;
    opacity: 1 !important;
    transition: opacity 220ms ease, transform 220ms ease;
}

.vlq-footer__logo:hover .vlq-footer__logo-image {
    opacity: 1;
    transform: translateY(-1px);
}

.vlq-footer__tagline {
    max-width: 290px;
    margin: 24px 0 0;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.004em;
}

.vlq-footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.vlq-footer__social-link {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .vlq-footer__social-link svg {
        width: 20px;
        height: 20px;
        display: block;
    }

    .vlq-footer__social-link:hover {
        color: #FFFFFF;
        transform: translateY(-1px);
    }


/* =========================================================
   NAVIGATION COLUMNS
========================================================= */

.vlq-footer__column h4,
.vlq-footer__newsletter h4 {
    margin: 0 0 24px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.vlq-footer__column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vlq-footer__column a {
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .vlq-footer__column a:hover {
        color: #FFFFFF;
    }


/* =========================================================
   NEWSLETTER
========================================================= */

.vlq-footer__newsletter p {
    margin: 0 0 20px;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.004em;
}

.vlq-footer__newsletter-form {
    width: 100%;
    display: flex;
    align-items: stretch;
}

    .vlq-footer__newsletter-form input {
        flex-grow: 1;
        min-width: 0;
        border: none;
        outline: none;
        padding: 12px 16px;
        border-radius: 4px 0 0 4px;
        background: #FFFFFF;
        color: #111827;
        font-family: inherit;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
    }

        .vlq-footer__newsletter-form input::placeholder {
            color: #9CA3AF;
        }

    .vlq-footer__newsletter-form button {
        border: none;
        padding: 0 20px;
        border-radius: 0 4px 4px 0;
        background: #0B5BFF;
        color: #FFFFFF;
        font-family: inherit;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

        .vlq-footer__newsletter-form button:hover {
            background: #004BDB;
        }


/* =========================================================
   SUB-FOOTER
========================================================= */

.vlq-footer__bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

    .vlq-footer__bottom p {
        margin: 0;
        color: #9CA3AF;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.5;
    }

.vlq-footer__legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .vlq-footer__legal a {
        color: #9CA3AF;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.5;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .vlq-footer__legal a:hover {
            color: #FFFFFF;
        }

    .vlq-footer__legal span {
        color: rgba(255, 255, 255, 0.20);
        font-size: 13px;
        font-weight: 400;
        line-height: 1;
    }


/* =========================================================
   ACCESSIBILITY HELPER
========================================================= */

.vlq-footer__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .vlq-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 42px 32px;
    }

    .vlq-footer__brand {
        grid-column: 1 / -1;
    }

    .vlq-footer__newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .vlq-footer__inner {
        padding: 64px 20px 28px;
    }

.vlq-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
}

.vlq-footer__brand,
.vlq-footer__newsletter {
    grid-column: 1 / -1;
}

    .vlq-footer__tagline {
        max-width: 100%;
    }

    .vlq-footer__newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

        .vlq-footer__newsletter-form input {
            border-radius: 6px;
        }

        .vlq-footer__newsletter-form button {
            min-height: 44px;
            border-radius: 6px;
        }

    .vlq-footer__bottom {
        margin-top: 48px;
        padding-top: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .vlq-footer__legal {
        flex-wrap: wrap;
        gap: 10px 12px;
    }
}


/* =========================================================
   HEADER NAV COLOR ENFORCEMENT
   Keeps shared white header navigation readable site-wide
========================================================= */

.site-header .nav-link,
.site-header .login-link {
    color: #101827 !important;
}

.site-header .nav-link:hover,
.site-header .nav-link--active,
.site-header .login-link:hover {
    color: #0147D1 !important;
}

.site-header .nav-link__chevron {
    color: #4B5563 !important;
}

.site-header .nav-link:hover .nav-link__chevron,
.site-header .nav-link--active .nav-link__chevron {
    color: #0147D1 !important;
}


/* =========================================================
   SHARED HEADER REVEAL ANIMATIONS
   Restores nav visibility after shared CSS extraction
========================================================= */

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

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

@keyframes brandReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

@keyframes navItemIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

@keyframes actionsReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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


/* =========================================================
   REMOVE MOBILE WEBKIT TAP HIGHLIGHT
   Keeps text selectable, removes blue click flash/box
========================================================= */

html,
body,
a,
button,
input,
textarea,
select,
label,
svg,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   MOBILE TAP / TOUCH FOCUS BOX REMOVAL
   Removes blue boxes on mobile taps while keeping text selectable
========================================================= */

@media (hover: none) and (pointer: coarse) {

    *,
    *::before,
    *::after {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
        -webkit-touch-callout: default;
    }

    a,
    button,
    input,
    textarea,
    select,
    label,
    summary,
    svg,
    img,
    [role="button"] {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    }

    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus,
    label:focus,
    summary:focus,
    svg:focus,
    img:focus,
    [role="button"]:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    :focus:not(:focus-visible) {
        outline: none !important;
        box-shadow: none !important;
    }
}
/* =========================================================
   MOBILE SIDE PANEL — COMPACT PREMIUM REDESIGN
   Cleaner, tighter, scroll-safe, less bulky
========================================================= */

@media (max-width: 1100px) {

    /* -----------------------------------------------------
       Panel shell
    ------------------------------------------------------ */

    .vlq-mobile-panel {
        width: min(390px, calc(100vw - 20px)) !important;
        height: calc(100dvh - 20px) !important;
        max-height: calc(100dvh - 20px) !important;
        top: 10px !important;
        right: 10px !important;
        border-radius: 28px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }


    /* -----------------------------------------------------
       Top brand row — tighter and cleaner
    ------------------------------------------------------ */

    .vlq-mobile-panel__top {
        min-height: 84px !important;
        padding: 16px 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        flex: 0 0 auto !important;
    }

    .vlq-mobile-panel__brand img {
        width: 188px !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .vlq-mobile-panel__close {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        border-radius: 15px !important;
    }

    .vlq-mobile-panel__close svg {
        width: 22px !important;
        height: 22px !important;
    }


    /* -----------------------------------------------------
       Scrollable panel content
    ------------------------------------------------------ */

    .vlq-mobile-panel__content {
        min-height: 0 !important;
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 20px 18px 18px !important;
        display: flex !important;
        flex-direction: column !important;
    }


    /* -----------------------------------------------------
       Eyebrow
    ------------------------------------------------------ */

    .vlq-mobile-panel__eyebrow {
        margin: 0 0 14px !important;
        font-size: 11.5px !important;
        font-weight: 800 !important;
        letter-spacing: 0.14em !important;
    }


    /* -----------------------------------------------------
       Navigation menu — significantly more compact
    ------------------------------------------------------ */

    .vlq-mobile-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 9px !important;
    }

    .vlq-mobile-menu__link {
        min-height: 56px !important;
        padding: 0 16px !important;
        border-radius: 17px !important;
        font-size: 15px !important;
        font-weight: 720 !important;
        letter-spacing: -0.018em !important;
    }

    .vlq-mobile-menu__link svg {
        width: 18px !important;
        height: 18px !important;
    }


    /* -----------------------------------------------------
       Action buttons — remove huge dead gap
    ------------------------------------------------------ */

    .vlq-mobile-panel__actions {
        margin-top: 16px !important;
        padding-top: 16px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .vlq-mobile-panel__login,
    .vlq-mobile-panel__demo {
        min-height: 54px !important;
        border-radius: 17px !important;
        font-size: 15px !important;
        font-weight: 760 !important;
    }


    /* -----------------------------------------------------
       Bottom slogan — compact, not wasteful
    ------------------------------------------------------ */

    .vlq-mobile-panel__bottom {
        min-height: 42px !important;
        padding: 0 18px !important;
        flex: 0 0 auto !important;
        gap: 9px !important;
    }

    .vlq-mobile-panel__bottom p {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .vlq-mobile-panel__bottom span {
        width: 7px !important;
        height: 7px !important;
    }
}


/* =========================================================
   SMALL PHONE TUNING
========================================================= */

@media (max-width: 620px) {

    .vlq-mobile-panel {
        width: calc(100vw - 16px) !important;
        height: calc(100dvh - 16px) !important;
        max-height: calc(100dvh - 16px) !important;
        top: 8px !important;
        right: 8px !important;
        border-radius: 24px !important;
    }

    .vlq-mobile-panel__top {
        min-height: 78px !important;
        padding: 14px 16px !important;
    }

    .vlq-mobile-panel__brand img {
        width: 178px !important;
    }

    .vlq-mobile-panel__close {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
    }

    .vlq-mobile-panel__content {
        padding: 18px 16px 16px !important;
    }

    .vlq-mobile-panel__eyebrow {
        margin-bottom: 12px !important;
    }

    .vlq-mobile-menu {
        gap: 8px !important;
    }

    .vlq-mobile-menu__link {
        min-height: 52px !important;
        padding: 0 15px !important;
        border-radius: 16px !important;
        font-size: 14.5px !important;
    }

    .vlq-mobile-panel__actions {
        margin-top: 14px !important;
        padding-top: 14px !important;
        gap: 9px !important;
    }

    .vlq-mobile-panel__login,
    .vlq-mobile-panel__demo {
        min-height: 52px !important;
        border-radius: 16px !important;
        font-size: 14.5px !important;
    }

    .vlq-mobile-panel__bottom {
        min-height: 38px !important;
        padding: 0 16px !important;
    }
}
/* =========================================================
   VERRALINQ MOBILE + TABLET NAVIGATION SYSTEM
   Clean compact side-panel rebuild
========================================================= */

.vlq-mobile-toggle,
.vlq-mobile-overlay,
.vlq-mobile-panel {
    display: none;
}

@media (max-width: 1100px) {

    .header-nav,
    .header-actions {
        display: none;
    }

    .site-header {
        height: 74px;
    }

    .brand__logo {
        width: 176px;
        max-height: 48px;
    }

    /* Hamburger */
    .vlq-mobile-toggle {
        width: 48px;
        height: 48px;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        flex-shrink: 0;
        border-radius: 14px;
        border: 1px solid rgba(1, 71, 209, 0.15);
        background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
        color: #071633;
        cursor: pointer;
        box-shadow:
            0 1px 2px rgba(15, 23, 42, 0.04),
            0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .vlq-mobile-toggle span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #071633;
        display: block;
        transition: transform 320ms ease, opacity 220ms ease;
    }

    body.vlq-menu-open .vlq-mobile-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.vlq-menu-open .vlq-mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.vlq-menu-open .vlq-mobile-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Overlay */
    .vlq-mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 1400;
        display: block;
        opacity: 0;
        visibility: hidden;
        background: rgba(2, 6, 23, 0.58);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: opacity 320ms ease, visibility 320ms ease;
    }

    body.vlq-menu-open .vlq-mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* Panel */
    .vlq-mobile-panel {
        width: min(390px, calc(100vw - 18px));
        max-height: calc(100dvh - 18px);
        position: fixed;
        top: 9px;
        right: 9px;
        z-index: 1500;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateX(calc(100% + 24px));
        border-radius: 26px;
        border: 1px solid rgba(203, 213, 225, 0.78);
        background:
            radial-gradient(circle at 84% 12%, rgba(1, 71, 209, 0.08), transparent 34%),
            linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
        box-shadow:
            0 36px 90px rgba(2, 6, 23, 0.32),
            0 14px 32px rgba(15, 23, 42, 0.16);
        transition:
            transform 460ms var(--ease-premium),
            opacity 300ms ease,
            visibility 300ms ease;
    }

    body.vlq-menu-open .vlq-mobile-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Panel top */
    .vlq-mobile-panel__top {
        min-height: 76px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border-bottom: 1px solid rgba(226, 232, 240, 0.95);
        flex: 0 0 auto;
    }

    .vlq-mobile-panel__brand img {
        width: 174px;
        height: auto;
        display: block;
    }

    .vlq-mobile-panel__close {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        border: 1px solid rgba(203, 213, 225, 0.9);
        background: #FFFFFF;
        color: #071633;
        cursor: pointer;
    }

    .vlq-mobile-panel__close svg {
        width: 20px;
        height: 20px;
    }

    /* Scrollable content */
    .vlq-mobile-panel__content {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 18px 16px 16px;
    }

    .vlq-mobile-panel__eyebrow {
        margin: 0 0 12px;
        color: #60708C;
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    /* Menu */
    .vlq-mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .vlq-mobile-menu__link {
        min-height: 50px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-radius: 16px;
        border: 1px solid rgba(203, 213, 225, 0.8);
        background: rgba(255, 255, 255, 0.92);
        color: #071633;
        font-size: 14.5px;
        font-weight: 720;
        line-height: 1.2;
        letter-spacing: -0.015em;
    }

    .vlq-mobile-menu__link svg {
        width: 18px;
        height: 18px;
        color: #64748B;
        flex-shrink: 0;
    }

    .vlq-mobile-menu__link--active {
        color: #0147D1;
        border-color: rgba(1, 71, 209, 0.18);
        background: rgba(238, 244, 255, 0.98);
    }

    .vlq-mobile-menu__link--active svg {
        color: #0147D1;
    }

    /* Actions */
    .vlq-mobile-panel__actions {
        margin-top: 14px;
        padding-top: 14px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        border-top: 1px solid rgba(226, 232, 240, 0.88);
    }

    .vlq-mobile-panel__login,
    .vlq-mobile-panel__demo {
        min-height: 50px;
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        font-size: 14.5px;
        font-weight: 760;
        letter-spacing: -0.015em;
    }

    .vlq-mobile-panel__login {
        border: 1px solid rgba(203, 213, 225, 0.92);
        background: #FFFFFF;
        color: #071633;
    }

    .vlq-mobile-panel__demo {
        border: none;
        background: linear-gradient(180deg, #2B63EC 0%, #1754DA 100%);
        color: #FFFFFF;
        box-shadow:
            0 14px 28px rgba(1, 71, 209, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    /* Bottom strip */
    .vlq-mobile-panel__bottom {
        min-height: 38px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        gap: 9px;
        flex: 0 0 auto;
        border-top: 1px solid rgba(226, 232, 240, 0.95);
        background: rgba(248, 250, 255, 0.96);
    }

    .vlq-mobile-panel__bottom span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #10B981;
        flex-shrink: 0;
    }

    .vlq-mobile-panel__bottom p {
        margin: 0;
        color: #60708C;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .vlq-mobile-panel {
        width: calc(100vw - 14px);
        max-height: calc(100dvh - 14px);
        top: 7px;
        right: 7px;
        border-radius: 22px;
    }

    .vlq-mobile-panel__brand img {
        width: 164px;
    }

    .vlq-mobile-menu__link,
    .vlq-mobile-panel__login,
    .vlq-mobile-panel__demo {
        min-height: 48px;
        font-size: 14px;
    }
}


/* =========================================================
   REQUEST DEMO / COMING SOON MODAL
   Premium shared popup across the whole VerraLinQ site
========================================================= */

body.vlq-demo-modal-open {
    overflow: hidden;
}

.vlq-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 320ms ease,
        visibility 320ms ease;
}

.vlq-demo-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vlq-demo-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(1, 71, 209, 0.18), transparent 34%),
        rgba(2, 6, 23, 0.74);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.vlq-demo-modal__dialog {
    width: min(840px, 100%);
    max-height: min(92vh, 920px);
    position: relative;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 34px;
    border: 1px solid rgba(203, 213, 225, 0.80);
    background:
        radial-gradient(circle at 88% 12%, rgba(1, 71, 209, 0.09), transparent 26%),
        radial-gradient(circle at 10% 90%, rgba(8, 155, 83, 0.07), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(247, 250, 255, 0.99) 100%);
    box-shadow:
        0 48px 140px rgba(2, 6, 23, 0.46),
        0 18px 48px rgba(15, 23, 42, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(18px) scale(0.985);
    transition: transform 420ms var(--ease-premium);
}

.vlq-demo-modal.is-open .vlq-demo-modal__dialog {
    transform: translateY(0) scale(1);
}

.vlq-demo-modal__close {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(203, 213, 225, 0.92);
    background: rgba(255, 255, 255, 0.96);
    color: #071633;
    cursor: pointer;
    box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition:
        transform 260ms var(--ease-premium),
        border-color 240ms ease,
        box-shadow 260ms ease;
}

.vlq-demo-modal__close:hover {
    transform: translateY(-1px);
    border-color: rgba(1, 71, 209, 0.26);
    box-shadow:
        0 16px 30px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.vlq-demo-modal__close svg {
    width: 22px;
    height: 22px;
}

.vlq-demo-modal__content {
    padding: 54px 54px 48px;
}

.vlq-demo-modal__eyebrow {
    grid-area: eyebrow;
    margin: 2px 0 18px !important;
    color: #0147D1 !important;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

.vlq-demo-modal__eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #10B981;
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.44);
}

.vlq-demo-modal__title {
    grid-area: title;
    max-width: 500px !important;
    margin: 0 !important;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 43px !important;
    font-weight: 800 !important;
    line-height: 1.04 !important;
    letter-spacing: -0.052em !important;
}

.vlq-demo-modal__title span,
.vlq-demo-modal__title strong {
    display: block;
}

.vlq-demo-modal__title span {
    color: #071633 !important;
    font-weight: 800 !important;
}

.vlq-demo-modal__title strong {
    color: #3B82F6 !important;
    font-weight: 800 !important;
}

.vlq-demo-modal__intro {
    max-width: 690px;
    margin: 20px 0 26px;
    color: #56657D;
    font-size: 17px;
    font-weight: 460;
    line-height: 1.65;
    letter-spacing: -0.012em;
}


.vlq-demo-modal__status {
    margin-bottom: 30px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 22px;
    border: 1px solid rgba(16, 185, 129, 0.18);
    background:
        linear-gradient(135deg, rgba(236, 253, 245, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.vlq-demo-modal__status-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #FFFFFF;
    color: #089B53;
    box-shadow: 0 12px 24px rgba(8, 155, 83, 0.10);
}

.vlq-demo-modal__status-icon svg {
    width: 26px;
    height: 26px;
}

.vlq-demo-modal__status strong {
    display: block;
    color: #087443;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.vlq-demo-modal__status span {
    display: block;
    margin-top: 3px;
    color: #527266;
    font-size: 14px;
    line-height: 1.45;
}

.vlq-demo-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vlq-demo-form__field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.vlq-demo-form__field--full {
    margin-top: 16px;
}

.vlq-demo-form__field span {
    color: #334155;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.vlq-demo-form__field input,
.vlq-demo-form__field select,
.vlq-demo-form__field textarea {
    width: 100%;
    border: 1px solid rgba(203, 213, 225, 0.96);
    outline: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: #071633;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    box-shadow:
        inset 0 1px 2px rgba(15, 23, 42, 0.035),
        0 10px 20px rgba(15, 23, 42, 0.04);
    transition:
        border-color 240ms ease,
        box-shadow 240ms ease,
        background 240ms ease;
}

.vlq-demo-form__field input,
.vlq-demo-form__field select {
    height: 58px;
    padding: 0 16px;
}

.vlq-demo-form__field textarea {
    min-height: 118px;
    resize: vertical;
    padding: 16px;
}

.vlq-demo-form__field input::placeholder,
.vlq-demo-form__field textarea::placeholder {
    color: #94A3B8;
}

.vlq-demo-form__field input:focus,
.vlq-demo-form__field select:focus,
.vlq-demo-form__field textarea:focus {
    border-color: rgba(1, 71, 209, 0.42);
    background: #FFFFFF;
    box-shadow:
        0 0 0 4px rgba(1, 71, 209, 0.08),
        inset 0 1px 2px rgba(15, 23, 42, 0.035);
}


.vlq-demo-form__submit {
    width: 100%;
    min-height: 62px;
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, #2E67F0 0%, #1754DA 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    cursor: pointer;
    box-shadow:
        0 20px 38px rgba(1, 71, 209, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition:
        transform 260ms var(--ease-premium),
        box-shadow 260ms ease,
        opacity 220ms ease;
}

.vlq-demo-form__submit:hover {
    transform: translateY(-1px);
    box-shadow:
        0 24px 44px rgba(1, 71, 209, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.vlq-demo-form__submit svg {
    width: 20px;
    height: 20px;
}

.vlq-demo-form__submit:disabled {
    cursor: default;
    opacity: 0.86;
    transform: none;
}

.vlq-demo-form__note {
    margin-top: 16px;
    color: #64748B;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

.vlq-demo-form__success {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(16, 185, 129, 0.18);
    background: rgba(236, 253, 245, 0.96);
}

.vlq-demo-form__success strong {
    display: block;
    color: #087443;
    font-size: 15px;
    font-weight: 800;
}

.vlq-demo-form__success span {
    display: block;
    margin-top: 4px;
    color: #527266;
    font-size: 14px;
    line-height: 1.45;
}


/* =========================================================
   REQUEST DEMO MODAL — MOBILE
========================================================= */

@media (max-width: 720px) {

    .vlq-demo-modal {
        padding: 10px;
    }

    .vlq-demo-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 20px);
        border-radius: 26px;
    }

    .vlq-demo-modal__close {
        width: 46px;
        height: 46px;
        top: 16px;
        right: 16px;
        border-radius: 16px;
    }

    .vlq-demo-modal__content {
        padding: 34px 18px 24px;
    }

    .vlq-demo-modal__eyebrow {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .vlq-demo-modal__title {
        max-width: calc(100% - 54px);
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .vlq-demo-modal__intro {
        margin: 16px 0 20px;
        font-size: 14.5px;
        line-height: 1.58;
    }

    .vlq-demo-modal__status {
        margin-bottom: 22px;
        padding: 15px;
        gap: 13px;
        border-radius: 18px;
    }

    .vlq-demo-modal__status-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .vlq-demo-form__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vlq-demo-form__field input,
    .vlq-demo-form__field select {
        height: 54px;
    }

    .vlq-demo-form__field textarea {
        min-height: 104px;
    }

    .vlq-demo-form__submit {
        min-height: 58px;
        font-size: 15px;
    }
}
/* =========================================================
   REQUEST DEMO MODAL — CLEAN MINIMAL PREMIUM REDESIGN
   Wider, shorter, refined, no desktop internal scroll
========================================================= */

@media (min-width: 721px) {

    .vlq-demo-modal {
        padding: 28px !important;
    }

    .vlq-demo-modal__dialog {
        width: min(1080px, calc(100vw - 56px)) !important;
        max-height: none !important;
        overflow: hidden !important;
        border-radius: 30px !important;
        background:
            radial-gradient(circle at 92% 10%, rgba(1, 71, 209, 0.075), transparent 28%),
            linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%) !important;
    }

    .vlq-demo-modal__close {
        width: 46px !important;
        height: 46px !important;
        top: 22px !important;
        right: 22px !important;
        border-radius: 16px !important;
    }

    .vlq-demo-modal__close svg {
        width: 20px !important;
        height: 20px !important;
    }

    .vlq-demo-modal__content {
        padding: 42px 42px 38px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr) !important;
        grid-template-areas:
            "eyebrow form"
            "title form"
            "intro form"
            "status form";
        column-gap: 42px !important;
        align-items: start !important;
    }


    /* -----------------------------------------------------
       Left content
    ------------------------------------------------------ */

    .vlq-demo-modal__eyebrow {
        grid-area: eyebrow;
        margin: 2px 0 18px !important;
        font-size: 11px !important;
        letter-spacing: 0.16em !important;
    }

    .vlq-demo-modal__eyebrow span {
        width: 8px !important;
        height: 8px !important;
    }

    .vlq-demo-modal__title {
        grid-area: title;
        max-width: 420px !important;
        font-size: 38px !important;
        font-weight: 820 !important;
        line-height: 1.05 !important;
        letter-spacing: -0.052em !important;
    }

    .vlq-demo-modal__intro {
        grid-area: intro;
        max-width: 430px !important;
        margin: 18px 0 22px !important;
        font-size: 15.5px !important;
        line-height: 1.62 !important;
        color: #5A6880 !important;
    }

    .vlq-demo-modal__status {
        grid-area: status;
        max-width: 440px !important;
        margin: 0 !important;
        padding: 16px 17px !important;
        gap: 14px !important;
        border-radius: 20px !important;
    }

    .vlq-demo-modal__status-icon {
        width: 44px !important;
        height: 44px !important;
        border-radius: 14px !important;
    }

    .vlq-demo-modal__status-icon svg {
        width: 23px !important;
        height: 23px !important;
    }

    .vlq-demo-modal__status strong {
        font-size: 14px !important;
    }

    .vlq-demo-modal__status span {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }


    /* -----------------------------------------------------
       Right compact form
    ------------------------------------------------------ */

    .vlq-demo-form {
        grid-area: form;
        min-width: 0 !important;
        padding: 22px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(216, 226, 239, 0.96) !important;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,255,0.96) 100%) !important;
        box-shadow:
            0 20px 42px rgba(15, 23, 42, 0.08),
            inset 0 1px 0 rgba(255,255,255,1) !important;
    }

    .vlq-demo-form__grid {
        gap: 13px !important;
    }

    .vlq-demo-form__field {
        gap: 7px !important;
    }

    .vlq-demo-form__field--full {
        margin-top: 13px !important;
    }

    .vlq-demo-form__field span {
        font-size: 12px !important;
        font-weight: 760 !important;
    }

    .vlq-demo-form__field input,
    .vlq-demo-form__field select {
        height: 50px !important;
        padding: 0 14px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
    }

    .vlq-demo-form__field textarea {
        min-height: 82px !important;
        height: 82px !important;
        padding: 14px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
        resize: none !important;
    }

    .vlq-demo-form__submit {
        min-height: 54px !important;
        margin-top: 16px !important;
        border-radius: 15px !important;
        font-size: 14.5px !important;
        gap: 10px !important;
    }

    .vlq-demo-form__submit svg {
        width: 18px !important;
        height: 18px !important;
    }

    .vlq-demo-form__note {
        margin-top: 12px !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .vlq-demo-form__success {
        margin-top: 12px !important;
        padding: 13px 14px !important;
        border-radius: 14px !important;
    }

    .vlq-demo-form__success strong {
        font-size: 13.5px !important;
    }

    .vlq-demo-form__success span {
        font-size: 12.5px !important;
    }
}
.vlq-demo-modal__eyebrow b {
    display: inline;
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}
/* =========================================================
   SMALL COMING SOON FEATURE POPUP
========================================================= */

body.vlq-feature-modal-open {
    overflow: hidden;
}

.vlq-feature-modal {
    position: fixed;
    inset: 0;
    z-index: 3200;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 260ms ease,
        visibility 260ms ease;
}

.vlq-feature-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vlq-feature-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vlq-feature-modal__dialog {
    width: min(470px, 100%);
    position: relative;
    z-index: 1;
    padding: 34px 34px 30px;
    border-radius: 28px;
    border: 1px solid rgba(203, 213, 225, 0.82);
    background:
        radial-gradient(circle at 90% 8%, rgba(59, 130, 246, 0.10), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    box-shadow:
        0 36px 100px rgba(2, 6, 23, 0.40),
        0 14px 34px rgba(15, 23, 42, 0.16);
    text-align: left;
    transform: translateY(12px) scale(0.985);
    transition: transform 340ms var(--ease-premium);
}

.vlq-feature-modal.is-open .vlq-feature-modal__dialog {
    transform: translateY(0) scale(1);
}

.vlq-feature-modal__close {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(203, 213, 225, 0.92);
    background: #FFFFFF;
    color: #071633;
    cursor: pointer;
}

.vlq-feature-modal__close svg {
    width: 19px;
    height: 19px;
}

.vlq-feature-modal__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(236, 253, 245, 0.96);
    color: #089B53;
}

.vlq-feature-modal__icon svg {
    width: 28px;
    height: 28px;
}

.vlq-feature-modal__eyebrow {
    margin: 0 0 12px;
    color: #0147D1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vlq-feature-modal__title {
    max-width: 360px;
    margin: 0;
    color: #071633;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.vlq-feature-modal__text {
    margin: 16px 0 22px;
    color: #5A6880;
    font-size: 15px;
    line-height: 1.6;
}

.vlq-feature-modal__button {
    min-width: 132px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 15px;
    background: linear-gradient(180deg, #2E67F0 0%, #1754DA 100%);
    color: #FFFFFF;
    font-size: 14.5px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(1, 71, 209, 0.24);
}

@media (max-width: 620px) {
    .vlq-feature-modal {
        padding: 14px;
    }

    .vlq-feature-modal__dialog {
        padding: 28px 22px 24px;
        border-radius: 24px;
    }

    .vlq-feature-modal__title {
        font-size: 25px;
    }

    .vlq-feature-modal__text {
        font-size: 14.5px;
    }
}

/* =========================================================
   MODAL SCROLLBAR SHIFT FIX
   Prevents full-page horizontal jump when popup opens
========================================================= */

html {
    scrollbar-gutter: stable;
}


/* =========================================================
   FINAL MODAL ENTRANCE SYSTEM
   Fixes delayed blur snap:
   - modal wrapper no longer fades
   - backdrop fades first
   - dialog follows slightly after
   - blur is already present from the first frame
========================================================= */

/* Keep modal wrapper present; animate children only */
.vlq-demo-modal,
.vlq-feature-modal {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transition: none !important;
}

.vlq-demo-modal.is-open,
.vlq-feature-modal.is-open {
    pointer-events: auto !important;
}


/* Backdrop: blur layer is always ready, only opacity fades */
.vlq-demo-modal__backdrop,
.vlq-feature-modal__backdrop {
    opacity: 0 !important;
    transform: none !important;
    will-change: opacity;

    transition:
        opacity 260ms ease !important;
}

.vlq-demo-modal__backdrop {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.vlq-feature-modal__backdrop {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.vlq-demo-modal.is-open .vlq-demo-modal__backdrop,
.vlq-feature-modal.is-open .vlq-feature-modal__backdrop {
    opacity: 1 !important;
}


/* Dialog: enters just after backdrop has started fading in */
.vlq-demo-modal__dialog,
.vlq-feature-modal__dialog {
    opacity: 0 !important;
    will-change: transform, opacity;
    pointer-events: none !important;

    transition:
        opacity 260ms ease,
        transform 420ms var(--ease-premium) !important;
}

.vlq-demo-modal__dialog {
    transform: translateY(16px) scale(0.985) !important;
}

.vlq-feature-modal__dialog {
    transform: translateY(12px) scale(0.985) !important;
}


/* Open state — slight delay only on opening */
.vlq-demo-modal.is-open .vlq-demo-modal__dialog,
.vlq-feature-modal.is-open .vlq-feature-modal__dialog {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;

    transition-delay:
        90ms,
        90ms !important;
}
/* =========================================================
   MODAL BACKDROP — COVER RESERVED SCROLLBAR GUTTER
   Keeps scrollbar-gutter shift fix, but blurs the right gutter too
========================================================= */

.vlq-demo-modal,
.vlq-feature-modal {
    width: 100vw !important;
    height: 100dvh !important;
    left: 0 !important;
    right: auto !important;
}

.vlq-demo-modal__backdrop,
.vlq-feature-modal__backdrop {
    width: 100vw !important;
    height: 100dvh !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
    bottom: auto !important;
}

/* =========================================================
   DEMO POPUP — LIVE FORM SUBMISSION STATES
========================================================= */

.vlq-demo-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.vlq-demo-form__error {
    margin-top: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid rgba(220, 38, 38, 0.18);
    background: rgba(254, 242, 242, 0.98);
}

.vlq-demo-form__error strong {
    display: block;
    color: #B91C1C;
    font-size: 13.5px;
    font-weight: 800;
}

.vlq-demo-form__error span {
    display: block;
    margin-top: 4px;
    color: #B45353;
    font-size: 12.5px;
    line-height: 1.45;
}
