/* =========================================================
   VISTAINFO OTC
   MAIN DESKTOP CSS
========================================================= */

:root {
    --vista-bg: #061323;
    --vista-bg-2: #081a2f;
    --vista-bg-3: #0b2038;
    --vista-card: rgba(13, 35, 58, 0.72);
    --vista-card-2: rgba(9, 27, 47, 0.9);

    --vista-blue: #20a8ff;
    --vista-blue-2: #087ee8;
    --vista-cyan: #48d7ff;
    --vista-green: #27d7a0;

    --vista-white: #ffffff;
    --vista-text: #e7f0f8;
    --vista-muted: #9aafc2;
    --vista-border: rgba(125, 183, 225, 0.16);

    --vista-shadow: 0 25px 70px rgba(0, 0, 0, 0.30);

    --vista-radius: 22px;
    --vista-transition: 0.35s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body.vista-otc-page {
    margin: 0;
    padding: 0;
    background: var(--vista-bg);
    color: var(--vista-text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

.vista-otc-page *,
.vista-otc-page *::before,
.vista-otc-page *::after {
    box-sizing: border-box;
}

.vista-otc-page a {
    text-decoration: none;
}

.vista-otc-page button,
.vista-otc-page input,
.vista-otc-page textarea {
    font-family: inherit;
}

.vista-otc-page img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.vista-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #04101e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.vista-page-loader.vista-loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.vista-loader-inner {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vista-loader-inner span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vista-loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(32, 168, 255, 0.15);
    border-top-color: var(--vista-blue);
    border-right-color: var(--vista-cyan);
    border-radius: 50%;
    animation: vistaLoaderSpin 1.1s linear infinite;
}

@keyframes vistaLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   HEADER
========================================================= */

.vista-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    padding: 16px 0;
    background: rgba(4, 17, 31, 0.70);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: all 0.35s ease;
}

.vista-header.vista-header-scrolled {
    padding: 10px 0;
    background: rgba(4, 17, 31, 0.94);
    border-bottom-color: var(--vista-border);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.20);
}

.vista-navbar {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.vista-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    flex-shrink: 0;
}

.vista-brand:hover {
    color: #fff;
}

.vista-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    background: linear-gradient(135deg, var(--vista-blue), #1678e8);
    box-shadow: 0 10px 30px rgba(32, 168, 255, 0.25);
}

.vista-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.vista-brand-text strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.vista-brand-text small {
    margin-top: 4px;
    color: #91a8bd;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.vista-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-left: auto;
}

.vista-nav-link {
    position: relative;
    color: #9db1c4;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--vista-transition);
}

.vista-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--vista-blue);
    transition: width var(--vista-transition);
}

.vista-nav-link:hover,
.vista-nav-link.active {
    color: #fff;
}

.vista-nav-link:hover::after,
.vista-nav-link.active::after {
    width: 100%;
}


/* =========================================================
   HEADER BUTTON
========================================================= */

.vista-header-btn {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: rgba(32, 168, 255, 0.12);
    border: 1px solid rgba(32, 168, 255, 0.35);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all var(--vista-transition);
}

.vista-header-btn i {
    transition: transform var(--vista-transition);
}

.vista-header-btn:hover {
    color: #fff;
    background: var(--vista-blue);
    border-color: var(--vista-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32, 168, 255, 0.25);
}

.vista-header-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.vista-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--vista-border);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.vista-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.vista-menu-toggle.vista-menu-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vista-menu-toggle.vista-menu-active span:nth-child(2) {
    opacity: 0;
}

.vista-menu-toggle.vista-menu-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.vista-mobile-navigation {
    display: none;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.vista-intro-section {
    position: relative;
    min-height: 900px;
    padding: 170px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 40%, rgba(17, 120, 214, 0.15), transparent 32%),
        radial-gradient(circle at 15% 70%, rgba(22, 214, 185, 0.06), transparent 28%),
        var(--vista-bg);
}

.vista-grid-background {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(100, 170, 220, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 170, 220, 0.07) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

.vista-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.vista-glow-one {
    width: 350px;
    height: 350px;
    right: -100px;
    top: 100px;
    background: rgba(32, 168, 255, 0.10);
}

.vista-glow-two {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 50px;
    background: rgba(39, 215, 160, 0.07);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.vista-floating-card {
    position: absolute;
    z-index: 3;
    min-width: 215px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(10, 31, 52, 0.72);
    border: 1px solid rgba(111, 183, 227, 0.18);
    border-radius: 15px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.24);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: vistaFloat 5s ease-in-out infinite;
}

.vista-float-one {
    left: -20px;
    top: 59%;
}

.vista-float-two {
    right: -25px;
    top: 29%;
    animation-delay: -2.5s;
}

.vista-mini-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vista-blue);
    background: rgba(32,168,255,0.11);
}

.vista-floating-card small,
.vista-floating-card strong {
    display: block;
}

.vista-floating-card small {
    color: #7893aa;
    font-size: 9px;
    margin-bottom: 2px;
}

.vista-floating-card strong {
    color: #e9f3fa;
    font-size: 12px;
    font-weight: 700;
}

@keyframes vistaFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.vista-intro-content {
    position: relative;
    z-index: 4;
    max-width: 720px;
}

.vista-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    margin-bottom: 23px;
    border: 1px solid rgba(32,168,255,0.20);
    border-radius: 100px;
    color: #a8bfd1;
    background: rgba(32,168,255,0.06);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.vista-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vista-green);
    box-shadow: 0 0 0 5px rgba(39,215,160,0.08);
    animation: vistaPulse 2s infinite;
}

