/* =========================================================
   VERRALINQ — API PAGE
   Header + API Hero
========================================================= */

/* =========================================================
   PAGE-SPECIFIC STYLES
========================================================= */

/* =========================================================
   API HERO
========================================================= */

.vlq-api-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at 80% 18%, rgba(59, 130, 246, 0.22) 0%, transparent 32%), radial-gradient(circle at 10% 82%, rgba(8, 155, 83, 0.08) 0%, transparent 28%), linear-gradient(135deg, #020617 0%, #071225 48%, #0B162B 100%);
}

.vlq-api-hero__grid-pattern {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 94%);
    opacity: 0.54;
}

.vlq-api-hero__light {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(30px);
}

.vlq-api-hero__light--blue {
    top: -180px;
    right: -120px;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.24) 0%, transparent 68%);
}

.vlq-api-hero__light--green {
    left: -180px;
    bottom: -240px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(8, 155, 83, 0.13) 0%, transparent 68%);
}

.vlq-api-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 84px 24px 68px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(540px, 640px);
    align-items: center;
    gap: 64px;
}


/* =========================================================
   HERO LEFT CONTENT
========================================================= */

.vlq-api-hero__content {
    min-width: 0;
}

.vlq-api-hero__badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.24);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 38px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(-10px);
    animation: vlqApiBadgeIn 760ms var(--ease-premium) 120ms forwards;
}

    .vlq-api-hero__badge svg {
        width: 16px;
        height: 16px;
        color: #60A5FA;
        flex-shrink: 0;
    }

.vlq-api-hero__title {
    max-width: 760px;
    margin: 28px 0 0;
    color: #FFFFFF;
    font-size: clamp(46px, 4.8vw, 68px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.058em;
    opacity: 0;
    transform: translateY(24px);
    animation: vlqApiTitleIn 960ms var(--ease-premium) 220ms forwards;
}

    .vlq-api-hero__title span {
        display: block;
        margin-top: 7px;
        color: #60A5FA;
        text-shadow: 0 0 34px rgba(96, 165, 250, 0.16);
    }

.vlq-api-hero__subtitle {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    font-weight: 420;
    line-height: 1.65;
    letter-spacing: -0.012em;
    opacity: 0;
    transform: translateY(18px);
    animation: vlqApiSubtitleIn 860ms var(--ease-premium) 390ms forwards;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.vlq-api-hero__actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    transform: translateY(18px);
    animation: vlqApiActionsIn 860ms var(--ease-premium) 560ms forwards;
}

.vlq-api-hero__button {
    min-height: 52px;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 680;
    line-height: 1;
    letter-spacing: -0.015em;
    cursor: pointer;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease, box-shadow 300ms ease, background 260ms ease, color 240ms ease;
}

    .vlq-api-hero__button:hover {
        transform: translateY(-2px);
    }

    .vlq-api-hero__button:active {
        transform: translateY(0);
    }

.vlq-api-hero__button--primary {
    border: 1px solid rgba(1, 71, 209, 0.96);
    background: linear-gradient( 180deg, #1765F2 0%, #0954E4 42%, #0147D1 100% );
    color: #FFFFFF;
    box-shadow: 0 18px 34px rgba(1, 71, 209, 0.30), 0 3px 8px rgba(1, 71, 209, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

    .vlq-api-hero__button--primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 48%;
        height: 100%;
        z-index: -1;
        background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100% );
        transform: skewX(-22deg);
        transition: left 760ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .vlq-api-hero__button--primary:hover {
        background: linear-gradient( 180deg, #2873FF 0%, #0C59EC 44%, #003FB9 100% );
        box-shadow: 0 24px 44px rgba(1, 71, 209, 0.38), 0 4px 12px rgba(1, 71, 209, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

        .vlq-api-hero__button--primary:hover::before {
            left: 130%;
        }

.vlq-api-hero__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.07);
    color: #FFFFFF;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(0, 0, 0, 0.18);
}

    .vlq-api-hero__button--secondary:hover {
        border-color: rgba(147, 197, 253, 0.40);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 34px rgba(0, 0, 0, 0.22);
    }


/* =========================================================
   HERO TRUST LINE
========================================================= */

.vlq-api-hero__trust {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiTrustIn 840ms var(--ease-premium) 740ms forwards;
}

.vlq-api-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 520;
    line-height: 1.2;
    letter-spacing: -0.006em;
}

.vlq-api-hero__trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #089B53;
    box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.12), 0 0 18px rgba(8, 155, 83, 0.24);
}


/* =========================================================
   HERO RIGHT VISUAL — API CONSOLE
========================================================= */

.vlq-api-hero__visual {
    position: relative;
    min-width: 0;
    opacity: 0;
    transform: translateX(26px) translateY(10px);
    animation: vlqApiVisualIn 1100ms var(--ease-premium) 360ms forwards;
}

.vlq-api-console {
    width: 100%;
    min-height: 554px;
    position: relative;
    overflow: visible;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.08) 100% );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34), 0 8px 24px rgba(1, 71, 209, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}


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

.vlq-api-console__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.vlq-api-console__window-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .vlq-api-console__window-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.24);
    }

        .vlq-api-console__window-dots span:nth-child(1) {
            background: rgba(248, 113, 113, 0.86);
        }

        .vlq-api-console__window-dots span:nth-child(2) {
            background: rgba(251, 191, 36, 0.86);
        }

        .vlq-api-console__window-dots span:nth-child(3) {
            background: rgba(52, 211, 153, 0.86);
        }