@keyframes vistaPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(39,215,160,0.08);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(39,215,160,0.02);
    }
}

.vista-intro-content h1 {
    margin: 0 0 24px;
    max-width: 760px;
    color: #fff;
    font-size: clamp(48px, 5.2vw, 78px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -3px;
}

.vista-intro-content h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #fff, #50caff);
    -webkit-background-clip: text;
    background-clip: text;
}

.vista-intro-lead {
    max-width: 680px;
    margin: 0 0 18px;
    color: #d9e7f2;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 600;
}

.vista-intro-description {
    max-width: 650px;
    margin: 0;
    color: var(--vista-muted);
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   INTRO BUTTONS
========================================================= */

.vista-intro-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 31px;
}

.vista-primary-btn,
.vista-secondary-btn {
    min-height: 52px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
    transition: all var(--vista-transition);
}

.vista-primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--vista-blue), var(--vista-blue-2));
    box-shadow: 0 14px 35px rgba(32,168,255,0.20);
}

.vista-primary-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(32,168,255,0.30);
}

.vista-primary-btn i,
.vista-secondary-btn i {
    transition: transform var(--vista-transition);
}

.vista-primary-btn:hover i {
    transform: translateX(4px);
}

.vista-secondary-btn {
    color: #dceaf5;
    border: 1px solid rgba(135, 186, 221, 0.20);
    background: rgba(255,255,255,0.04);
}

.vista-secondary-btn:hover {
    color: #fff;
    border-color: rgba(32,168,255,0.45);
    background: rgba(32,168,255,0.08);
    transform: translateY(-3px);
}

.vista-secondary-btn:hover i {
    transform: translateY(3px);
}


/* =========================================================
   TRUST ROW
========================================================= */

.vista-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.vista-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8198ac;
    font-size: 11px;
    font-weight: 600;
}

.vista-trust-item i {
    color: var(--vista-green);
    font-size: 12px;
}


/* =========================================================
   MARKET VISUAL
========================================================= */

.vista-market-visual {
    position: relative;
    width: 570px;
    height: 570px;
    max-width: 100%;
    margin-left: auto;
}

.vista-visual-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(49, 168, 237, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 315px;
    height: 315px;
    animation: vistaOrbitRotate 18s linear infinite;
}

.orbit-two {
    width: 430px;
    height: 430px;
    border-style: dashed;
    animation: vistaOrbitRotateReverse 28s linear infinite;
}

.orbit-three {
    width: 525px;
    height: 525px;
    opacity: 0.5;
    animation: vistaOrbitRotate 35s linear infinite;
}

@keyframes vistaOrbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes vistaOrbitRotateReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}


/* =========================================================
   CORE
========================================================= */

.vista-core-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 35% 25%, rgba(52,191,255,0.25), transparent 40%),
        linear-gradient(145deg, #102f4d, #071a2d);
    border: 1px solid rgba(85,190,245,0.35);
    box-shadow:
        0 0 70px rgba(32,168,255,0.12),
        inset 0 0 35px rgba(32,168,255,0.06);
    z-index: 4;
}

.vista-core-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(135deg, var(--vista-blue), #176bd5);
    box-shadow: 0 10px 30px rgba(32,168,255,0.28);
}

.vista-core-circle > span {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
}

.vista-core-circle > small {
    margin-top: 3px;
    color: #7eabc7;
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 700;
}


/* =========================================================
   MARKET NODES
========================================================= */

.vista-market-node {
    position: absolute;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(80,180,235,0.28);
    border-radius: 50%;
    color: #dff6ff;
    background: rgba(7, 29, 50, 0.92);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    z-index: 5;
    animation: vistaNodeFloat 4s ease-in-out infinite;
}

.vista-market-node i {
    font-size: 18px;
}

.node-one {
    left: 76px;
    top: 88px;
}

.node-two {
    right: 68px;
    top: 125px;
    animation-delay: -1s;
}

.node-three {
    right: 53px;
    bottom: 115px;
    animation-delay: -2s;
}

.node-four {
    left: 88px;
    bottom: 92px;
    animation-delay: -3s;
}

@keyframes vistaNodeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   CONNECTING LINES
========================================================= */

.vista-connection-line {
    position: absolute;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, transparent, rgba(46,177,246,0.45), transparent);
    z-index: 1;
}

.line-one {
    width: 190px;
    left: 115px;
    top: 125px;
    transform: rotate(29deg);
}

.line-two {
    width: 185px;
    right: 110px;
    top: 153px;
    transform: rotate(147deg);
}

.line-three {
    width: 210px;
    left: 118px;
    bottom: 137px;
    transform: rotate(-26deg);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.vista-scroll-indicator {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #7892a8;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.vista-scroll-indicator i {
    color: var(--vista-blue);
    animation: vistaScrollBounce 1.8s infinite;
}

@keyframes vistaScrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.vista-overview-section,
.vista-market-section,
.vista-risk-section,
.vista-contact-section,
.vista-faq-section {
    position: relative;
    padding: 120px 0;
    background: var(--vista-bg);
}

.vista-services-section,
.vista-process-section,
.vista-participants-section {
    position: relative;
    padding: 120px 0;
    background: #07182a;
}

.vista-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--vista-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vista-section-label span {
    width: 28px;
    height: 1px;
    display: inline-block;
    background: var(--vista-blue);
}

.vista-section-title {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.vista-section-text {
    max-width: 650px;
    margin-bottom: 17px;
    color: var(--vista-muted);
    font-size: 14px;
    line-height: 1.9;
}

.vista-section-heading {
    max-width: 800px;
    margin: 0 auto 55px;
}

.vista-section-heading .vista-section-title {
    margin-bottom: 18px;
}

.vista-section-heading > p {
    margin: 0 auto;
    color: var(--vista-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   OVERVIEW
========================================================= */

.vista-overview-points {
    margin-top: 28px;
}

.vista-overview-points > div,
.vista-risk-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
    color: #c7d9e7;
    font-size: 13px;
    font-weight: 600;
}

.vista-overview-points i,
.vista-risk-list i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vista-green);
    background: rgba(39,215,160,0.08);
    font-size: 9px;
}


/* =========================================================
   STAT PANEL
========================================================= */

.vista-stat-panel {
    position: relative;
    padding: 27px;
    min-height: 390px;
    border: 1px solid var(--vista-border);
    border-radius: var(--vista-radius);
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(32,168,255,0.12), transparent 30%),
        rgba(9, 29, 49, 0.72);
    box-shadow: var(--vista-shadow);
}

.vista-stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8ea6ba;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.vista-stat-top i {
    color: var(--vista-blue);
    font-size: 17px;
}

.vista-chart-area {
    position: relative;
    height: 205px;
    margin: 25px 0 22px;
    overflow: hidden;
    border-bottom: 1px solid rgba(123,174,207,0.15);
    background-image:
        linear-gradient(rgba(100,170,220,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100,170,220,0.07) 1px, transparent 1px);
    background-size: 55px 55px;
}

.vista-chart-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 130px;
}

.vista-chart-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(40,180,240,0.08);
}

.vista-chart-line span {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid var(--vista-cyan);
    border-radius: 50%;
    background: var(--vista-bg-2);
    box-shadow: 0 0 12px rgba(72,215,255,0.5);
}

.vista-chart-line span:nth-child(1) {
    left: 3%;
    top: 73%;
}

.vista-chart-line span:nth-child(2) {
    left: 18%;
    top: 55%;
}

.vista-chart-line span:nth-child(3) {
    left: 33%;
    top: 65%;
}

.vista-chart-line span:nth-child(4) {
    left: 48%;
    top: 30%;
}

.vista-chart-line span:nth-child(5) {
    left: 63%;
    top: 43%;
}

.vista-chart-line span:nth-child(6) {
    left: 78%;
    top: 15%;
}

.vista-chart-line span:nth-child(7) {
    left: 95%;
    top: 27%;
}

.vista-chart-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        transparent 4%,
        transparent 4.5%,
        rgba(72,215,255,0.7) 5%,
        transparent 5.7%,
        transparent 19%,
        rgba(72,215,255,0.7) 19.5%,
        transparent 20%,
        transparent 34%,
        rgba(72,215,255,0.7) 34.5%,
        transparent 35%,
        transparent 49%,
        rgba(72,215,255,0.7) 49.5%,
        transparent 50%,
        transparent 64%,
        rgba(72,215,255,0.7) 64.5%,
        transparent 65%,
        transparent 79%,
        rgba(72,215,255,0.7) 79.5%,
        transparent 80%,
        transparent 94%,
        rgba(72,215,255,0.7) 94.5%,
        transparent 95%);
    filter: drop-shadow(0 0 5px rgba(72,215,255,0.5));
}

.vista-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.vista-stat-grid > div {
    padding: 12px;
    border: 1px solid rgba(128,180,213,0.10);
    border-radius: 11px;
    background: rgba(255,255,255,0.025);
}

.vista-stat-grid small,
.vista-stat-grid strong {
    display: block;
}

.vista-stat-grid small {
    color: #6f879b;
    font-size: 9px;
    margin-bottom: 5px;
}

.vista-stat-grid strong {
    color: #dcecf6;
    font-size: 12px;
}


/* =========================================================
   SERVICES
========================================================= */

.vista-services-section {
    overflow: hidden;
}

.vista-section-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: 20%;
    border-radius: 50%;
    background: rgba(20, 140, 230, 0.08);
    filter: blur(100px);
}

.vista-service-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--vista-border);
    border-radius: var(--vista-radius);
    background: linear-gradient(145deg, rgba(12,35,58,0.92), rgba(7,23,40,0.92));
    box-shadow: 0 18px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.vista-service-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(32,168,255,0.10);
    transition: transform 0.5s ease;
}

.vista-service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(32,168,255,0.35);
    box-shadow: 0 25px 65px rgba(0,0,0,0.27);
}

.vista-service-card:hover::before {
    transform: scale(1.5);
}

.vista-service-highlight {
    border-color: rgba(32,168,255,0.32);
    background:
        radial-gradient(circle at 90% 0%, rgba(32,168,255,0.13), transparent 32%),
        linear-gradient(145deg, rgba(13,43,70,0.95), rgba(7,23,40,0.95));
}

.vista-service-number {
    position: absolute;
    top: 25px;
    right: 26px;
    color: rgba(125,182,220,0.20);
    font-size: 32px;
    font-weight: 800;
}

.vista-service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--vista-blue);
    background: rgba(32,168,255,0.09);
    border: 1px solid rgba(32,168,255,0.18);
    font-size: 20px;
}

.vista-service-card h3 {
    position: relative;
    margin: 0 0 18px;
    max-width: 310px;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 750;
}

.vista-service-card p {
    position: relative;
    color: #8fa7ba;
    font-size: 12px;
    line-height: 1.8;
}

.vista-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 20px 0 5px;
}

.vista-service-tags span {
    padding: 6px 9px;
    color: #9bb5c8;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(120,180,215,0.10);
    border-radius: 8px;
    font-size: 9px;
}