.vlq-api-console__title p {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vlq-api-console__title strong {
    display: block;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 690;
    line-height: 1.3;
    letter-spacing: -0.014em;
}

.vlq-api-console__status {
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(8, 155, 83, 0.28);
    background: rgba(8, 155, 83, 0.14);
    color: #A7F3D0;
    font-size: 11px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}


/* =========================================================
   REQUEST + RESPONSE BLOCKS
========================================================= */

.vlq-api-console__request,
.vlq-api-console__response {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(2, 6, 23, 0.56);
}

.vlq-api-console__request-head,
.vlq-api-console__response-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

    .vlq-api-console__request-head span,
    .vlq-api-console__response-head span {
        color: rgba(255, 255, 255, 0.56);
        font-size: 10px;
        font-weight: 760;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vlq-api-console__request-head strong {
        min-height: 25px;
        padding: 0 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(59, 130, 246, 0.14);
        border: 1px solid rgba(147, 197, 253, 0.20);
        color: #BFDBFE;
        font-size: 10px;
        font-weight: 760;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

.vlq-api-console__verified-pill {
    min-height: 27px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(8, 155, 83, 0.28);
    background: rgba(8, 155, 83, 0.14);
    color: #A7F3D0;
    font-size: 10px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

    .vlq-api-console__verified-pill i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #34D399;
        box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
    }

.vlq-api-console pre {
    margin: 0;
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -0.008em;
    white-space: pre-wrap;
    word-break: break-word;
}

.vlq-api-console code {
    font-family: "Geist", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


/* =========================================================
   CAPABILITY MINI CARDS
========================================================= */

.vlq-api-console__capabilities {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vlq-api-console-capability {
    min-height: 84px;
    padding: 15px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(2, 6, 23, 0.48);
}

    .vlq-api-console-capability svg {
        width: 24px;
        height: 24px;
        color: #60A5FA;
    }

    .vlq-api-console-capability strong {
        display: block;
        color: #FFFFFF;
        font-size: 13px;
        font-weight: 710;
        line-height: 1.28;
        letter-spacing: -0.014em;
    }

    .vlq-api-console-capability span {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 11.5px;
        font-weight: 450;
        line-height: 1.42;
        letter-spacing: -0.004em;
    }


/* =========================================================
   FLOATING BADGE
========================================================= */

.vlq-api-console__floating-badge {
    width: 324px;
    min-height: 82px;
    padding: 16px 18px;
    position: absolute;
    right: -30px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #DDE5EE;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13), 0 4px 12px rgba(1, 71, 209, 0.06);
    animation: vlqApiFloatingBadge 5.8s ease-in-out infinite;
}

.vlq-api-console__floating-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #0147D1;
    background: #EEF4FF;
    border: 1px solid rgba(1, 71, 209, 0.16);
}

    .vlq-api-console__floating-icon svg {
        width: 22px;
        height: 22px;
    }

.vlq-api-console__floating-badge strong {
    display: block;
    color: #071633;
    font-size: 13px;
    font-weight: 740;
    line-height: 1.25;
    letter-spacing: -0.014em;
}

.vlq-api-console__floating-badge span {
    display: block;
    margin-top: 5px;
    color: #596882;
    font-size: 11.5px;
    font-weight: 430;
    line-height: 1.35;
    letter-spacing: -0.004em;
}


/* =========================================================
   BOTTOM API STRIP
========================================================= */

.vlq-api-hero__strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(18px);
    animation: vlqApiStripIn 920ms var(--ease-premium) 860ms forwards;
}

.vlq-api-hero__strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 24px 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.vlq-api-strip-item {
    min-width: 0;
}

    .vlq-api-strip-item span {
        display: block;
        margin-bottom: 8px;
        color: #60A5FA;
        font-size: 12px;
        font-weight: 760;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vlq-api-strip-item strong {
        display: block;
        color: #FFFFFF;
        font-size: 17px;
        font-weight: 720;
        line-height: 1.2;
        letter-spacing: -0.026em;
    }

    .vlq-api-strip-item p {
        margin: 7px 0 0;
        max-width: 320px;
        color: rgba(255, 255, 255, 0.68);
        font-size: 13px;
        font-weight: 450;
        line-height: 1.5;
        letter-spacing: -0.006em;
    }

.vlq-api-strip-divider {
    width: 1px;
    height: 56px;
    background: linear-gradient( 180deg, transparent 0%, rgba(255, 255, 255, 0.24) 50%, transparent 100% );
}


/* =========================================================
   ANIMATIONS
========================================================= */

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

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

@keyframes brandReveal {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

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

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

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

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

@keyframes actionsReveal {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

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

@keyframes vlqApiBadgeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

@keyframes vlqApiTitleIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes vlqApiSubtitleIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes vlqApiActionsIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes vlqApiTrustIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes vlqApiVisualIn {
    from {
        opacity: 0;
        transform: translateX(26px) translateY(10px);
    }

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

@keyframes vlqApiFloatingBadge {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes vlqApiStripIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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


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

@media (max-width: 1220px) {
    .site-header__inner {
        padding: 0 28px;
        gap: 34px;
    }

    .nav-list {
        gap: 26px;
    }

    .header-actions {
        margin-left: 28px;
        gap: 22px;
    }

    .nav-link,
    .login-link,
    .demo-button {
        font-size: 13px;
    }

    .demo-button {
        min-height: 40px;
        padding: 0 19px;
    }
}

@media (max-width: 1040px) {
    .site-header__inner {
        padding: 0 24px;
    }

    .nav-list {
        gap: 20px;
    }

    .header-actions {
        margin-left: 22px;
    }
}

@media (max-width: 920px) {
    .header-nav,
    .header-actions {
        display: none;
    }

    .site-header__inner {
        justify-content: flex-start;
    }
}


/* =========================================================
   RESPONSIVE API HERO
========================================================= */

@media (max-width: 1180px) {
    .vlq-api-hero__inner {
        grid-template-columns: 1fr;
        gap: 54px;
        padding-top: 74px;
    }

    .vlq-api-hero__content {
        max-width: 920px;
    }

    .vlq-api-hero__visual {
        max-width: 720px;
    }
}

@media (max-width: 860px) {
    .vlq-api-hero__inner {
        padding: 62px 20px 56px;
    }

    .vlq-api-hero__title {
        font-size: clamp(40px, 8vw, 56px);
    }

    .vlq-api-hero__subtitle {
        font-size: 16px;
    }

    .vlq-api-console {
        min-height: auto;
    }

    .vlq-api-console__header {
        grid-template-columns: 1fr;
        justify-items: start;
    }

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

    .vlq-api-console__floating-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .vlq-api-hero__strip-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vlq-api-strip-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.20) 50%, transparent 100% );
    }
}

@media (max-width: 620px) {
    .vlq-api-hero__inner {
        padding: 52px 18px 48px;
    }

    .vlq-api-hero__badge {
        align-items: flex-start;
        line-height: 1.35;
    }

    .vlq-api-hero__title {
        margin-top: 24px;
        font-size: 38px;
        letter-spacing: -0.048em;
    }

    .vlq-api-hero__subtitle {
        margin-top: 20px;
        font-size: 15.5px;
        line-height: 1.62;
    }

    .vlq-api-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .vlq-api-hero__button {
        width: 100%;
    }

    .vlq-api-console {
        padding: 20px;
    }

        .vlq-api-console pre {
            font-size: 12.5px;
        }

    .vlq-api-hero__strip-inner {
        padding: 24px 18px 26px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
/* =========================================================
   SECTION 2 — API CAPABILITIES
   Build credential trust into existing systems
========================================================= */

.vlq-api-capabilities {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.045), transparent 28%), radial-gradient(circle at 88% 82%, rgba(8, 155, 83, 0.035), transparent 24%), #F8FAFC;
    border-top: 1px solid #E8EDF5;
    font-family: inherit;
}

.vlq-api-capabilities__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 24px 94px;
    position: relative;
    z-index: 1;
}


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

.vlq-api-capabilities__header {
    max-width: 920px;
    margin: 0 auto 56px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiCapabilitiesHeaderIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.vlq-api-capabilities__eyebrow {
    width: fit-content;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    border: 1px solid rgba(1, 71, 209, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0147D1;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 10px 22px rgba(15, 23, 42, 0.045);
}

    .vlq-api-capabilities__eyebrow span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #089B53;
        box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
    }

    .vlq-api-capabilities__eyebrow strong {
        font-size: 11px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

.vlq-api-capabilities__title {
    margin: 0;
    color: #071633;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

    .vlq-api-capabilities__title span {
        display: block;
        margin-top: 4px;
        color: #0147D1;
    }

.vlq-api-capabilities__subtitle {
    max-width: 860px;
    margin: 20px auto 0;
    color: #596882;
    font-size: 16px;
    font-weight: 430;
    line-height: 1.65;
    letter-spacing: -0.008em;
}


/* =========================================================
   CAPABILITIES GRID
========================================================= */

.vlq-api-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}


/* =========================================================
   CAPABILITY CARD
========================================================= */

.vlq-api-capability-card {
    min-height: 514px;
    position: relative;
    overflow: hidden;
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 12px 32px rgba(15, 23, 42, 0.055);
    opacity: 0;
    transform: translateY(18px);
    animation: vlqApiCapabilityCardIn 780ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

    .vlq-api-capability-card:nth-child(1) {
        animation-delay: 160ms;
    }

    .vlq-api-capability-card:nth-child(2) {
        animation-delay: 240ms;
    }

    .vlq-api-capability-card:nth-child(3) {
        animation-delay: 320ms;
    }

    .vlq-api-capability-card:nth-child(4) {
        animation-delay: 400ms;
    }

    .vlq-api-capability-card:nth-child(5) {
        animation-delay: 480ms;
    }

    .vlq-api-capability-card:nth-child(6) {
        animation-delay: 560ms;
    }

    .vlq-api-capability-card::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.052), transparent 72%);
        pointer-events: none;
    }

    .vlq-api-capability-card:hover {
        transform: translateY(-6px);
        border-color: #CBD7E8;
        box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 24px 54px rgba(15, 23, 42, 0.10);
    }


/* =========================================================
   FEATURED FIRST CARD
========================================================= */

.vlq-api-capability-card--featured {
    border-color: rgba(1, 71, 209, 0.32);
    background: linear-gradient( 180deg, rgba(238, 244, 255, 0.74) 0%, rgba(255, 255, 255, 1) 28% );
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 18px 42px rgba(1, 71, 209, 0.085);
}

    .vlq-api-capability-card--featured:hover {
        border-color: rgba(1, 71, 209, 0.60);
        box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 28px 62px rgba(1, 71, 209, 0.15);
    }

    .vlq-api-capability-card--featured::after {
        content: "";
        position: absolute;
        top: 0;
        left: 26px;
        right: 26px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient( 90deg, transparent 0%, rgba(1, 71, 209, 0.76) 50%, transparent 100% );
    }


/* =========================================================
   CARD TOP: NUMBER + ICON
========================================================= */

.vlq-api-capability-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vlq-api-capability-card__number {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    border: 1px solid rgba(1, 71, 209, 0.14);
    background: #F3F7FF;
    color: #0147D1;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 18px rgba(1, 71, 209, 0.06);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 320ms ease;
}

.vlq-api-capability-card__icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #0147D1;
    background: #EEF4FF;
    border: 1px solid rgba(1, 71, 209, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 24px rgba(1, 71, 209, 0.09);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 320ms ease;
}

    .vlq-api-capability-card__icon svg {
        width: 38px;
        height: 38px;
        transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    }

.vlq-api-capability-card:hover .vlq-api-capability-card__number {
    transform: translateY(-1px) scale(1.035);
    border-color: rgba(1, 71, 209, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 12px 24px rgba(1, 71, 209, 0.11);
}

.vlq-api-capability-card:hover .vlq-api-capability-card__icon {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(1, 71, 209, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 16px 30px rgba(1, 71, 209, 0.14);
}

    .vlq-api-capability-card:hover .vlq-api-capability-card__icon svg {
        transform: scale(1.06);
    }


/* =========================================================
   CARD CONTENT
========================================================= */

.vlq-api-capability-card__content {
    position: relative;
    z-index: 1;
    margin-top: 28px;
}

    .vlq-api-capability-card__content h3 {
        margin: 0;
        color: #071633;
        font-size: 21px;
        font-weight: 760;
        line-height: 1.28;
        letter-spacing: -0.034em;
    }

    .vlq-api-capability-card__content p {
        min-height: 96px;
        margin: 14px 0 0;
        color: #596882;
        font-size: 13.8px;
        font-weight: 430;
        line-height: 1.68;
        letter-spacing: -0.006em;
    }


/* =========================================================
   ENDPOINT CHIP
========================================================= */

.vlq-api-capability-card__endpoint {
    width: 100%;
    min-height: 64px;
    margin-top: 20px;
    padding: 13px 14px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    background: linear-gradient( 180deg, #FFFFFF 0%, #FAFCFF 100% );
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 8px 18px rgba(15, 23, 42, 0.034);
}

    .vlq-api-capability-card__endpoint span {
        color: #60708C;
        font-size: 10px;
        font-weight: 760;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vlq-api-capability-card__endpoint code {
        color: #0147D1;
        font-size: 12.5px;
        font-weight: 690;
        line-height: 1.45;
        letter-spacing: -0.012em;
        word-break: break-word;
        font-family: "Geist", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }


/* =========================================================
   POINT LIST
========================================================= */

.vlq-api-capability-card__points {
    list-style: none;
    margin: auto 0 0;
    padding: 22px 0 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
    border-top: 1px solid #EEF2F7;
}

    .vlq-api-capability-card__points li {
        position: relative;
        padding-left: 20px;
        color: #435472;
        font-size: 13px;
        font-weight: 470;
        line-height: 1.45;
        letter-spacing: -0.006em;
    }

        .vlq-api-capability-card__points li::before {
            content: "";
            position: absolute;
            top: 7px;
            left: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #089B53;
            box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
        }


/* =========================================================
   BOTTOM API SIGNAL STRIP
========================================================= */

.vlq-api-capabilities__signal {
    min-height: 132px;
    margin-top: 28px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: radial-gradient(circle at 92% 50%, rgba(1, 71, 209, 0.07), transparent 28%), linear-gradient(135deg, #FFFFFF 0%, #FAFCFF 100%);
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 12px 30px rgba(15, 23, 42, 0.06);
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiSignalIn 840ms cubic-bezier(0.22, 1, 0.36, 1) 680ms forwards;
}

    .vlq-api-capabilities__signal::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 1px;
        background: linear-gradient( 90deg, transparent 0%, rgba(1, 71, 209, 0.26) 50%, transparent 100% );
    }

.vlq-api-capabilities__signal-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

    .vlq-api-capabilities__signal-copy h3 {
        margin: 0;
        color: #071633;
        font-size: 23px;
        font-weight: 760;
        line-height: 1.26;
        letter-spacing: -0.036em;
    }

    .vlq-api-capabilities__signal-copy p {
        margin: 10px 0 0;
        color: #596882;
        font-size: 14.5px;
        font-weight: 430;
        line-height: 1.6;
        letter-spacing: -0.006em;
    }

.vlq-api-capabilities__signal-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(108px, 1fr));
    gap: 12px;
    flex-shrink: 0;
}

.vlq-api-capability-metric {
    min-width: 108px;
    min-height: 80px;
    padding: 15px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 13px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 8px 18px rgba(15, 23, 42, 0.034);
}

    .vlq-api-capability-metric strong {
        display: block;
        color: #0147D1;
        font-size: 16px;
        font-weight: 760;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .vlq-api-capability-metric span {
        display: block;
        margin-top: 5px;
        color: #596882;
        font-size: 12px;
        font-weight: 520;
        line-height: 1.35;
        letter-spacing: -0.004em;
    }


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vlqApiCapabilitiesHeaderIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes vlqApiCapabilityCardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes vlqApiSignalIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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


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

@media (max-width: 1120px) {
    .vlq-api-capabilities__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vlq-api-capability-card {
        min-height: 500px;
    }
}

@media (max-width: 920px) {
    .vlq-api-capabilities__signal {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .vlq-api-capabilities__signal-metrics {
        width: 100%;
    }
}

@media (max-width: 820px) {
    .vlq-api-capabilities__inner {
        padding: 72px 20px 76px;
    }

    .vlq-api-capabilities__header {
        margin-bottom: 42px;
    }

    .vlq-api-capabilities__title {
        font-size: clamp(32px, 7vw, 44px);
    }

    .vlq-api-capabilities__subtitle {
        font-size: 15.5px;
    }
}

@media (max-width: 680px) {
    .vlq-api-capabilities__grid {
        grid-template-columns: 1fr;
    }

    .vlq-api-capability-card {
        min-height: auto;
    }

    .vlq-api-capability-card__content p {
        min-height: auto;
    }
}

@media (max-width: 620px) {
    .vlq-api-capabilities__inner {
        padding: 62px 18px 66px;
    }

    .vlq-api-capabilities__eyebrow {
        max-width: 100%;
    }

        .vlq-api-capabilities__eyebrow strong {
            font-size: 10.5px;
        }

    .vlq-api-capabilities__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.045em;
    }

    .vlq-api-capabilities__subtitle {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.62;
    }

    .vlq-api-capability-card {
        padding: 22px 20px 20px;
    }

    .vlq-api-capability-card__top {
        align-items: flex-start;
    }

    .vlq-api-capability-card__number {
        width: 42px;
        height: 42px;
    }

    .vlq-api-capability-card__icon {
        width: 62px;
        height: 62px;
    }

        .vlq-api-capability-card__icon svg {
            width: 35px;
            height: 35px;
        }

    .vlq-api-capability-card__content {
        margin-top: 24px;
    }

        .vlq-api-capability-card__content h3 {
            font-size: 19px;
        }

        .vlq-api-capability-card__content p {
            font-size: 13.5px;
        }

    .vlq-api-capabilities__signal {
        padding: 22px 20px;
    }

    .vlq-api-capabilities__signal-copy h3 {
        font-size: 20px;
    }

    .vlq-api-capabilities__signal-copy p {
        font-size: 14px;
    }

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


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .vlq-api-capabilities *,
    .vlq-api-capabilities *::before,
    .vlq-api-capabilities *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
/* =========================================================
   SECTION 3 — API WORKFLOW
   From platform event to verifiable credential proof
========================================================= */

.vlq-api-workflow {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.045), transparent 28%), radial-gradient(circle at 10% 84%, rgba(8, 155, 83, 0.035), transparent 24%), #FFFFFF;
    border-top: 1px solid #E8EDF5;
    font-family: inherit;
}

.vlq-api-workflow__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 24px 94px;
    position: relative;
    z-index: 1;
}


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

.vlq-api-workflow__header {
    max-width: 920px;
    margin: 0 auto 58px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiWorkflowHeaderIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.vlq-api-workflow__eyebrow {
    width: fit-content;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    border: 1px solid rgba(1, 71, 209, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0147D1;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 10px 22px rgba(15, 23, 42, 0.045);
}

    .vlq-api-workflow__eyebrow span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #089B53;
        box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
    }

    .vlq-api-workflow__eyebrow strong {
        font-size: 11px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

.vlq-api-workflow__title {
    margin: 0;
    color: #071633;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

    .vlq-api-workflow__title span {
        display: block;
        margin-top: 4px;
        color: #0147D1;
    }

.vlq-api-workflow__subtitle {
    max-width: 860px;
    margin: 20px auto 0;
    color: #596882;
    font-size: 16px;
    font-weight: 430;
    line-height: 1.65;
    letter-spacing: -0.008em;
}


/* =========================================================
   MAIN WORKFLOW STAGE
========================================================= */

.vlq-api-workflow__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 490px);
    align-items: start;
    gap: 30px;
}


/* =========================================================
   LEFT PROCESS TIMELINE
========================================================= */

.vlq-api-workflow__steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* =========================================================
   INDIVIDUAL WORKFLOW STEP
========================================================= */

.vlq-api-workflow-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: stretch;
    gap: 18px;
    opacity: 0;
    transform: translateY(18px);
    animation: vlqApiWorkflowStepIn 780ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

    .vlq-api-workflow-step:nth-child(1) {
        animation-delay: 160ms;
    }

    .vlq-api-workflow-step:nth-child(2) {
        animation-delay: 260ms;
    }

    .vlq-api-workflow-step:nth-child(3) {
        animation-delay: 360ms;
    }

    .vlq-api-workflow-step:nth-child(4) {
        animation-delay: 460ms;
    }


/* =========================================================
   STEP RAIL
========================================================= */

.vlq-api-workflow-step__rail {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vlq-api-workflow-step__number {
    width: 52px;
    height: 52px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(1, 71, 209, 0.18);
    background: #FFFFFF;
    color: #0147D1;
    font-size: 13px;
    font-weight: 820;
    line-height: 1;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 12px 24px rgba(1, 71, 209, 0.09);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 340ms ease, background 260ms ease, color 260ms ease;
}

.vlq-api-workflow-step__line {
    width: 2px;
    flex: 1;
    min-height: 88px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    background: linear-gradient( 180deg, rgba(1, 71, 209, 0.24) 0%, rgba(1, 71, 209, 0.10) 54%, rgba(1, 71, 209, 0.03) 100% );
}

    .vlq-api-workflow-step__line::after {
        content: "";
        position: absolute;
        top: -46px;
        left: 0;
        width: 2px;
        height: 46px;
        border-radius: 999px;
        background: linear-gradient( 180deg, transparent 0%, rgba(96, 165, 250, 0.24) 20%, rgba(1, 71, 209, 0.92) 60%, transparent 100% );
        animation: vlqApiWorkflowRailFlow 4.8s ease-in-out infinite;
    }

.vlq-api-workflow-step:nth-child(1) .vlq-api-workflow-step__line::after {
    animation-delay: 0.8s;
}

.vlq-api-workflow-step:nth-child(2) .vlq-api-workflow-step__line::after {
    animation-delay: 1.7s;
}

.vlq-api-workflow-step:nth-child(3) .vlq-api-workflow-step__line::after {
    animation-delay: 2.6s;
}

.vlq-api-workflow-step--active .vlq-api-workflow-step__number {
    background: linear-gradient( 180deg, #1765F2 0%, #0954E4 42%, #0147D1 100% );
    border-color: rgba(1, 71, 209, 0.96);
    color: #FFFFFF;
    box-shadow: 0 16px 30px rgba(1, 71, 209, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}


/* =========================================================
   STEP CARD
========================================================= */

.vlq-api-workflow-step__card {
    min-height: 198px;
    position: relative;
    overflow: hidden;
    padding: 24px 24px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: flex-start;
    gap: 22px;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 12px 30px rgba(15, 23, 42, 0.055);
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

    .vlq-api-workflow-step__card::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.052), transparent 72%);
        pointer-events: none;
    }

.vlq-api-workflow-step:hover .vlq-api-workflow-step__card {
    transform: translateY(-4px);
    border-color: #CBD7E8;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 22px 48px rgba(15, 23, 42, 0.095);
}

.vlq-api-workflow-step:hover .vlq-api-workflow-step__number {
    transform: translateY(-2px) scale(1.045);
    border-color: rgba(1, 71, 209, 0.30);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 16px 30px rgba(1, 71, 209, 0.15);
}

.vlq-api-workflow-step--active:hover .vlq-api-workflow-step__number {
    box-shadow: 0 20px 38px rgba(1, 71, 209, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}


/* =========================================================
   STEP ICON
========================================================= */

.vlq-api-workflow-step__icon {
    width: 72px;
    height: 72px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    color: #0147D1;
    background: #EEF4FF;
    border: 1px solid rgba(1, 71, 209, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 12px 24px rgba(1, 71, 209, 0.09);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 340ms ease;
}

    .vlq-api-workflow-step__icon svg {
        width: 40px;
        height: 40px;
        transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    }

.vlq-api-workflow-step:hover .vlq-api-workflow-step__icon {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(1, 71, 209, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 16px 30px rgba(1, 71, 209, 0.14);
}

    .vlq-api-workflow-step:hover .vlq-api-workflow-step__icon svg {
        transform: scale(1.06);
    }


/* =========================================================
   STEP CONTENT
========================================================= */

.vlq-api-workflow-step__content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

    .vlq-api-workflow-step__content h3 {
        margin: 0;
        color: #071633;
        font-size: 21px;
        font-weight: 760;
        line-height: 1.28;
        letter-spacing: -0.034em;
    }

    .vlq-api-workflow-step__content p {
        max-width: 700px;
        margin: 12px 0 0;
        color: #596882;
        font-size: 14px;
        font-weight: 430;
        line-height: 1.68;
        letter-spacing: -0.006em;
    }


/* =========================================================
   INLINE CODE CHIP
========================================================= */

.vlq-api-workflow-step__code {
    width: fit-content;
    max-width: 100%;
    min-height: 38px;
    margin-top: 17px;
    padding: 0 12px 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
    background: linear-gradient( 180deg, #FFFFFF 0%, #FAFCFF 100% );
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 8px 18px rgba(15, 23, 42, 0.034);
}

    .vlq-api-workflow-step__code span {
        min-height: 24px;
        padding: 0 9px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #EEF4FF;
        color: #0147D1;
        font-size: 10px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vlq-api-workflow-step__code code {
        color: #071633;
        font-size: 12.5px;
        font-weight: 680;
        line-height: 1.35;
        letter-spacing: -0.012em;
        font-family: "Geist", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }


/* =========================================================
   RIGHT PREVIEW PANEL
========================================================= */

.vlq-api-workflow__preview {
    position: sticky;
    top: 104px;
    overflow: hidden;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 255, 1) 100% );
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 18px 46px rgba(15, 23, 42, 0.085);
    opacity: 0;
    transform: translateX(20px) translateY(14px);
    animation: vlqApiWorkflowPreviewIn 920ms cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
}

    .vlq-api-workflow__preview::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -110px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.065), transparent 72%);
        pointer-events: none;
    }


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

.vlq-api-workflow-preview__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

    .vlq-api-workflow-preview__header p {
        margin: 0 0 8px;
        color: #60708C;
        font-size: 10px;
        font-weight: 780;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vlq-api-workflow-preview__header h3 {
        margin: 0;
        color: #071633;
        font-size: 26px;
        font-weight: 780;
        line-height: 1.2;
        letter-spacing: -0.042em;
    }

    .vlq-api-workflow-preview__header > span {
        min-height: 32px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(1, 71, 209, 0.16);
        background: #EEF4FF;
        color: #0147D1;
        font-size: 10px;
        font-weight: 780;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        white-space: nowrap;
    }


/* =========================================================
   RESPONSE CONSOLE
========================================================= */

.vlq-api-workflow-preview__console {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: linear-gradient( 180deg, #071225 0%, #09182D 100% );
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vlq-api-workflow-preview__console-row {
    min-height: 58px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

    .vlq-api-workflow-preview__console-row:last-child {
        border-bottom: 0;
    }

    .vlq-api-workflow-preview__console-row span {
        color: rgba(255, 255, 255, 0.54);
        font-size: 11px;
        font-weight: 760;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .vlq-api-workflow-preview__console-row strong {
        min-width: 0;
        color: rgba(255, 255, 255, 0.94);
        font-size: 12.8px;
        font-weight: 650;
        line-height: 1.5;
        letter-spacing: -0.01em;
        word-break: break-word;
        font-family: "Geist", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }

        .vlq-api-workflow-preview__console-row strong.is-green {
            color: #A7F3D0;
        }


/* =========================================================
   DELIVERY CARDS
========================================================= */

.vlq-api-workflow-preview__delivery {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.vlq-api-workflow-preview__delivery-card {
    min-height: 88px;
    padding: 16px 16px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 10px 22px rgba(15, 23, 42, 0.045);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 340ms ease;
}

    .vlq-api-workflow-preview__delivery-card:hover {
        transform: translateY(-2px);
        border-color: #CBD7E8;
        box-shadow: 0 2px 4px rgba(15, 23, 42, 0.035), 0 16px 30px rgba(15, 23, 42, 0.075);
    }

.vlq-api-workflow-preview__delivery-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #0147D1;
    background: #EEF4FF;
    border: 1px solid rgba(1, 71, 209, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(1, 71, 209, 0.08);
}

    .vlq-api-workflow-preview__delivery-icon svg {
        width: 26px;
        height: 26px;
    }

.vlq-api-workflow-preview__delivery-card strong {
    display: block;
    color: #071633;
    font-size: 14px;
    font-weight: 730;
    line-height: 1.35;
    letter-spacing: -0.014em;
}

.vlq-api-workflow-preview__delivery-card span {
    display: block;
    margin-top: 5px;
    color: #596882;
    font-size: 12.5px;
    font-weight: 430;
    line-height: 1.45;
    letter-spacing: -0.004em;
}


/* =========================================================
   PREVIEW NOTE
========================================================= */

.vlq-api-workflow-preview__note {
    min-height: 60px;
    margin-top: 18px;
    padding: 15px 16px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 15px;
    border: 1px solid rgba(8, 155, 83, 0.20);
    background: linear-gradient( 135deg, rgba(239, 250, 245, 1) 0%, rgba(255, 255, 255, 1) 78% );
    color: #315066;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.5;
    letter-spacing: -0.006em;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 10px 22px rgba(8, 155, 83, 0.07);
}

    .vlq-api-workflow-preview__note span {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
        border-radius: 50%;
        background: #089B53;
        box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
    }


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vlqApiWorkflowHeaderIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes vlqApiWorkflowStepIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes vlqApiWorkflowPreviewIn {
    from {
        opacity: 0;
        transform: translateX(20px) translateY(14px);
    }

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

@keyframes vlqApiWorkflowRailFlow {
    0% {
        top: -46px;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    72% {
        opacity: 1;
    }

    100% {
        top: calc(100% + 46px);
        opacity: 0;
    }
}


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

@media (max-width: 1120px) {
    .vlq-api-workflow__stage {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vlq-api-workflow__preview {
        position: relative;
        top: auto;
        max-width: 720px;
    }
}

@media (max-width: 820px) {
    .vlq-api-workflow__inner {
        padding: 72px 20px 76px;
    }

    .vlq-api-workflow__header {
        margin-bottom: 42px;
    }

    .vlq-api-workflow__title {
        font-size: clamp(32px, 7vw, 44px);
    }

    .vlq-api-workflow__subtitle {
        font-size: 15.5px;
    }

    .vlq-api-workflow-step__card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vlq-api-workflow-step__content p {
        max-width: none;
    }
}

@media (max-width: 680px) {
    .vlq-api-workflow-step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vlq-api-workflow-step__rail {
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
    }

    .vlq-api-workflow-step__line {
        width: 100%;
        height: 2px;
        min-height: 2px;
        margin-top: 0;
        background: linear-gradient( 90deg, rgba(1, 71, 209, 0.24) 0%, rgba(1, 71, 209, 0.10) 54%, rgba(1, 71, 209, 0.03) 100% );
    }

        .vlq-api-workflow-step__line::after {
            top: 0;
            left: -46px;
            width: 46px;
            height: 2px;
            background: linear-gradient( 90deg, transparent 0%, rgba(96, 165, 250, 0.24) 20%, rgba(1, 71, 209, 0.92) 60%, transparent 100% );
            animation-name: vlqApiWorkflowRailFlowHorizontal;
        }

    .vlq-api-workflow-preview__console-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px 16px;
    }
}

@media (max-width: 620px) {
    .vlq-api-workflow__inner {
        padding: 62px 18px 66px;
    }

    .vlq-api-workflow__eyebrow {
        max-width: 100%;
    }

        .vlq-api-workflow__eyebrow strong {
            font-size: 10.5px;
        }

    .vlq-api-workflow__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.045em;
    }

    .vlq-api-workflow__subtitle {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.62;
    }

    .vlq-api-workflow-step__number {
        width: 48px;
        height: 48px;
    }

    .vlq-api-workflow-step__card {
        min-height: auto;
        padding: 22px 20px;
    }

    .vlq-api-workflow-step__icon {
        width: 64px;
        height: 64px;
    }

        .vlq-api-workflow-step__icon svg {
            width: 36px;
            height: 36px;
        }

    .vlq-api-workflow-step__content h3 {
        font-size: 19px;
    }

    .vlq-api-workflow-step__content p {
        font-size: 13.5px;
    }

    .vlq-api-workflow-step__code {
        width: 100%;
        min-height: auto;
        padding: 10px 12px;
        align-items: flex-start;
        flex-direction: column;
        border-radius: 14px;
    }

    .vlq-api-workflow__preview {
        padding: 22px 20px;
    }

    .vlq-api-workflow-preview__header {
        flex-direction: column;
    }

        .vlq-api-workflow-preview__header h3 {
            font-size: 23px;
        }

    .vlq-api-workflow-preview__delivery-card {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: flex-start;
    }

    .vlq-api-workflow-preview__note {
        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE RAIL ANIMATION
========================================================= */

@keyframes vlqApiWorkflowRailFlowHorizontal {
    0% {
        left: -46px;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    72% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 46px);
        opacity: 0;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .vlq-api-workflow *,
    .vlq-api-workflow *::before,
    .vlq-api-workflow *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
/* =========================================================
   SECTION 4 — API INTEGRATIONS
   Designed to connect with credential-heavy systems
========================================================= */

.vlq-api-integrations {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.045), transparent 28%), radial-gradient(circle at 88% 82%, rgba(8, 155, 83, 0.035), transparent 24%), #F8FAFC;
    border-top: 1px solid #E8EDF5;
    font-family: inherit;
}

.vlq-api-integrations__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 24px 94px;
    position: relative;
    z-index: 1;
}


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

.vlq-api-integrations__header {
    max-width: 940px;
    margin: 0 auto 58px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiIntegrationsHeaderIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.vlq-api-integrations__eyebrow {
    width: fit-content;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    border: 1px solid rgba(1, 71, 209, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0147D1;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 10px 22px rgba(15, 23, 42, 0.045);
}

    .vlq-api-integrations__eyebrow span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #089B53;
        box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
    }

    .vlq-api-integrations__eyebrow strong {
        font-size: 11px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

.vlq-api-integrations__title {
    margin: 0;
    color: #071633;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

    .vlq-api-integrations__title span {
        display: block;
        margin-top: 4px;
        color: #0147D1;
    }

.vlq-api-integrations__subtitle {
    max-width: 880px;
    margin: 20px auto 0;
    color: #596882;
    font-size: 16px;
    font-weight: 430;
    line-height: 1.65;
    letter-spacing: -0.008em;
}


/* =========================================================
   MAIN STAGE
========================================================= */

.vlq-api-integrations__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(470px, 540px);
    align-items: start;
    gap: 30px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.vlq-api-integrations__content {
    min-width: 0;
}


/* =========================================================
   STRATEGIC MESSAGE CARD
========================================================= */

.vlq-api-integrations-message {
    min-height: 184px;
    position: relative;
    overflow: hidden;
    padding: 28px 28px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: flex-start;
    gap: 22px;
    border-radius: 20px;
    background: linear-gradient( 135deg, rgba(238, 244, 255, 0.86) 0%, rgba(255, 255, 255, 1) 58% );
    border: 1px solid rgba(1, 71, 209, 0.24);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 18px 42px rgba(1, 71, 209, 0.09);
    opacity: 0;
    transform: translateY(18px);
    animation: vlqApiIntegrationsMessageIn 820ms cubic-bezier(0.22, 1, 0.36, 1) 160ms forwards;
}

    .vlq-api-integrations-message::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.08), transparent 72%);
        pointer-events: none;
    }

    .vlq-api-integrations-message::after {
        content: "";
        position: absolute;
        top: 0;
        left: 28px;
        right: 28px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient( 90deg, transparent 0%, rgba(1, 71, 209, 0.76) 50%, transparent 100% );
    }

.vlq-api-integrations-message__icon {
    width: 76px;
    height: 76px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #0147D1;
    background: #FFFFFF;
    border: 1px solid rgba(1, 71, 209, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 14px 28px rgba(1, 71, 209, 0.12);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 340ms ease;
}

    .vlq-api-integrations-message__icon svg {
        width: 42px;
        height: 42px;
        transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    }

.vlq-api-integrations-message:hover .vlq-api-integrations-message__icon {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(1, 71, 209, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 18px 36px rgba(1, 71, 209, 0.17);
}

    .vlq-api-integrations-message:hover .vlq-api-integrations-message__icon svg {
        transform: scale(1.06);
    }

.vlq-api-integrations-message__copy {
    position: relative;
    z-index: 1;
}

    .vlq-api-integrations-message__copy h3 {
        margin: 0;
        color: #071633;
        font-size: 24px;
        font-weight: 780;
        line-height: 1.22;
        letter-spacing: -0.042em;
    }

    .vlq-api-integrations-message__copy p {
        max-width: 760px;
        margin: 14px 0 0;
        color: #596882;
        font-size: 14.5px;
        font-weight: 430;
        line-height: 1.68;
        letter-spacing: -0.006em;
    }


/* =========================================================
   USE CASE GRID
========================================================= */

.vlq-api-integrations__use-cases {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.vlq-api-integration-use-case {
    min-height: 124px;
    position: relative;
    overflow: hidden;
    padding: 18px 18px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 10px 24px rgba(15, 23, 42, 0.05);
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiIntegrationUseCaseIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 360ms ease;
}

    .vlq-api-integration-use-case:nth-child(1) {
        animation-delay: 240ms;
    }

    .vlq-api-integration-use-case:nth-child(2) {
        animation-delay: 310ms;
    }

    .vlq-api-integration-use-case:nth-child(3) {
        animation-delay: 380ms;
    }

    .vlq-api-integration-use-case:nth-child(4) {
        animation-delay: 450ms;
    }

    .vlq-api-integration-use-case:nth-child(5) {
        animation-delay: 520ms;
    }

    .vlq-api-integration-use-case:nth-child(6) {
        animation-delay: 590ms;
    }

    .vlq-api-integration-use-case::before {
        content: "";
        position: absolute;
        top: -88px;
        right: -88px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.045), transparent 72%);
        pointer-events: none;
    }

    .vlq-api-integration-use-case:hover {
        transform: translateY(-4px);
        border-color: #CBD7E8;
        box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 18px 38px rgba(15, 23, 42, 0.09);
    }

.vlq-api-integration-use-case__icon {
    width: 54px;
    height: 54px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #0147D1;
    background: #EEF4FF;
    border: 1px solid rgba(1, 71, 209, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 10px 20px rgba(1, 71, 209, 0.08);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 320ms ease;
}

    .vlq-api-integration-use-case__icon svg {
        width: 29px;
        height: 29px;
        transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
    }

.vlq-api-integration-use-case:hover .vlq-api-integration-use-case__icon {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(1, 71, 209, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 14px 26px rgba(1, 71, 209, 0.13);
}

    .vlq-api-integration-use-case:hover .vlq-api-integration-use-case__icon svg {
        transform: scale(1.06);
    }

.vlq-api-integration-use-case h4 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #071633;
    font-size: 15px;
    font-weight: 740;
    line-height: 1.35;
    letter-spacing: -0.022em;
}

.vlq-api-integration-use-case p {
    position: relative;
    z-index: 1;
    margin: 6px 0 0;
    color: #596882;
    font-size: 13px;
    font-weight: 430;
    line-height: 1.52;
    letter-spacing: -0.004em;
}


/* =========================================================
   RIGHT ARCHITECTURE PANEL
========================================================= */

.vlq-api-integrations__architecture {
    position: sticky;
    top: 104px;
    overflow: hidden;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 255, 1) 100% );
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 18px 46px rgba(15, 23, 42, 0.085);
    opacity: 0;
    transform: translateX(20px) translateY(14px);
    animation: vlqApiIntegrationsArchitectureIn 920ms cubic-bezier(0.22, 1, 0.36, 1) 320ms forwards;
}

    .vlq-api-integrations__architecture::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -110px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.065), transparent 72%);
        pointer-events: none;
    }


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

.vlq-api-integrations-architecture__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

    .vlq-api-integrations-architecture__header p {
        margin: 0 0 8px;
        color: #60708C;
        font-size: 10px;
        font-weight: 780;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vlq-api-integrations-architecture__header h3 {
        margin: 0;
        color: #071633;
        font-size: 26px;
        font-weight: 780;
        line-height: 1.2;
        letter-spacing: -0.042em;
    }

    .vlq-api-integrations-architecture__header > span {
        min-height: 32px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(1, 71, 209, 0.16);
        background: #EEF4FF;
        color: #0147D1;
        font-size: 10px;
        font-weight: 780;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        white-space: nowrap;
    }


/* =========================================================
   CONNECTED MAP
========================================================= */

.vlq-api-integrations-map {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    min-height: 458px;
    display: grid;
    grid-template-columns: minmax(96px, 1fr) 34px minmax(148px, 1.14fr) 34px minmax(96px, 1fr);
    align-items: center;
    gap: 12px;
}


/* =========================================================
   SOURCE + OUTPUT NODE STACKS
========================================================= */

.vlq-api-integrations-map__sources,
.vlq-api-integrations-map__outputs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vlq-api-source-node,
.vlq-api-output-node {
    min-height: 78px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 9px 20px rgba(15, 23, 42, 0.042);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 340ms ease;
}

    .vlq-api-source-node:hover,
    .vlq-api-output-node:hover {
        transform: translateY(-2px);
        border-color: #CBD7E8;
        box-shadow: 0 2px 4px rgba(15, 23, 42, 0.035), 0 14px 28px rgba(15, 23, 42, 0.07);
    }

    .vlq-api-source-node strong,
    .vlq-api-output-node strong {
        display: block;
        color: #0147D1;
        font-size: 13px;
        font-weight: 780;
        line-height: 1.2;
        letter-spacing: -0.012em;
        text-transform: uppercase;
    }

    .vlq-api-output-node strong {
        color: #089B53;
    }

    .vlq-api-source-node span,
    .vlq-api-output-node span {
        display: block;
        margin-top: 6px;
        color: #596882;
        font-size: 11.5px;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: -0.004em;
    }


/* =========================================================
   CONNECTOR TRACKS
========================================================= */

.vlq-api-integrations-map__connector {
    height: 310px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .vlq-api-integrations-map__connector span {
        width: 2px;
        height: 100%;
        display: block;
        border-radius: 999px;
        background: linear-gradient( 180deg, rgba(1, 71, 209, 0.03) 0%, rgba(1, 71, 209, 0.18) 20%, rgba(1, 71, 209, 0.26) 50%, rgba(1, 71, 209, 0.18) 80%, rgba(1, 71, 209, 0.03) 100% );
    }

    .vlq-api-integrations-map__connector i {
        position: absolute;
        top: -22px;
        left: 50%;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        transform: translateX(-50%);
        background: radial-gradient( circle, #FFFFFF 0 28%, #93C5FD 30%, #2563EB 72%, #0147D1 100% );
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10), 0 0 18px rgba(37, 99, 235, 0.65), 0 0 34px rgba(1, 71, 209, 0.30);
        animation: vlqApiMapFlowDown 5.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

.vlq-api-integrations-map__connector--right i {
    background: radial-gradient( circle, #FFFFFF 0 28%, #A7F3D0 30%, #10B981 72%, #089B53 100% );
    box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10), 0 0 18px rgba(8, 155, 83, 0.55), 0 0 34px rgba(8, 155, 83, 0.24);
    animation-delay: 1.8s;
}


/* =========================================================
   CORE BLOCK
========================================================= */

.vlq-api-integrations-map__core {
    min-height: 288px;
    position: relative;
    overflow: hidden;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 22px;
    border: 1px solid rgba(1, 71, 209, 0.28);
    background: radial-gradient(circle at 78% 16%, rgba(59, 130, 246, 0.13), transparent 34%), linear-gradient( 180deg, #071225 0%, #0A1730 100% );
    box-shadow: 0 20px 44px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

    .vlq-api-integrations-map__core::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 36px 36px;
        opacity: 0.28;
        pointer-events: none;
    }

.vlq-api-integrations-map__core-badge {
    width: fit-content;
    position: relative;
    z-index: 1;
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.24);
    background: rgba(59, 130, 246, 0.16);
    color: #BFDBFE;
    font-size: 10px;
    font-weight: 780;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vlq-api-integrations-map__core h4 {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 780;
    line-height: 1.2;
    letter-spacing: -0.042em;
}

.vlq-api-integrations-map__core ul {
    list-style: none;
    position: relative;
    z-index: 1;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.vlq-api-integrations-map__core li {
    min-height: 42px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.008em;
}


/* =========================================================
   ARCHITECTURE NOTE
========================================================= */

.vlq-api-integrations-architecture__note {
    min-height: 68px;
    margin-top: 22px;
    padding: 16px 17px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 15px;
    border: 1px solid rgba(8, 155, 83, 0.20);
    background: linear-gradient( 135deg, rgba(239, 250, 245, 1) 0%, rgba(255, 255, 255, 1) 78% );
    color: #315066;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.52;
    letter-spacing: -0.006em;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 10px 22px rgba(8, 155, 83, 0.07);
}

    .vlq-api-integrations-architecture__note span {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
        border-radius: 50%;
        background: #089B53;
        box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
    }


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vlqApiIntegrationsHeaderIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes vlqApiIntegrationsMessageIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes vlqApiIntegrationUseCaseIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes vlqApiIntegrationsArchitectureIn {
    from {
        opacity: 0;
        transform: translateX(20px) translateY(14px);
    }

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

@keyframes vlqApiMapFlowDown {
    0% {
        top: -22px;
        opacity: 0;
        transform: translateX(-50%) scale(0.72);
    }

    14% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    84% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    100% {
        top: calc(100% + 22px);
        opacity: 0;
        transform: translateX(-50%) scale(0.82);
    }
}


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

@media (max-width: 1140px) {
    .vlq-api-integrations__stage {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vlq-api-integrations__architecture {
        position: relative;
        top: auto;
        max-width: 760px;
    }
}

@media (max-width: 820px) {
    .vlq-api-integrations__inner {
        padding: 72px 20px 76px;
    }

    .vlq-api-integrations__header {
        margin-bottom: 42px;
    }

    .vlq-api-integrations__title {
        font-size: clamp(32px, 7vw, 44px);
    }

    .vlq-api-integrations__subtitle {
        font-size: 15.5px;
    }

    .vlq-api-integrations-message {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 720px) {
    .vlq-api-integrations__use-cases {
        grid-template-columns: 1fr;
    }

    .vlq-api-integrations-map {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vlq-api-integrations-map__sources,
    .vlq-api-integrations-map__outputs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .vlq-api-integrations-map__connector {
        width: 100%;
        height: 34px;
    }

        .vlq-api-integrations-map__connector span {
            width: 100%;
            height: 2px;
            background: linear-gradient( 90deg, rgba(1, 71, 209, 0.03) 0%, rgba(1, 71, 209, 0.18) 20%, rgba(1, 71, 209, 0.26) 50%, rgba(1, 71, 209, 0.18) 80%, rgba(1, 71, 209, 0.03) 100% );
        }

        .vlq-api-integrations-map__connector i {
            top: 50%;
            left: -22px;
            transform: translateY(-50%);
            animation-name: vlqApiMapFlowRight;
        }
}

@media (max-width: 620px) {
    .vlq-api-integrations__inner {
        padding: 62px 18px 66px;
    }

    .vlq-api-integrations__eyebrow {
        max-width: 100%;
    }

        .vlq-api-integrations__eyebrow strong {
            font-size: 10.5px;
        }

    .vlq-api-integrations__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.045em;
    }

    .vlq-api-integrations__subtitle {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.62;
    }

    .vlq-api-integrations-message {
        padding: 22px 20px;
    }

    .vlq-api-integrations-message__icon {
        width: 68px;
        height: 68px;
    }

        .vlq-api-integrations-message__icon svg {
            width: 38px;
            height: 38px;
        }

    .vlq-api-integrations-message__copy h3 {
        font-size: 21px;
    }

    .vlq-api-integrations-message__copy p {
        font-size: 14px;
    }

    .vlq-api-integration-use-case {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: flex-start;
    }

    .vlq-api-integrations__architecture {
        padding: 22px 20px;
    }

    .vlq-api-integrations-architecture__header {
        flex-direction: column;
    }

        .vlq-api-integrations-architecture__header h3 {
            font-size: 23px;
        }

    .vlq-api-integrations-map__sources,
    .vlq-api-integrations-map__outputs {
        grid-template-columns: 1fr;
    }

    .vlq-api-integrations-map__core {
        min-height: auto;
        padding: 22px 18px;
    }

        .vlq-api-integrations-map__core h4 {
            font-size: 22px;
        }

        .vlq-api-integrations-map__core ul {
            grid-template-columns: 1fr;
        }

    .vlq-api-integrations-architecture__note {
        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE CONNECTOR ANIMATION
========================================================= */

@keyframes vlqApiMapFlowRight {
    0% {
        left: -22px;
        opacity: 0;
        transform: translateY(-50%) scale(0.72);
    }

    14% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    84% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    100% {
        left: calc(100% + 22px);
        opacity: 0;
        transform: translateY(-50%) scale(0.82);
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .vlq-api-integrations *,
    .vlq-api-integrations *::before,
    .vlq-api-integrations *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
/* =========================================================
   SECTION 5 — API FAQs
   Clear answers for technical integration planning
========================================================= */

.vlq-api-faq {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 14% 14%, rgba(37, 99, 235, 0.045), transparent 28%), radial-gradient(circle at 88% 82%, rgba(8, 155, 83, 0.035), transparent 24%), #FFFFFF;
    border-top: 1px solid #E8EDF5;
    font-family: inherit;
}

.vlq-api-faq__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 24px 94px;
    position: relative;
    z-index: 1;
}


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

.vlq-api-faq__header {
    max-width: 940px;
    margin: 0 auto 58px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiFaqHeaderIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.vlq-api-faq__eyebrow {
    width: fit-content;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    border: 1px solid rgba(1, 71, 209, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0147D1;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 10px 22px rgba(15, 23, 42, 0.045);
}

    .vlq-api-faq__eyebrow span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #089B53;
        box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
    }

    .vlq-api-faq__eyebrow strong {
        font-size: 11px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

.vlq-api-faq__title {
    margin: 0;
    color: #071633;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

    .vlq-api-faq__title span {
        display: block;
        margin-top: 4px;
        color: #0147D1;
    }

.vlq-api-faq__subtitle {
    max-width: 880px;
    margin: 20px auto 0;
    color: #596882;
    font-size: 16px;
    font-weight: 430;
    line-height: 1.65;
    letter-spacing: -0.008em;
}


/* =========================================================
   FAQ GRID
========================================================= */

.vlq-api-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
    align-items: start;
    gap: 26px;
}


/* =========================================================
   FAQ LIST
========================================================= */

.vlq-api-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.vlq-api-faq-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 10px 28px rgba(15, 23, 42, 0.055);
    opacity: 0;
    transform: translateY(16px);
    animation: vlqApiFaqItemIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

    .vlq-api-faq-item:nth-child(1) {
        animation-delay: 180ms;
    }

    .vlq-api-faq-item:nth-child(2) {
        animation-delay: 250ms;
    }

    .vlq-api-faq-item:nth-child(3) {
        animation-delay: 320ms;
    }

    .vlq-api-faq-item:nth-child(4) {
        animation-delay: 390ms;
    }

    .vlq-api-faq-item:nth-child(5) {
        animation-delay: 460ms;
    }

    .vlq-api-faq-item:nth-child(6) {
        animation-delay: 530ms;
    }

    .vlq-api-faq-item:nth-child(7) {
        animation-delay: 600ms;
    }

    .vlq-api-faq-item::before {
        content: "";
        position: absolute;
        top: -92px;
        right: -92px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.045), transparent 72%);
        pointer-events: none;
    }

    .vlq-api-faq-item:hover {
        transform: translateY(-3px);
        border-color: #CBD7E8;
        box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 18px 40px rgba(15, 23, 42, 0.09);
    }

    .vlq-api-faq-item[open] {
        border-color: rgba(1, 71, 209, 0.26);
        box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 18px 40px rgba(1, 71, 209, 0.09);
    }


/* =========================================================
   FAQ QUESTION
========================================================= */

.vlq-api-faq-item__question {
    list-style: none;
    cursor: pointer;
    min-height: 84px;
    padding: 22px 22px 22px 24px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #071633;
    font-size: 17px;
    font-weight: 720;
    line-height: 1.35;
    letter-spacing: -0.022em;
}

    .vlq-api-faq-item__question::-webkit-details-marker {
        display: none;
    }

    .vlq-api-faq-item__question::marker {
        display: none;
    }

.vlq-api-faq-item__toggle {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #0147D1;
    background: #EEF4FF;
    border: 1px solid rgba(1, 71, 209, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(1, 71, 209, 0.08);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, background-color 260ms ease, box-shadow 320ms ease;
}

    .vlq-api-faq-item__toggle svg {
        width: 20px;
        height: 20px;
        transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    }

.vlq-api-faq-item:hover .vlq-api-faq-item__toggle {
    transform: translateY(-1px);
    border-color: rgba(1, 71, 209, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 12px 24px rgba(1, 71, 209, 0.12);
}

.vlq-api-faq-item[open] .vlq-api-faq-item__toggle {
    color: #FFFFFF;
    background: linear-gradient( 180deg, #1765F2 0%, #0954E4 42%, #0147D1 100% );
    border-color: rgba(1, 71, 209, 0.96);
    box-shadow: 0 12px 24px rgba(1, 71, 209, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

    .vlq-api-faq-item[open] .vlq-api-faq-item__toggle svg {
        transform: rotate(45deg);
    }


/* =========================================================
   FAQ ANSWER
========================================================= */

.vlq-api-faq-item__answer {
    position: relative;
    z-index: 1;
    padding: 0 24px 24px;
    max-width: 920px;
}

    .vlq-api-faq-item__answer p {
        margin: 0;
        padding-top: 18px;
        border-top: 1px solid #EEF2F7;
        color: #596882;
        font-size: 14.5px;
        font-weight: 430;
        line-height: 1.68;
        letter-spacing: -0.006em;
    }


/* =========================================================
   RIGHT API ACCESS PANEL
========================================================= */

.vlq-api-faq__aside {
    position: sticky;
    top: 104px;
    overflow: hidden;
    padding: 30px 28px 28px;
    border-radius: 20px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 255, 1) 100% );
    border: 1px solid #DDE5EE;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035), 0 16px 40px rgba(15, 23, 42, 0.08);
    opacity: 0;
    transform: translateX(18px) translateY(14px);
    animation: vlqApiFaqAsideIn 920ms cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
}

    .vlq-api-faq__aside::before {
        content: "";
        position: absolute;
        top: -110px;
        right: -110px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(1, 71, 209, 0.06), transparent 72%);
        pointer-events: none;
    }

.vlq-api-faq-aside__badge {
    width: fit-content;
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 31px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(1, 71, 209, 0.16);
    background: #F3F7FF;
    color: #0147D1;
    font-size: 10.5px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

    .vlq-api-faq-aside__badge span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #089B53;
        box-shadow: 0 0 0 4px rgba(8, 155, 83, 0.10);
    }

.vlq-api-faq__aside h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #071633;
    font-size: 28px;
    font-weight: 780;
    line-height: 1.16;
    letter-spacing: -0.045em;
}

.vlq-api-faq__aside > p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: #596882;
    font-size: 14.5px;
    font-weight: 430;
    line-height: 1.68;
    letter-spacing: -0.006em;
}

    .vlq-api-faq__aside > p strong {
        color: #071633;
        font-weight: 720;
    }


/* =========================================================
   API PLANNING ROUTES
========================================================= */

.vlq-api-faq-aside__routes {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vlq-api-faq-route {
    min-height: 98px;
    padding: 16px 16px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-radius: 15px;
    border: 1px solid #E2E8F0;
    background: linear-gradient( 180deg, #FFFFFF 0%, #FAFCFF 100% );
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 8px 18px rgba(15, 23, 42, 0.034);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 340ms ease;
}

    .vlq-api-faq-route:hover {
        transform: translateY(-2px);
        border-color: #CBD7E8;
        box-shadow: 0 2px 4px rgba(15, 23, 42, 0.035), 0 14px 28px rgba(15, 23, 42, 0.07);
    }

.vlq-api-faq-route__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #0147D1;
    background: #EEF4FF;
    border: 1px solid rgba(1, 71, 209, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(1, 71, 209, 0.08);
}

    .vlq-api-faq-route__icon svg {
        width: 26px;
        height: 26px;
    }

.vlq-api-faq-route span {
    display: block;
    color: #0147D1;
    font-size: 11px;
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.vlq-api-faq-route strong {
    display: block;
    margin-top: 8px;
    color: #071633;
    font-size: 14px;
    font-weight: 720;
    line-height: 1.45;
    letter-spacing: -0.014em;
}


/* =========================================================
   SUPPORT STRIP
========================================================= */

.vlq-api-faq-aside__support {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    min-height: 98px;
    padding: 17px 17px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-radius: 15px;
    border: 1px solid rgba(8, 155, 83, 0.20);
    background: linear-gradient( 135deg, rgba(239, 250, 245, 1) 0%, rgba(255, 255, 255, 1) 78% );
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.022), 0 10px 22px rgba(8, 155, 83, 0.07);
}

.vlq-api-faq-aside__support-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #089B53;
    background: rgba(8, 155, 83, 0.10);
    border: 1px solid rgba(8, 155, 83, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(8, 155, 83, 0.08);
}

    .vlq-api-faq-aside__support-icon svg {
        width: 26px;
        height: 26px;
    }

.vlq-api-faq-aside__support strong {
    display: block;
    color: #071633;
    font-size: 14px;
    font-weight: 730;
    line-height: 1.35;
    letter-spacing: -0.014em;
}

.vlq-api-faq-aside__support span {
    display: block;
    margin-top: 5px;
    color: #52617D;
    font-size: 12.5px;
    font-weight: 430;
    line-height: 1.48;
    letter-spacing: -0.004em;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vlqApiFaqHeaderIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes vlqApiFaqItemIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes vlqApiFaqAsideIn {
    from {
        opacity: 0;
        transform: translateX(18px) translateY(14px);
    }

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


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

@media (max-width: 1080px) {
    .vlq-api-faq__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vlq-api-faq__aside {
        position: relative;
        top: auto;
        max-width: 760px;
    }
}

@media (max-width: 820px) {
    .vlq-api-faq__inner {
        padding: 72px 20px 76px;
    }

    .vlq-api-faq__header {
        margin-bottom: 42px;
    }

    .vlq-api-faq__title {
        font-size: clamp(32px, 7vw, 44px);
    }

    .vlq-api-faq__subtitle {
        font-size: 15.5px;
    }

    .vlq-api-faq__aside h3 {
        font-size: 25px;
    }
}

@media (max-width: 620px) {
    .vlq-api-faq__inner {
        padding: 62px 18px 66px;
    }

    .vlq-api-faq__eyebrow {
        max-width: 100%;
    }

        .vlq-api-faq__eyebrow strong {
            font-size: 10.5px;
        }

    .vlq-api-faq__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.045em;
    }

    .vlq-api-faq__subtitle {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.62;
    }

    .vlq-api-faq-item__question {
        min-height: auto;
        padding: 20px 18px;
        align-items: flex-start;
        font-size: 16px;
        gap: 16px;
    }

    .vlq-api-faq-item__toggle {
        width: 40px;
        height: 40px;
    }

    .vlq-api-faq-item__answer {
        padding: 0 18px 20px;
    }

        .vlq-api-faq-item__answer p {
            font-size: 14px;
        }

    .vlq-api-faq__aside {
        padding: 24px 20px 22px;
    }

        .vlq-api-faq__aside h3 {
            font-size: 23px;
            line-height: 1.2;
        }

        .vlq-api-faq__aside > p {
            font-size: 14px;
        }

    .vlq-api-faq-route,
    .vlq-api-faq-aside__support {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: flex-start;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .vlq-api-faq *,
    .vlq-api-faq *::before,
    .vlq-api-faq *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