.vista-card-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--vista-blue);
    font-size: 11px;
    font-weight: 700;
}

.vista-card-link i {
    transition: transform var(--vista-transition);
}

.vista-card-link:hover {
    color: var(--vista-cyan);
}

.vista-card-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MARKET INTELLIGENCE
========================================================= */

.vista-intelligence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vista-intelligence-item {
    min-height: 105px;
    padding: 19px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--vista-border);
    border-radius: 15px;
    background: rgba(9,29,49,0.70);
    transition: all 0.35s ease;
}

.vista-intelligence-item:hover {
    transform: translateY(-5px);
    border-color: rgba(32,168,255,0.30);
    background: rgba(15,42,67,0.90);
}

.vista-intelligence-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--vista-blue);
    background: rgba(32,168,255,0.08);
}

.vista-intelligence-item span {
    color: #c5d8e7;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 650;
}


/* =========================================================
   PARTICIPANTS
========================================================= */

.vista-participant-card {
    min-height: 125px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    border: 1px solid var(--vista-border);
    border-radius: 15px;
    background: rgba(10,30,50,0.72);
    transition: all 0.35s ease;
}

.vista-participant-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32,168,255,0.30);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.vista-participant-card i {
    color: var(--vista-blue);
    font-size: 20px;
}

.vista-participant-card span {
    color: #b7cad9;
    font-size: 11px;
    font-weight: 650;
}


/* =========================================================
   PROCESS
========================================================= */

.vista-process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding-top: 20px;
}

.vista-process-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(32,168,255,0.4),
        rgba(72,215,255,0.4),
        transparent
    );
}

.vista-process-item {
    position: relative;
    z-index: 2;
}

.vista-process-number {
    width: 62px;
    height: 62px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(32,168,255,0.35);
    border-radius: 50%;
    color: var(--vista-blue);
    background: #07182a;
    box-shadow: 0 0 0 8px rgba(32,168,255,0.035);
    font-size: 12px;
    font-weight: 800;
}

.vista-process-content {
    padding: 25px 20px;
    min-height: 210px;
    text-align: center;
    border: 1px solid var(--vista-border);
    border-radius: 17px;
    background: rgba(10,31,51,0.70);
    transition: all 0.35s ease;
}

.vista-process-content:hover {
    transform: translateY(-7px);
    border-color: rgba(32,168,255,0.30);
}

.vista-process-content > span {
    color: var(--vista-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.vista-process-content h3 {
    margin: 11px 0 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 750;
}

.vista-process-content p {
    margin: 0;
    color: #849caf;
    font-size: 11px;
    line-height: 1.75;
}


/* =========================================================
   RISK
========================================================= */

.vista-risk-visual {
    position: relative;
    width: 520px;
    height: 520px;
    max-width: 100%;
    margin: auto;
}

.vista-risk-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 165px;
    height: 165px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(32,168,255,0.30);
    border-radius: 50%;
    background: linear-gradient(145deg, #12334f, #071a2d);
    box-shadow: 0 0 70px rgba(32,168,255,0.10);
    z-index: 4;
}

.vista-risk-center > div {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vista-blue);
    border-radius: 13px;
    background: rgba(32,168,255,0.09);
}

.vista-risk-center > span {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vista-risk-center > small {
    color: #7795ab;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vista-risk-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(32,168,255,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-a {
    width: 280px;
    height: 280px;
    animation: vistaRiskSpin 18s linear infinite;
}

.ring-b {
    width: 430px;
    height: 430px;
    border-style: dashed;
    animation: vistaRiskSpinReverse 25s linear infinite;
}

@keyframes vistaRiskSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes vistaRiskSpinReverse {
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.vista-risk-badge {
    position: absolute;
    z-index: 5;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(115,184,220,0.17);
    border-radius: 10px;
    color: #b9cfdf;
    background: rgba(7,27,46,0.92);
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
    font-size: 9px;
    font-weight: 650;
}

.vista-risk-badge i {
    color: var(--vista-blue);
}

.badge-a {
    top: 58px;
    left: 25px;
}

.badge-b {
    top: 85px;
    right: 4px;
}

.badge-c {
    bottom: 95px;
    right: -3px;
}

.badge-d {
    bottom: 55px;
    left: 22px;
}

.vista-risk-list {
    margin-top: 25px;
}

.vista-risk-note {
    max-width: 600px;
    margin-top: 27px;
    padding: 14px 17px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    border-left: 2px solid var(--vista-blue);
    color: #8ea7ba;
    background: rgba(32,168,255,0.045);
    font-size: 11px;
}

.vista-risk-note i {
    margin-top: 4px;
    color: var(--vista-blue);
}


/* =========================================================
   VISION
========================================================= */

.vista-vision-section {
    position: relative;
    padding: 145px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(32,168,255,0.12), transparent 32%),
        #061626;
}

.vista-vision-grid {
    position: absolute;
    inset: 0;
    opacity: 0.20;
    background-image:
        linear-gradient(rgba(100,170,220,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100,170,220,0.07) 1px, transparent 1px);
    background-size: 65px 65px;
}

.vista-vision-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.vista-vision-content h2 {
    margin: 0 auto 25px;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
}

.vista-vision-content p {
    max-width: 700px;
    margin: 0 auto;
    color: #8da6b9;
    font-size: 14px;
    line-height: 1.9;
}

.vista-vision-values {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.vista-vision-values span {
    padding: 8px 13px;
    color: #bcd5e5;
    border: 1px solid rgba(32,168,255,0.15);
    border-radius: 100px;
    background: rgba(32,168,255,0.05);
    font-size: 10px;
    font-weight: 650;
}


/* =========================================================
   CONTACT
========================================================= */

.vista-contact-section {
    background: #07182a;
}

.vista-contact-info {
    margin-top: 30px;
}

.vista-contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    color: #a6bccd;
    font-size: 12px;
}

.vista-contact-item > div {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vista-blue);
    border: 1px solid rgba(32,168,255,0.15);
    border-radius: 11px;
    background: rgba(32,168,255,0.06);
}

.vista-contact-card {
    padding: 34px;
    border: 1px solid var(--vista-border);
    border-radius: var(--vista-radius);
    background: rgba(8,27,46,0.85);
    box-shadow: var(--vista-shadow);
}

.vista-contact-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 23px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(120,180,215,0.10);
}

.vista-contact-card-head span {
    color: var(--vista-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.vista-contact-card-head h3 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 23px;
    font-weight: 750;
}

.vista-form-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vista-blue);
    border: 1px solid rgba(32,168,255,0.18);
    border-radius: 12px;
    background: rgba(32,168,255,0.06);
}

.vista-contact-form label {
    display: block;
    margin: 0 0 7px;
    color: #9eb5c6;
    font-size: 10px;
    font-weight: 650;
}

.vista-input-wrap {
    position: relative;
}

.vista-input-wrap > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #58758b;
    font-size: 12px;
    z-index: 2;
}

.vista-input-wrap input,
.vista-input-wrap textarea {
    width: 100%;
    border: 1px solid rgba(115,175,210,0.13);
    border-radius: 11px;
    outline: none;
    color: #dceaf4;
    background: rgba(255,255,255,0.035);
    transition: all 0.3s ease;
}

.vista-input-wrap input {
    height: 49px;
    padding: 0 15px 0 42px;
}

.vista-input-wrap textarea {
    min-height: 130px;
    padding: 14px 15px 14px 42px;
    resize: vertical;
}

.vista-input-wrap textarea + i,
.vista-textarea-wrap > i {
    top: 18px;
    transform: none;
}

.vista-input-wrap input::placeholder,
.vista-input-wrap textarea::placeholder {
    color: #587185;
}

.vista-input-wrap input:focus,
.vista-input-wrap textarea:focus {
    border-color: rgba(32,168,255,0.50);
    background: rgba(32,168,255,0.04);
    box-shadow: 0 0 0 4px rgba(32,168,255,0.05);
}

.vista-submit-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--vista-blue), var(--vista-blue-2));
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
    transition: all 0.35s ease;
}

.vista-submit-btn i {
    margin-left: 8px;
    transition: transform 0.35s ease;
}

.vista-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(32,168,255,0.24);
}

.vista-submit-btn:hover i {
    transform: translateX(5px);
}

.vista-form-message {
    display: none;
    margin-top: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 11px;
}

.vista-form-message.vista-form-success {
    display: block;
    color: #8ce9c6;
    border: 1px solid rgba(39,215,160,0.20);
    background: rgba(39,215,160,0.06);
}


/* =========================================================
   FAQ
========================================================= */

.vista-faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.vista-faq-item {
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--vista-border);
    border-radius: 14px;
    background: rgba(9,29,49,0.68);
}

.vista-faq-question {
    width: 100%;
    min-height: 70px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    outline: none;
    color: #dceaf4;
    background: transparent;
    text-align: left;
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
}

.vista-faq-question i {
    color: var(--vista-blue);
    transition: transform 0.3s ease;
}

.vista-faq-item.active .vista-faq-question i {
    transform: rotate(45deg);
}

.vista-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.vista-faq-item.active .vista-faq-answer {
    max-height: 300px;
}

.vista-faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: #8299ac;
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.vista-disclaimer-section {
    padding: 55px 0;
    background: #051321;
}

.vista-disclaimer-box {
    padding: 25px 27px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(240,180,65,0.15);
    border-radius: 17px;
    background: rgba(255,190,65,0.025);
}

.vista-disclaimer-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #f1b94f;
    background: rgba(241,185,79,0.07);
}

.vista-disclaimer-box h3 {
    margin: 0 0 10px;
    color: #e8f0f5;
    font-size: 16px;
    font-weight: 750;
}

.vista-disclaimer-box p {
    margin: 0 0 7px;
    color: #788e9f;
    font-size: 10px;
    line-height: 1.75;
}

.vista-disclaimer-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.vista-footer {
    padding: 75px 0 25px;
    background: #030d18;
    border-top: 1px solid rgba(120,180,215,0.10);
}

.vista-footer-brand {
    margin-bottom: 20px;
}

.vista-footer-description {
    max-width: 430px;
    margin: 0;
    color: #6f8597;
    font-size: 14px;
    line-height: 1.9;
}

.vista-footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.vista-footer-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7892a5;
    border: 1px solid rgba(120,180,215,0.12);
    border-radius: 9px;
    background: rgba(255,255,255,0.025);
    font-size: 12px;
    transition: all 0.3s ease;
}

.vista-footer-socials a:hover {
    color: #fff;
    border-color: var(--vista-blue);
    background: var(--vista-blue);
    transform: translateY(-3px);
}

.vista-footer h4 {
    margin: 4px 0 19px;
    color: #e3edf4;
    font-size: 12px;
    font-weight: 750;
}

.vista-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vista-footer ul li {
    margin-bottom: 10px;
}

.vista-footer ul li a {
    color: #71889a;
    font-size: 14px;
    transition: color 0.3s ease;
}

.vista-footer ul li a:hover {
    color: var(--vista-blue);
}

.vista-footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 13px;
    color: #71899b;
    font-size: 14px;
    line-height: 1.5;
}

.vista-footer-contact > div i {
    margin-top: 2px;
    color: var(--vista-blue);
}

.vista-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: var(--vista-blue);
    font-size: 10px;
    font-weight: 700;
}

.vista-footer-cta i {
    transition: transform 0.3s ease;
}

.vista-footer-cta:hover {
    color: var(--vista-cyan);
}

.vista-footer-cta:hover i {
    transform: translateX(4px);
}

.vista-footer-bottom {
    margin-top: 55px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(120,180,215,0.08);
    color: #506779;
    font-size: 9px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.vista-back-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 43px;
    height: 43px;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(32,168,255,0.25);
    border-radius: 12px;
    color: #fff;
    background: rgba(8,28,47,0.90);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vista-back-top.vista-back-top-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vista-back-top:hover {
    background: var(--vista-blue);
    border-color: var(--vista-blue);
    transform: translateY(-4px);
}


/* =========================================================
   SELECTION
========================================================= */

.vista-otc-page ::selection {
    color: #fff;
    background: var(--vista-blue);
}
/* =========================================================
   VISTAINFO OTC - LIGHT / WHITE THEME
   Added after the original CSS so no original component is lost.
========================================================= */

:root {
    --vista-bg: #ffffff;
    --vista-bg-2: #f7faff;
    --vista-bg-3: #eef6fd;
    --vista-card: rgba(255,255,255,.94);
    --vista-card-2: #ffffff;
    --vista-blue: #168cff;
    --vista-blue-2: #087ee8;
    --vista-cyan: #35bfff;
    --vista-green: #18bd91;
    --vista-white: #ffffff;
    --vista-text: #0b1728;
    --vista-muted: #637386;
    --vista-border: rgba(30,75,115,.13);
    --vista-shadow: 0 25px 70px rgba(17,55,88,.09);
}

body.vista-otc-page {
    background: #ffffff;
    color: #0b1728;
}

/* Loader */
.vista-page-loader { background:#ffffff; }
.vista-loader-inner span { color:#0b1728; }
.vista-loader-ring { border-color:rgba(22,140,255,.14); border-top-color:var(--vista-blue); border-right-color:var(--vista-cyan); }

/* Header */
.vista-header { background:rgba(255,255,255,.90); border-bottom-color:rgba(15,50,80,.06); box-shadow:0 8px 30px rgba(20,50,80,.04); }
.vista-header.vista-header-scrolled { background:rgba(255,255,255,.97); border-bottom-color:#e2eaf1; box-shadow:0 10px 35px rgba(20,50,80,.08); }
.vista-brand, .vista-brand:hover { color:#0b1728; }
.vista-brand-text strong { color:#0b1728; }
.vista-brand-text small { color:#7c8a99; }
.vista-nav-link { color:#617084; }
.vista-nav-link:hover, .vista-nav-link.active { color:#0b1728; }
.vista-header-btn { color:#fff; background:#0b1b2d; border-color:#0b1b2d; }
.vista-header-btn:hover { color:#fff; background:var(--vista-blue); border-color:var(--vista-blue); }
.vista-menu-toggle { background:#fff; border-color:#dbe5ee; }
.vista-menu-toggle span { background:#0b1728; }

/* Mobile navigation */
.vista-mobile-navigation { background:#fff; border-top:1px solid #e4ebf2; box-shadow:0 18px 40px rgba(20,50,80,.10); }
.vista-mobile-navigation a { color:#233449; }
.vista-mobile-navigation a:hover { color:var(--vista-blue); background:#f5f9fd; }
.vista-mobile-navigation .vista-mobile-cta { color:#fff; background:#0b1b2d; }

/* Intro */
.vista-intro-section {
    background:
        radial-gradient(circle at 78% 38%,rgba(22,140,255,.10),transparent 32%),
        radial-gradient(circle at 12% 72%,rgba(24,189,145,.045),transparent 27%),
        linear-gradient(180deg,#fff 0%,#f8fbfe 100%);
}
.vista-grid-background { opacity:.55; background-image:linear-gradient(rgba(22,140,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(22,140,255,.045) 1px,transparent 1px); }
.vista-glow-one { background:rgba(22,140,255,.08); }
.vista-glow-two { background:rgba(24,189,145,.045); }
.vista-eyebrow { color:#5e7184; background:rgba(22,140,255,.055); border-color:rgba(22,140,255,.20); }
.vista-intro-content h1 { color:#081625; }
.vista-intro-content h1 span { background:linear-gradient(90deg,#0a7fe8,#42bdf7); -webkit-background-clip:text; background-clip:text; }
.vista-intro-lead { color:#34475b; }
.vista-intro-description { color:#647386; }
.vista-primary-btn { color:#fff; background:linear-gradient(135deg,#0b1b2d,#173958); }
.vista-primary-btn:hover { color:#fff; background:linear-gradient(135deg,#168cff,#087ee8); }
.vista-secondary-btn { color:#203247; background:#fff; border-color:#d8e4ee; }
.vista-secondary-btn:hover { color:var(--vista-blue); background:#f5f9fd; border-color:var(--vista-blue); }
.vista-trust-item { color:#697a8d; }
.vista-trust-item i { color:var(--vista-green); }

/* Floating cards */
.vista-floating-card { color:#1b2d42; background:rgba(255,255,255,.94); border-color:#dce7f0; box-shadow:0 18px 50px rgba(20,50,80,.10); }
.vista-floating-card small { color:#7c8b9b; }
.vista-floating-card strong { color:#17283b; }
.vista-mini-icon { color:var(--vista-blue); background:rgba(22,140,255,.08); }

/* Market visual */
.vista-visual-orbit { border-color:rgba(22,140,255,.16); }
.orbit-two { border-color:rgba(22,140,255,.13); }
.vista-core-circle { background:linear-gradient(145deg,#fff,#f1f8fe); border-color:rgba(22,140,255,.30); box-shadow:0 0 70px rgba(22,140,255,.10),inset 0 0 35px rgba(22,140,255,.035); }
.vista-core-circle > span { color:#14253a; }
.vista-core-circle > small { color:#7a92a7; }
.vista-market-node { color:#183047; background:rgba(255,255,255,.96); border-color:#d8e6f0; box-shadow:0 10px 35px rgba(20,50,80,.09); }
.vista-market-node i { color:var(--vista-blue); }
.vista-connection-line { background:linear-gradient(90deg,transparent,rgba(22,140,255,.30),transparent); }
.vista-scroll-indicator { color:#728497; }

/* Common sections */
.vista-overview-section,
.vista-market-section,
.vista-risk-section,
.vista-contact-section,
.vista-faq-section { background:#fff; }
.vista-services-section,
.vista-process-section,
.vista-participants-section { background:#f6f9fc; }
.vista-section-title { color:#0b1728; }
.vista-section-text,.vista-section-heading > p { color:#657588; }
.vista-section-label { color:var(--vista-blue); }
.vista-section-label span { background:var(--vista-blue); }

/* Overview chart */
.vista-stat-panel { background:linear-gradient(145deg,#fff,#f5faff); border-color:#dce7f0; box-shadow:var(--vista-shadow); }
.vista-stat-top { color:#73869a; }
.vista-stat-top i { color:var(--vista-blue); }
.vista-chart-area { border-bottom-color:#dfe8ef; background-image:linear-gradient(rgba(22,140,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(22,140,255,.055) 1px,transparent 1px); }
.vista-chart-line::before { background:rgba(22,140,255,.08); }
.vista-chart-line span { background:#fff; border-color:var(--vista-cyan); box-shadow:0 0 12px rgba(53,191,255,.30); }
.vista-stat-grid > div { border-color:#e1e9f0; background:#f8fbfd; }
.vista-stat-grid small { color:#8291a1; }
.vista-stat-grid strong { color:#203348; }

/* Services */
.vista-section-glow { background:rgba(22,140,255,.05); }
.vista-service-card { background:linear-gradient(145deg,#fff,#f8fbfe); border-color:#dfe8f0; box-shadow:0 18px 50px rgba(20,50,80,.06); }
.vista-service-card::before { background:rgba(22,140,255,.06); }
.vista-service-card:hover { border-color:rgba(22,140,255,.30); box-shadow:0 25px 65px rgba(20,50,80,.10); }
.vista-service-highlight { border-color:rgba(22,140,255,.25); background:radial-gradient(circle at 90% 0%,rgba(22,140,255,.08),transparent 32%),linear-gradient(145deg,#fff,#f4faff); }
.vista-service-number { color:rgba(22,100,160,.13); }
.vista-service-icon { color:var(--vista-blue); background:rgba(22,140,255,.07); border-color:rgba(22,140,255,.15); }
.vista-service-card h3 { color:#14253a; }
.vista-service-card p { color:#69798b; }
.vista-service-tags span { color:#65778a; background:#f5f9fc; border-color:#e1e9f0; }
.vista-card-link { color:var(--vista-blue); }

/* Market intelligence */
.vista-intelligence-item { background:#fff; border-color:#dfe8f0; box-shadow:0 10px 30px rgba(20,50,80,.04); }
.vista-intelligence-item:hover { background:#f8fbfe; border-color:rgba(22,140,255,.28); }
.vista-intelligence-icon { color:var(--vista-blue); background:#f0f7fd; }
.vista-intelligence-item span { color:#304257; }

/* Participants */
.vista-participant-card { background:#fff; border-color:#dfe8f0; box-shadow:0 12px 35px rgba(20,50,80,.05); }
.vista-participant-card:hover { border-color:rgba(22,140,255,.35); box-shadow:0 18px 40px rgba(20,50,80,.08); }
.vista-participant-card i { color:var(--vista-blue); }
.vista-participant-card span { color:#33465a; }

/* Process */
.vista-process-line { background:linear-gradient(90deg,transparent,rgba(22,140,255,.30),rgba(53,191,255,.30),transparent); }
.vista-process-number { color:var(--vista-blue); background:#fff; border-color:rgba(22,140,255,.30); box-shadow:0 0 0 8px rgba(22,140,255,.035); }
.vista-process-content { background:#fff; border-color:#dfe8f0; box-shadow:0 12px 35px rgba(20,50,80,.05); }
.vista-process-content:hover { border-color:rgba(22,140,255,.30); }
.vista-process-content > span { color:var(--vista-blue); }
.vista-process-content h3 { color:#14253a; }
.vista-process-content p { color:#718093; }

/* Risk */
.vista-risk-visual { background:radial-gradient(circle,rgba(22,140,255,.035),transparent 55%); }
.vista-risk-center { background:linear-gradient(145deg,#fff,#f2f8fd); border-color:rgba(22,140,255,.28); box-shadow:0 0 70px rgba(22,140,255,.08); }
.vista-risk-center > span { color:#14253a; }
.vista-risk-center > small { color:#7890a5; }
.vista-risk-ring { border-color:rgba(22,140,255,.16); }
.vista-risk-badge { color:#3a4d61; background:rgba(255,255,255,.96); border-color:#dce7ef; box-shadow:0 12px 35px rgba(20,50,80,.08); }
.vista-risk-badge i { color:var(--vista-blue); }
.vista-overview-points > div,.vista-risk-list > div { color:#405267; }
.vista-overview-points i,.vista-risk-list i { color:var(--vista-green); background:rgba(24,189,145,.08); }
.vista-risk-note { color:#68798b; background:rgba(22,140,255,.035); }

/* Vision */
.vista-vision-section { background:radial-gradient(circle at 50% 50%,rgba(22,140,255,.08),transparent 34%),#fff; }
.vista-vision-grid { opacity:.55; background-image:linear-gradient(rgba(22,140,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(22,140,255,.045) 1px,transparent 1px); }
.vista-vision-content h2 { color:#0b1728; }
.vista-vision-content p { color:#68798b; }
.vista-vision-values span { color:#456075; background:rgba(22,140,255,.045); border-color:rgba(22,140,255,.14); }

/* Contact */
.vista-contact-section { background:#f7fafc; }
.vista-contact-item { color:#536579; }
.vista-contact-item > div { color:var(--vista-blue); background:#f0f7fd; border-color:#dce8f1; }
.vista-contact-card { background:#fff; border-color:#dfe8f0; box-shadow:var(--vista-shadow); }
.vista-contact-card-head { border-bottom-color:#e5edf3; }
.vista-contact-card-head span { color:var(--vista-blue); }
.vista-contact-card-head h3 { color:#14253a; }
.vista-form-icon { color:var(--vista-blue); background:#f0f7fd; border-color:#dce8f1; }
.vista-contact-form label { color:#405267; }
.vista-input-wrap > i { color:#7890a3; }
.vista-input-wrap input,.vista-input-wrap textarea { color:#1d3044; background:#fff; border-color:#dce6ee; }
.vista-input-wrap input::placeholder,.vista-input-wrap textarea::placeholder { color:#9aa7b4; }
.vista-input-wrap input:focus,.vista-input-wrap textarea:focus { color:#1d3044; background:#fff; border-color:rgba(22,140,255,.50); box-shadow:0 0 0 4px rgba(22,140,255,.07); }
.vista-form-message.vista-form-success { color:#148f6f; background:rgba(24,189,145,.06); border-color:rgba(24,189,145,.20); }

/* FAQ */
.vista-faq-item { background:#fff; border-color:#dfe8f0; box-shadow:0 8px 25px rgba(20,50,80,.035); }
.vista-faq-question { color:#1d3044; }
.vista-faq-question i { color:var(--vista-blue); }
.vista-faq-answer p { color:#6c7c8e; }

/* Disclaimer */
.vista-disclaimer-section { background:#f5f8fb; }
.vista-disclaimer-box { background:#fffdf8; border-color:rgba(210,157,50,.20); }
.vista-disclaimer-box h3 { color:#2c3d50; }
.vista-disclaimer-box p { color:#718092; }

/* Footer intentionally remains dark for premium contrast */
.vista-footer { background:#071525; }

/* Back to top */
.vista-back-top { background:#0b1b2d; border-color:rgba(22,140,255,.25); }
.vista-back-top:hover { background:var(--vista-blue); border-color:var(--vista-blue); }

/* Scrollbar */
::-webkit-scrollbar-track { background:#f2f5f8; }
::-webkit-scrollbar-thumb { background:#b9c7d4; }
::-webkit-scrollbar-thumb:hover { background:var(--vista-blue); }

/* Selection */
.vista-otc-page ::selection { color:#fff; background:var(--vista-blue); }

/* Prevent accidental horizontal overflow from floating visuals */
.vista-otc-page main,
.vista-otc-page section { max-width:100%; }


/* =========================================
   FORM STATUS MESSAGE
========================================= */

.vista-form-message {
    margin-top: 18px;
}


/* SUCCESS */

.vista-form-success {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 16px;

    border-radius: 12px;

    background: #ecfdf7;

    border: 1px solid #b7f0dc;

    color: #087a59;

    font-size: 14px;
    line-height: 1.5;
}

.vista-form-success i {
    font-size: 18px;
}


/* ERROR */

.vista-form-error {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 16px;

    border-radius: 12px;

    background: #fff5f5;

    border: 1px solid #ffd0d0;

    color: #c0392b;

    font-size: 14px;
    line-height: 1.5;
}

.vista-form-error i {
    font-size: 18px;
}


/* =========================================
   SUBMIT BUTTON LOADING
========================================= */

.vista-submit-btn {
    position: relative;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

.vista-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

.vista-submit-btn.is-loading {
    pointer-events: none;
}


/* =========================================
   PHONE INPUT
========================================= */

.vista-contact-form input[type="tel"] {
    width: 100%;
}


/* =========================================
   FORM LABEL
========================================= */

.vista-contact-form .vista-form-label {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;

    font-weight: 700;

    color: #34465a;

    letter-spacing: 0.01em;
}

/* =========================================
   VISTA INFOTECH TECHNOLOGIES LOGO
========================================= */

.vista-brand {
    display: flex;
    align-items: center;

    text-decoration: none;

    width: 245px;

    flex-shrink: 0;
}

.vista-main-logo {
    display: block;

    width: 245px;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}


/* Logo hover */

.vista-brand {
    transition: transform 0.3s ease;
}

.vista-brand:hover {
    transform: translateY(-1px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .vista-brand {
        width: 220px;
    }

    .vista-main-logo {
        width: 220px;
    }

}


@media (max-width: 575px) {

    .vista-brand {
        width: 185px;
    }

    .vista-main-logo {
        width: 185px;
    }

}