/* MotorGravity — Premium Dark Navy Design System */

:root {
    --vsp-navy-950: #07111f;
    --vsp-navy-900: #081827;
    --vsp-navy-850: #0b1d30;
    --vsp-navy-800: #102a43;
    --vsp-navy-700: #123552;
    --vsp-accent: #2f80ed;
    --vsp-accent-bright: #4a9eff;
    --vsp-accent-soft: rgba(47, 128, 237, 0.12);
    --vsp-accent-glow: rgba(74, 158, 255, 0.28);
    --vsp-white: #ffffff;
    --vsp-off-white: #f5f7fa;
    --vsp-soft-white: #e8eef5;
    --vsp-muted: #a8b6c5;
    --vsp-ink: #0c1522;
    --vsp-ink-soft: #3d4f63;
    --vsp-line: rgba(15, 35, 55, 0.08);
    --vsp-line-strong: rgba(15, 35, 55, 0.14);
    --vsp-line-light: rgba(255, 255, 255, 0.1);
    --vsp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --vsp-shadow-sm: 0 4px 20px rgba(7, 17, 31, 0.06);
    --vsp-shadow-md: 0 16px 48px rgba(7, 17, 31, 0.1);
    --vsp-shadow-lg: 0 28px 72px rgba(7, 17, 31, 0.16);
    --vsp-header-h: 4.5rem;
    --vsp-font: "Poppins", system-ui, -apple-system, sans-serif;
    --vsp-radius: 0.5rem;
    --vsp-radius-lg: 0.875rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--vsp-font);
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    color: var(--vsp-ink);
    background: var(--vsp-off-white);
    overflow-x: hidden;
}

body.vsp-body {
    background: var(--vsp-off-white);
}

img,
video {
    max-width: 100%;
    height: auto;
}

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

button,
input {
    font-family: inherit;
}

:focus-visible {
    outline: 2px solid var(--vsp-accent);
    outline-offset: 3px;
}

.vsp-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.vsp-container {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .vsp-container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

/* ========== NAVIGATION ========== */
.vsp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--vsp-header-h);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    margin-top: 0;
    transition:
        background 0.45s var(--vsp-ease),
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        backdrop-filter 0.45s ease,
        margin-top 0.35s var(--vsp-ease);
}

body.vsp-home .vsp-nav:not(.is-scrolled):not(.is-solid) {
    margin-top: 23px;
}

.vsp-nav.is-scrolled,
.vsp-nav.is-solid,
body:not(.vsp-home) .vsp-nav {
    margin-top: 0;
    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom-color: rgba(74, 158, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.vsp-nav-inner {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vsp-logo-link {
    display: block;
    line-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    animation: vsp-enter 0.8s var(--vsp-ease) 0.1s forwards;
}

.vsp-logo-link img {
    width: auto;
    height: 2.35rem;
    display: block;
    transition: opacity 0.25s ease, transform 0.35s var(--vsp-ease);
}

@media (min-width: 768px) {
    .vsp-logo-link img {
        height: 4.65rem;
    }
}

.vsp-logo-link:hover img {
    opacity: 0.92;
    transform: translateY(-1px);
}

.vsp-nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(-8px);
    animation: vsp-enter 0.8s var(--vsp-ease) 0.25s forwards;
}

@media (min-width: 900px) {
    .vsp-nav-desktop {
        display: flex;
    }
}

.vsp-nav-link {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.88);
    padding: 0.35rem 0;
    transition: color 0.25s ease;
}

.vsp-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--vsp-accent-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--vsp-ease);
}

.vsp-nav-link:hover,
.vsp-nav-link:focus-visible {
    color: #fff;
}

.vsp-nav-link:hover::after,
.vsp-nav-link:focus-visible::after {
    transform: scaleX(1);
}

.vsp-nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(-8px);
    animation: vsp-enter 0.8s var(--vsp-ease) 0.35s forwards;
}

@media (min-width: 900px) {
    .vsp-nav-actions {
        display: flex;
    }
}

.vsp-nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #2a74e0 0%, var(--vsp-accent) 50%, #3d8ff5 100%);
    background-size: 160% 160%;
    background-position: 0% 50%;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition:
        background-position 0.5s var(--vsp-ease),
        transform 0.35s var(--vsp-ease),
        box-shadow 0.4s var(--vsp-ease),
        filter 0.35s ease;
}

.vsp-nav-cta:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 10px 26px rgba(47, 128, 237, 0.32);
}

.vsp-nav-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(232, 238, 245, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.vsp-nav-ghost:hover {
    border-color: rgba(74, 158, 255, 0.45);
    background: rgba(47, 128, 237, 0.12);
    color: #fff;
}

.vsp-nav-ghost i {
    color: var(--vsp-accent-bright);
}

/* Mobile menu button */
.vsp-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
    z-index: 120;
}

.vsp-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.4);
}

@media (min-width: 900px) {
    .vsp-menu-toggle {
        display: none;
    }
}

.vsp-burger {
    position: relative;
    width: 1.15rem;
    height: 0.85rem;
}

.vsp-burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s var(--vsp-ease), opacity 0.25s ease, top 0.35s var(--vsp-ease);
}

.vsp-burger span:nth-child(1) { top: 0; }
.vsp-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.vsp-burger span:nth-child(3) { bottom: 0; }

.vsp-menu-toggle[aria-expanded="true"] .vsp-burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.vsp-menu-toggle[aria-expanded="true"] .vsp-burger span:nth-child(2) {
    opacity: 0;
}

.vsp-menu-toggle[aria-expanded="true"] .vsp-burger span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Full-screen mobile navigation */
.vsp-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(7, 17, 31, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.vsp-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.vsp-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 115;
    width: min(100%, 22rem);
    height: 100%;
    height: 100dvh;
    background: linear-gradient(180deg, #081827 0%, #07111f 100%);
    border-left: 1px solid rgba(74, 158, 255, 0.15);
    padding: calc(1rem + env(safe-area-inset-top, 0px)) 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.45s var(--vsp-ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.vsp-mobile-panel.is-open {
    transform: translateX(0);
}

.vsp-mobile-panel-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: -0.35rem 0 0.85rem;
}

.vsp-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.vsp-mobile-close span {
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1;
    margin-top: -0.1rem;
}

.vsp-mobile-close:hover,
.vsp-mobile-close:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(74, 158, 255, 0.45);
    outline: none;
}

body.nav-open .vsp-nav {
    z-index: 130;
}

.vsp-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vsp-mobile-links a {
    display: block;
    padding: 1rem 0.25rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, padding-left 0.25s var(--vsp-ease);
}

.vsp-mobile-links a:hover,
.vsp-mobile-links a:focus-visible {
    color: var(--vsp-accent-bright);
    padding-left: 0.5rem;
}

.vsp-mobile-meta {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
}

.vsp-mobile-meta .vsp-mobile-mail {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem;
    width: 100%;
    min-height: 0;
    padding: 0.35rem 0.5rem !important;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(232, 238, 245, 0.78);
    border: none !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

.vsp-mobile-meta .vsp-mobile-mail i {
    color: var(--vsp-accent-bright);
    font-size: 0.85rem;
}

.vsp-mobile-meta .vsp-mobile-mail span {
    min-width: 0;
}

.vsp-mobile-meta .vsp-mobile-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    width: 100% !important;
    min-height: 3.5rem !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    background: var(--vsp-accent) !important;
    box-shadow: 0 12px 32px rgba(47, 128, 237, 0.38);
    box-sizing: border-box;
    text-align: center !important;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.25s var(--vsp-ease), box-shadow 0.25s ease;
}

.vsp-mobile-meta .vsp-mobile-cta span,
.vsp-mobile-meta .vsp-mobile-cta i {
    position: relative;
    z-index: 1;
    color: #fff !important;
    flex: 0 0 auto;
}

.vsp-mobile-meta .vsp-mobile-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s var(--vsp-ease);
}

.vsp-mobile-meta .vsp-mobile-cta:hover,
.vsp-mobile-meta .vsp-mobile-cta:focus-visible {
    background: #3d8ff5 !important;
    box-shadow: 0 14px 36px rgba(47, 128, 237, 0.48);
    outline: none;
}

.vsp-mobile-meta .vsp-mobile-cta:hover i,
.vsp-mobile-meta .vsp-mobile-cta:focus-visible i {
    transform: translateX(3px);
}

.vsp-mobile-meta .vsp-mobile-cta:active {
    transform: scale(0.98);
}

body.nav-open {
    overflow: hidden;
}

body.nav-open iframe[title*="chat" i],
body.nav-open div[class*="tawk"],
body.nav-open #tawkchat-container,
body.nav-open .widget-visible {
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (min-width: 900px) {
    .vsp-mobile-overlay,
    .vsp-mobile-panel {
        display: none !important;
    }
}

/* ========== HERO ========== */
.vsp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: var(--vsp-navy-950);
}

.vsp-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vsp-hero-video,
.vsp-hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vsp-hero-fallback {
    z-index: 0;
}

.vsp-hero-video {
    z-index: 1;
}

.vsp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 70% 55% at 50% 35%, rgba(7, 17, 31, 0.35) 0%, rgba(7, 17, 31, 0.78) 70%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.72) 0%, rgba(8, 24, 39, 0.45) 40%, rgba(7, 17, 31, 0.88) 100%);
    pointer-events: none;
}

.vsp-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: calc(var(--vsp-header-h) + 2.75rem) 1.25rem 5rem;
}

@media (min-width: 768px) {
    .vsp-hero-content {
        padding: calc(var(--vsp-header-h) + 4rem) 1.75rem 5.5rem;
    }
}

.vsp-hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .vsp-hero-center {
        gap: 3.25rem;
    }
}

.vsp-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 46rem;
}

.vsp-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.35rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vsp-accent-bright);
}

.vsp-hero-title {
    margin: 0 0 1.35rem;
    font-size: clamp(1.9rem, 4.8vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: #fff;
    max-width: min(100%, 40rem);
}

@media (min-width: 768px) {
    .vsp-hero-title {
        white-space: nowrap;
        max-width: none;
    }
}

.vsp-hero-title em {
    font-style: normal;
    color: var(--vsp-accent-bright);
}

.vsp-hero-lead {
    margin: 0 auto 2rem;
    max-width: 38rem;
    font-size: clamp(1.02rem, 1.7vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(232, 238, 245, 0.84);
}

.vsp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.vsp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.15rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.35s var(--vsp-ease),
        background 0.3s ease,
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.vsp-btn i {
    transition: transform 0.35s var(--vsp-ease);
}

.vsp-btn:hover i {
    transform: translateX(4px);
}

.vsp-btn-primary,
.vsp-btn-primary.vsp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2a74e0 0%, var(--vsp-accent) 48%, #3d8ff5 100%);
    background-size: 160% 160%;
    background-position: 0% 50%;
    box-shadow:
        0 10px 28px rgba(47, 128, 237, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.vsp-btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(47, 128, 237, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.vsp-btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 8px 20px rgba(47, 128, 237, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vsp-btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vsp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.vsp-hero-trust {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.35s var(--vsp-ease);
}

.vsp-hero-trust:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(74, 158, 255, 0.35);
    transform: translateY(-2px);
}

.vsp-hero-stars {
    display: flex;
    gap: 0.15rem;
    color: #f0c14d;
    font-size: 0.8rem;
}

.vsp-hero-trust-text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(232, 238, 245, 0.9);
}

/* Hero form — premium dark glassmorphism */
.vsp-hero-card,
.vsp-hero-check-form {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Opacity-only entrance: transform on ancestors kills backdrop-filter */
.vsp-hero-check-form.vsp-hero-anim {
    transform: none;
    animation-name: vsp-enter-fade;
}

@keyframes vsp-enter-fade {
    to { opacity: 1; }
}

.vsp-hero-form-shell {
    position: relative;
    width: 100%;
    padding: 1.35rem 1.25rem 1.25rem;
    border-radius: 1.15rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 42%, transparent 100%),
        rgba(8, 20, 36, 0.38);
    backdrop-filter: blur(28px) saturate(1.55);
    -webkit-backdrop-filter: blur(28px) saturate(1.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.4s ease, border-color 0.35s ease, background 0.35s ease;
}

.vsp-hero-form-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    z-index: 0;
}

.vsp-hero-form-shell > *:not(.vsp-sr-only) {
    position: relative;
    z-index: 1;
}

.vsp-hero-check-form:hover .vsp-hero-form-shell,
.vsp-hero-check-form:focus-within .vsp-hero-form-shell {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 42%, transparent 100%),
        rgba(8, 20, 36, 0.32);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(47, 128, 237, 0.2),
        0 0 48px rgba(47, 128, 237, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

@media (min-width: 640px) {
    .vsp-hero-form-shell {
        padding: 1.65rem 1.75rem 1.45rem;
    }
}

.vsp-hero-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
    text-align: left;
}

.vsp-hero-form-head-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.vsp-hero-form-icon {
    flex-shrink: 0;
    width: 2.85rem;
    height: 2.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(74, 158, 255, 0.16);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: var(--vsp-accent-bright);
    font-size: 1.05rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.35s var(--vsp-ease), box-shadow 0.35s ease, background 0.3s ease;
}

.vsp-hero-check-form:hover .vsp-hero-form-icon {
    transform: scale(1.05);
    background: rgba(74, 158, 255, 0.22);
    box-shadow: 0 8px 24px rgba(47, 128, 237, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.vsp-hero-form-kicker {
    margin: 0 0 0.15rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vsp-accent-bright);
}

.vsp-hero-form-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #fff;
}

.vsp-field-label {
    display: block;
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.62);
    text-align: left;
}

.vsp-hero-form-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--vsp-accent-bright);
    background: rgba(47, 128, 237, 0.14);
    border: 1px solid rgba(74, 158, 255, 0.28);
}

.vsp-hero-form-badge i {
    font-size: 0.7rem;
}

@media (max-width: 480px) {
    .vsp-hero-form-badge {
        display: none;
    }
}

.vsp-hero-input-row {
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    background: rgba(7, 17, 31, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

@media (min-width: 640px) {
    .vsp-hero-input-row {
        flex-direction: row;
        align-items: stretch;
    }
}

.vsp-hero-check-form:focus-within .vsp-hero-input-row {
    border-color: rgba(74, 158, 255, 0.55);
    background: rgba(7, 17, 31, 0.55);
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.18);
}

.vsp-hero-input {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    padding: 1.15rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    outline: none;
    caret-color: var(--vsp-accent-bright);
}

.vsp-hero-input::placeholder {
    color: rgba(168, 182, 197, 0.65);
    font-weight: 500;
    letter-spacing: 0.06em;
}

.vsp-hero-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 1.15rem 1.5rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.925rem;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #2a74e0 0%, var(--vsp-accent) 45%, #4a9eff 100%);
    background-size: 180% 180%;
    background-position: 0% 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition:
        background-position 0.55s var(--vsp-ease),
        letter-spacing 0.4s var(--vsp-ease),
        box-shadow 0.45s var(--vsp-ease),
        filter 0.4s ease;
}

.vsp-hero-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.22) 48%, transparent 72%);
    transform: translateX(-130%);
    transition: transform 0.7s var(--vsp-ease);
    pointer-events: none;
    z-index: 0;
}

.vsp-hero-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.vsp-hero-submit span,
.vsp-hero-submit i {
    position: relative;
    z-index: 1;
}

.vsp-hero-submit i {
    transition: transform 0.45s var(--vsp-ease);
}

.vsp-hero-submit:hover {
    background-position: 100% 50%;
    letter-spacing: 0.03em;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(47, 128, 237, 0.35);
    filter: brightness(1.05);
}

.vsp-hero-submit:hover::before {
    transform: translateX(130%);
}

.vsp-hero-submit:hover::after {
    opacity: 1;
}

.vsp-hero-submit:hover i {
    transform: translateX(4px) scale(1.05);
}

.vsp-hero-submit:active {
    filter: brightness(0.98);
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .vsp-hero-submit {
        width: auto;
        min-width: 12.5rem;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-shrink: 0;
    }
}

.vsp-hero-form-foot {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.85rem;
    text-align: left;
}

@media (min-width: 720px) {
    .vsp-hero-form-foot {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .vsp-hero-form-foot .vsp-reg-feedback,
    .vsp-hero-form-foot .vsp-hero-hint {
        margin: 0;
    }
}

.vsp-reg-feedback {
    margin: 0;
    min-height: 1.15rem;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 500;
    color: #64748b;
}

.vsp-reg-feedback.is-error {
    color: #be123c;
}

.vsp-reg-feedback.is-success {
    color: #0f766e;
}

.vsp-hero-check-form .vsp-reg-feedback {
    color: rgba(168, 182, 197, 0.8);
}

.vsp-hero-check-form .vsp-reg-feedback.is-error {
    color: #fb7185;
}

.vsp-hero-check-form .vsp-reg-feedback.is-success {
    color: #5eead4;
}

[data-reg-input].vsp-reg-invalid {
    border-color: rgba(190, 24, 93, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.15) !important;
}

[data-reg-input].vsp-reg-valid {
    border-color: rgba(47, 128, 237, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.12) !important;
}

.vsp-hero-hint {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(168, 182, 197, 0.85);
}

.vsp-hero-hint i {
    color: var(--vsp-accent-bright);
}

@media (prefers-reduced-transparency: reduce) {
    .vsp-hero-form-shell {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(11, 29, 48, 0.94);
    }

    .vsp-hero-form-shell::before {
        display: none;
    }
}

.vsp-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(232, 238, 245, 0.65);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: vsp-enter 0.9s var(--vsp-ease) 1.1s forwards;
    transition: color 0.25s ease;
}

.vsp-scroll-cue:hover {
    color: #fff;
}

.vsp-scroll-cue-line {
    width: 1px;
    height: 2.25rem;
    background: linear-gradient(180deg, var(--vsp-accent-bright), transparent);
    animation: vsp-scroll-pulse 2s ease-in-out infinite;
}

@keyframes vsp-scroll-pulse {
    0%, 100% { transform: scaleY(0.7); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Hero entrance */
.vsp-hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: vsp-enter 0.9s var(--vsp-ease) forwards;
}

.vsp-hero-anim-1 { animation-delay: 0.2s; }
.vsp-hero-anim-2 { animation-delay: 0.35s; }
.vsp-hero-anim-3 { animation-delay: 0.5s; }
.vsp-hero-anim-4 { animation-delay: 0.65s; }
.vsp-hero-anim-5 { animation-delay: 0.8s; }

@keyframes vsp-enter {
    to {
        opacity: 1;
        transform: none;
    }
}

/* ========== SECTIONS ========== */
.vsp-band {
    position: relative;
    padding: 4.5rem 0;
}

@media (min-width: 768px) {
    .vsp-band {
        padding: 6rem 0;
    }
}

.vsp-band-light {
    background: var(--vsp-white);
}

.vsp-band-muted {
    background: var(--vsp-off-white);
}

.vsp-band-navy {
    background: linear-gradient(180deg, var(--vsp-navy-900) 0%, var(--vsp-navy-950) 100%);
    color: #fff;
}

.vsp-section-label {
    display: block;
    margin: 0 0 0.85rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vsp-accent);
    text-align: center;
}

.vsp-band-navy .vsp-section-label {
    color: var(--vsp-accent-bright);
}

.vsp-section-head {
    margin: 0;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--vsp-ink);
    text-align: center;
}

.vsp-band-navy .vsp-section-head {
    color: #fff;
}

.vsp-section-sub {
    margin: 1rem auto 0;
    max-width: 36rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--vsp-ink-soft);
}

.vsp-band-navy .vsp-section-sub {
    color: rgba(232, 238, 245, 0.75);
}

/* Benefits â€” editorial numbered list */
.vsp-reveal-grid {
    display: grid;
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--vsp-line-strong);
}

.vsp-reveal-item {
    display: grid;
    gap: 1rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--vsp-line);
    transition: background 0.3s ease;
}

@media (min-width: 720px) {
    .vsp-reveal-item {
        grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.4fr);
        gap: 1.5rem 2rem;
        align-items: baseline;
        padding: 2rem 0.5rem;
    }

    .vsp-reveal-item:hover {
        background: linear-gradient(90deg, rgba(47, 128, 237, 0.04), transparent);
    }
}

.vsp-reveal-num {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--vsp-accent);
}

.vsp-reveal-item h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--vsp-ink);
}

.vsp-reveal-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--vsp-ink-soft);
}

/* How it works â€” editorial process (no glow / no tech lines) */
.vsp-process {
    background: linear-gradient(180deg, #081827 0%, #07111f 100%);
}

.vsp-process .vsp-section-head {
    text-align: left;
}

.vsp-process .vsp-section-label {
    text-align: left;
}

.vsp-process-intro {
    display: grid;
    gap: 1.75rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

@media (min-width: 900px) {
    .vsp-process-intro {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4rem;
        align-items: end;
        padding-bottom: 3.25rem;
    }
}

.vsp-process-intro-copy .vsp-section-head {
    margin: 0;
    max-width: 10ch;
}

.vsp-process-intro-aside {
    max-width: 28rem;
}

.vsp-process-intro-aside p {
    margin: 0 0 1.35rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(232, 238, 245, 0.72);
}

.vsp-process-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    border-bottom: 1px solid rgba(74, 158, 255, 0.55);
    padding-bottom: 0.35rem;
    transition: color 0.25s ease, border-color 0.25s ease, gap 0.3s var(--vsp-ease);
}

.vsp-process-link:hover {
    color: var(--vsp-accent-bright);
    border-color: var(--vsp-accent-bright);
    gap: 0.9rem;
}

.vsp-process-link i {
    font-size: 0.8rem;
    transition: transform 0.3s var(--vsp-ease);
}

.vsp-process-link:hover i {
    transform: translateX(3px);
}

.vsp-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

@media (min-width: 900px) {
    .vsp-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vsp-step {
    position: relative;
    padding: 1.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
    .vsp-step {
        padding: 3rem 2rem 2.75rem 0;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .vsp-step:first-child {
        padding-left: 0;
    }

    .vsp-step:last-child {
        border-right: none;
        padding-right: 0;
        padding-left: 2rem;
    }

    .vsp-step:nth-child(2) {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vsp-step:last-child {
    border-bottom: none;
}

@media (max-width: 899px) {
    .vsp-step:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1.85rem;
    }
}

.vsp-step-num {
    display: block;
    margin: 0 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--vsp-accent-bright);
}

.vsp-step h3 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #fff;
    transition: color 0.3s ease;
}

.vsp-step:hover h3 {
    color: var(--vsp-accent-bright);
}

.vsp-step p {
    margin: 0;
    max-width: 28ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(168, 182, 197, 0.92);
}

.vsp-process-footnote {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vsp-process-footnote p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(168, 182, 197, 0.75);
}

.vsp-process-footnote span {
    color: #fff;
    font-weight: 600;
    margin-right: 0.35rem;
}

/* Testimonials — premium dual marquee */
.vsp-testimonials {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(47, 128, 237, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #eef3f8 0%, #f7f9fc 45%, #eef3f8 100%);
}

.vsp-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 42, 67, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 42, 67, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.7;
}

.vsp-testimonials .vsp-container {
    position: relative;
    z-index: 1;
}

.vsp-trust-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin: 1.75rem auto 0;
    max-width: 36rem;
}

.vsp-trust-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    min-width: 6.5rem;
    padding: 0.7rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 42, 67, 0.08);
    box-shadow: 0 8px 24px rgba(7, 17, 31, 0.04);
}

.vsp-trust-proof-item strong {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--vsp-navy-850);
}

.vsp-trust-proof-item span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7c8f;
}

.vsp-testimonial-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2.75rem;
}

.vsp-testimonial-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.35rem 0;
}

.vsp-testimonial-stack::before,
.vsp-testimonial-stack::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(12vw, 120px);
    z-index: 4;
    pointer-events: none;
}

.vsp-testimonial-stack::before {
    left: 0;
    background: linear-gradient(90deg, #eef3f8, transparent);
}

.vsp-testimonial-stack::after {
    right: 0;
    background: linear-gradient(270deg, #eef3f8, transparent);
}

.vsp-testimonial-track {
    display: flex;
    width: max-content;
    gap: 1.15rem;
    will-change: transform;
}

.vsp-testimonial-track--ltr {
    animation: vsp-marquee-ltr 58s linear infinite;
}

.vsp-testimonial-track--rtl {
    animation: vsp-marquee-rtl 64s linear infinite;
}

.vsp-testimonial-stack:hover .vsp-testimonial-track {
    animation-play-state: paused;
}

.vsp-testimonial-group {
    display: flex;
    gap: 1.15rem;
    flex-shrink: 0;
}

.vsp-testimonial-card {
    position: relative;
    width: min(86vw, 360px);
    min-height: 248px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.45rem 1.4rem 1.3rem;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.94) 100%);
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 1.15rem;
    box-shadow:
        0 18px 40px rgba(7, 17, 31, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: transform 0.4s var(--vsp-ease), border-color 0.3s ease, box-shadow 0.4s ease;
}

.vsp-testimonial-card::before {
    content: "“";
    position: absolute;
    top: 0.55rem;
    right: 1.1rem;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 600;
    color: rgba(47, 128, 237, 0.1);
    pointer-events: none;
    user-select: none;
}

.vsp-testimonial-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--vsp-accent-bright), rgba(47, 128, 237, 0.15));
    opacity: 0.85;
}

.vsp-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 128, 237, 0.28);
    box-shadow:
        0 28px 56px rgba(7, 17, 31, 0.1),
        0 0 0 1px rgba(47, 128, 237, 0.08);
}

.vsp-testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.vsp-testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(229, 169, 26, 0.12);
    color: #d4920f;
    font-size: 0.72rem;
}

.vsp-testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--vsp-accent);
}

.vsp-testimonial-verified i {
    font-size: 0.78rem;
    color: var(--vsp-accent-bright);
}

.vsp-testimonial-quote {
    position: relative;
    z-index: 1;
    margin: 0;
    flex: 1;
    color: var(--vsp-ink);
    line-height: 1.65;
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.vsp-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 42, 67, 0.08);
}

.vsp-testimonial-avatar {
    width: 2.55rem;
    height: 2.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--vsp-navy-700), var(--vsp-navy-900));
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.15);
}

.vsp-testimonial-meta strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--vsp-ink);
    line-height: 1.2;
}

.vsp-testimonial-meta small {
    display: block;
    margin-top: 0.2rem;
    color: #6b7c8f;
    font-size: 0.76rem;
    font-weight: 500;
}

@keyframes vsp-marquee-ltr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@keyframes vsp-marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Brands — premium LTR marquee */
.wrapper-brands,
.vsp-brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 2.75rem;
    padding: 1.25rem 0;
}

.vsp-brands-marquee::before,
.vsp-brands-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(10vw, 100px);
    z-index: 3;
    pointer-events: none;
}

.vsp-brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--vsp-off-white), transparent);
}

.vsp-brands-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--vsp-off-white), transparent);
}

.vsp-brands-track {
    display: flex;
    width: max-content;
    gap: 2.75rem;
    animation: vsp-marquee-ltr 48s linear infinite;
    will-change: transform;
}

.vsp-brands-marquee:hover .vsp-brands-track {
    animation-play-state: paused;
}

.flex-brands {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2.75rem;
    flex-shrink: 0;
    padding: 0.35rem 0;
}

.flex-brands img {
    height: 3.35rem;
    width: auto;
    max-width: 9.5rem;
    object-fit: contain;
    opacity: 0.62;
    filter: grayscale(1);
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.4s var(--vsp-ease);
}

.flex-brands img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-3px) scale(1.06);
}

@media (min-width: 768px) {
    .flex-brands {
        gap: 3.5rem;
    }

    .vsp-brands-track {
        gap: 3.5rem;
    }

    .flex-brands img {
        height: 4.35rem;
        max-width: 12rem;
    }
}

/* FAQ — dark premium accordion */
.vsp-faq {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 70% 0%, rgba(47, 128, 237, 0.16), transparent 55%),
        linear-gradient(180deg, var(--vsp-navy-850) 0%, var(--vsp-navy-950) 100%);
    color: #fff;
}

.vsp-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 65% 60% at 50% 30%, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.6;
}

.vsp-faq .vsp-container {
    position: relative;
    z-index: 1;
    max-width: 72rem;
}

.vsp-faq-intro {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

@media (min-width: 768px) {
    .vsp-faq-intro {
        padding-bottom: 3rem;
    }
}

.vsp-faq-label {
    display: block;
    margin: 0 0 0.85rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vsp-accent-bright);
}

.vsp-faq-title {
    margin: 0;
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.05;
    color: #fff;
    text-align: left;
}

.vsp-faq-lede {
    margin: 1.15rem 0 0;
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(232, 238, 245, 0.68);
}

.vsp-faq-stack {
    margin-top: 0.35rem;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.vsp-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 !important;
    margin: 0 !important;
    transition: background 0.4s var(--vsp-ease);
}

.vsp-faq-item:first-child {
    border-top: none;
}

.vsp-faq-item.is-open {
    background: rgba(255, 255, 255, 0.035);
}

.faq-trigger {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem 1.25rem;
    width: 100%;
    padding: 1.45rem 0.2rem;
    text-align: left;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, padding 0.4s var(--vsp-ease);
}

@media (min-width: 768px) {
    .faq-trigger {
        padding: 1.7rem 0.35rem;
        gap: 1.5rem;
    }
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
    background: transparent;
    outline: none;
    color: #fff;
    padding-left: 0.55rem;
}

.faq-trigger[aria-expanded="true"] {
    color: #fff;
}

.vsp-faq-num {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--vsp-accent-bright);
    min-width: 1.5rem;
    transition: transform 0.35s var(--vsp-ease), color 0.3s ease;
}

.faq-trigger:hover .vsp-faq-num,
.faq-trigger[aria-expanded="true"] .vsp-faq-num {
    transform: translateX(2px);
}

.vsp-faq-q {
    min-width: 0;
}

.vsp-faq-toggle {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.45s var(--vsp-ease),
        box-shadow 0.35s ease;
}

.faq-trigger:hover .vsp-faq-toggle {
    border-color: rgba(74, 158, 255, 0.5);
    background: rgba(47, 128, 237, 0.14);
}

.faq-trigger[aria-expanded="true"] .vsp-faq-toggle {
    border-color: rgba(74, 158, 255, 0.55);
    background: rgba(47, 128, 237, 0.2);
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
    transform: rotate(180deg);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--vsp-accent-bright);
    font-size: 0.75rem;
    transition: transform 0.35s var(--vsp-ease), color 0.3s ease, opacity 0.3s ease;
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s var(--vsp-ease);
}

.vsp-faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel-inner {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.4s var(--vsp-ease) 0.05s,
        transform 0.45s var(--vsp-ease) 0.05s;
    padding: 0 0.2rem 0;
    padding-left: calc(1.5rem + 1.25rem);
}

.vsp-faq-item.is-open .faq-panel-inner {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 1.55rem;
}

@media (min-width: 768px) {
    .faq-panel-inner {
        padding-left: calc(1.5rem + 1.5rem + 0.35rem);
        max-width: 42rem;
    }

    .vsp-faq-item.is-open .faq-panel-inner {
        padding-bottom: 1.85rem;
    }
}

.faq-panel[hidden] {
    display: grid !important;
}

.faq-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(232, 238, 245, 0.7);
}

.vsp-faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.1rem;
}

.vsp-faq-chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-panel,
    .faq-panel-inner,
    .vsp-faq-toggle,
    .vsp-faq-num,
    .faq-trigger {
        transition: none !important;
    }
}

/* Product showcase — editorial / award-level */
.vsp-product {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f3f6f9 0%, #e9eef4 100%);
}

.vsp-product::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 12% 18%, rgba(47, 128, 237, 0.07), transparent 60%),
        radial-gradient(ellipse 40% 35% at 88% 72%, rgba(8, 24, 39, 0.05), transparent 65%);
    pointer-events: none;
}

.vsp-product .vsp-container {
    position: relative;
    z-index: 1;
}

.vsp-product-intro {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(16, 42, 67, 0.12);
}

@media (min-width: 900px) {
    .vsp-product-intro {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        align-items: end;
        gap: 3rem;
        padding-bottom: 3.25rem;
    }
}

.vsp-product-label {
    display: block;
    margin: 0 0 0.85rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vsp-accent);
}

.vsp-product-title {
    margin: 0;
    font-size: clamp(2.15rem, 5vw, 3.6rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.05;
    color: var(--vsp-ink);
    text-align: left;
}

.vsp-product-lede {
    margin: 0;
    max-width: 28rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--vsp-ink-soft);
}

@media (min-width: 900px) {
    .vsp-product-lede {
        justify-self: end;
        text-align: right;
        padding-bottom: 0.35rem;
    }
}

.vsp-product-stage {
    display: grid;
    gap: 2.5rem;
    margin-top: 2.75rem;
}

@media (min-width: 900px) {
    .vsp-product-stage {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 0;
        margin-top: 3.5rem;
        align-items: stretch;
    }
}

.vsp-product-statement {
    position: relative;
    padding: 2.25rem 1.75rem;
    background: linear-gradient(160deg, var(--vsp-navy-850) 0%, var(--vsp-navy-950) 100%);
    color: #fff;
    border-radius: 0;
}

@media (min-width: 900px) {
    .vsp-product-statement {
        padding: 3.25rem 3rem 3rem 0;
        margin-right: 3rem;
        background: transparent;
        color: var(--vsp-ink);
        border-right: 1px solid rgba(16, 42, 67, 0.12);
    }

    .vsp-product-statement::before {
        content: "";
        position: absolute;
        left: -1.75rem;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(16, 42, 67, 0.12);
        display: none;
    }
}

@media (max-width: 899px) {
    .vsp-product-statement {
        border-radius: 1rem;
        box-shadow: 0 24px 60px rgba(7, 17, 31, 0.18);
    }
}

.vsp-product-index {
    margin: 0 0 1.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vsp-accent-bright);
}

@media (min-width: 900px) {
    .vsp-product-index {
        color: var(--vsp-accent);
    }
}

.vsp-product-statement-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: clamp(1.85rem, 3.4vw, 2.85rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.vsp-product-statement-title span {
    display: block;
}

@media (min-width: 900px) {
    .vsp-product-statement-title span:nth-child(2) {
        color: var(--vsp-ink-soft);
    }

    .vsp-product-statement-title span:nth-child(3) {
        color: var(--vsp-accent);
    }
}

.vsp-product-statement-body {
    margin: 1.35rem 0 0;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(232, 238, 245, 0.78);
}

@media (min-width: 900px) {
    .vsp-product-statement-body {
        color: var(--vsp-ink-soft);
    }
}

.vsp-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    border-bottom: 1px solid rgba(74, 158, 255, 0.55);
    padding-bottom: 0.4rem;
    transition: color 0.25s ease, border-color 0.25s ease, gap 0.3s var(--vsp-ease);
}

@media (min-width: 900px) {
    .vsp-product-link {
        color: var(--vsp-ink);
        border-bottom-color: rgba(16, 42, 67, 0.35);
    }
}

.vsp-product-link:hover {
    color: var(--vsp-accent-bright);
    border-color: var(--vsp-accent-bright);
    gap: 0.95rem;
}

@media (min-width: 900px) {
    .vsp-product-link:hover {
        color: var(--vsp-accent);
        border-color: var(--vsp-accent);
    }
}

.vsp-product-link i {
    font-size: 0.8rem;
    transition: transform 0.3s var(--vsp-ease);
}

.vsp-product-link:hover i {
    transform: translateX(3px);
}

.vsp-product-index-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .vsp-product-index-list {
        padding: 0.5rem 0 0.5rem 3rem;
    }
}

.vsp-product-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(16, 42, 67, 0.1);
    transition: padding-left 0.35s var(--vsp-ease);
}

.vsp-product-item:first-child {
    padding-top: 0;
}

.vsp-product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 900px) {
    .vsp-product-item:hover {
        padding-left: 0.5rem;
    }
}

.vsp-product-num {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--vsp-accent);
    padding-top: 0.3rem;
}

.vsp-product-item-body h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--vsp-ink);
    line-height: 1.25;
}

.vsp-product-item-body p {
    margin: 0.55rem 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--vsp-ink-soft);
    max-width: 28rem;
}

.vsp-product-footer {
    display: grid;
    gap: 1.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 42, 67, 0.12);
}

@media (min-width: 900px) {
    .vsp-product-footer {
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 2rem;
        margin-top: 3.75rem;
        padding-top: 2.5rem;
    }
}

.vsp-product-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    margin: 0;
}

@media (min-width: 700px) {
    .vsp-product-metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.vsp-product-metrics dt {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7c8f;
}

.vsp-product-metrics dd {
    margin: 0.35rem 0 0;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--vsp-ink);
    line-height: 1.1;
}

.vsp-product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.15rem 1.5rem;
}

.vsp-product-checkout {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vsp-ink-soft);
    border-bottom: 1px solid rgba(16, 42, 67, 0.25);
    padding-bottom: 0.2rem;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.vsp-product-checkout:hover {
    color: var(--vsp-accent);
    border-color: var(--vsp-accent);
}

/* Final CTA — editorial / award-level */
.vsp-band-cta {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    background: #07111f;
    color: #fff;
}

.vsp-band-cta::before {
    content: "";
    position: absolute;
    width: min(52vw, 34rem);
    height: min(52vw, 34rem);
    left: max(-6rem, -8vw);
    top: 50%;
    transform: translateY(-52%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 128, 237, 0.22) 0%, rgba(47, 128, 237, 0.08) 38%, transparent 70%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
}

.vsp-band-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.2), transparent);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .vsp-band-cta {
        padding: 6rem 0 6.5rem;
    }
}

.vsp-band-cta .vsp-container {
    position: relative;
    z-index: 2;
}

.vsp-cta-stage {
    display: grid;
    gap: 2.5rem;
    align-items: end;
}

@media (min-width: 900px) {
    .vsp-cta-stage {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3.5rem;
        align-items: center;
    }
}

.vsp-cta-copy {
    position: relative;
    z-index: 1;
}

.vsp-cta-label {
    display: block;
    margin: 0 0 0.9rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vsp-accent-bright);
}

.vsp-cta-title {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.05;
    color: #fff;
    text-align: left;
}

.vsp-cta-lead {
    margin: 1.25rem 0 0;
    max-width: 30rem;
    text-align: left;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(232, 238, 245, 0.72);
}

.vsp-cta-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2.25rem 0 0;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 28rem;
}

.vsp-cta-metrics dt {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.45);
}

.vsp-cta-metrics dd {
    margin: 0.35rem 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
}

.vsp-cta-panel {
    position: relative;
    width: 100%;
    max-width: 32rem;
    margin: 0;
    padding: 1.65rem 1.4rem 1.45rem;
    border-radius: 1.15rem;
    background:
        linear-gradient(160deg, rgba(74, 158, 255, 0.08) 0%, transparent 42%),
        rgba(10, 22, 38, 0.82);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 0.35s ease, box-shadow 0.4s ease;
    isolation: isolate;
}

@media (min-width: 900px) {
    .vsp-cta-panel {
        justify-self: end;
        max-width: none;
        padding: 1.9rem 1.75rem 1.65rem;
    }
}

.vsp-cta-panel:focus-within {
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(47, 128, 237, 0.18),
        0 0 40px rgba(47, 128, 237, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.vsp-cta-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vsp-cta-panel-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vsp-accent-bright);
}

.vsp-cta-panel h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #fff;
    text-align: left;
}

.vsp-cta-secure {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.vsp-cta-secure i {
    color: var(--vsp-accent-bright);
}

.vsp-cta-row {
    display: flex;
    flex-direction: column;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    background: rgba(5, 12, 22, 0.55);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vsp-cta-panel:focus-within .vsp-cta-row {
    border-color: rgba(74, 158, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.15);
}

@media (min-width: 520px) {
    .vsp-cta-row {
        flex-direction: row;
        align-items: stretch;
    }
}

.vsp-cta-row input {
    width: 100%;
    flex: 1;
    min-width: 0;
    padding: 1.05rem 1.15rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    outline: none;
    caret-color: var(--vsp-accent-bright);
}

.vsp-cta-row input::placeholder {
    color: rgba(168, 182, 197, 0.55);
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.vsp-cta-row button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.05rem 1.35rem;
    border: none;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #2a74e0 0%, var(--vsp-accent) 45%, #4a9eff 100%);
    background-size: 180% 180%;
    background-position: 0% 50%;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition:
        background-position 0.55s var(--vsp-ease),
        gap 0.4s var(--vsp-ease),
        box-shadow 0.45s var(--vsp-ease),
        filter 0.4s ease;
}

.vsp-cta-row button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.22) 48%, transparent 72%);
    transform: translateX(-130%);
    transition: transform 0.7s var(--vsp-ease);
    pointer-events: none;
    z-index: 0;
}

.vsp-cta-row button span,
.vsp-cta-row button i {
    position: relative;
    z-index: 1;
}

.vsp-cta-row button i {
    transition: transform 0.45s var(--vsp-ease);
}

.vsp-cta-row button:hover {
    background-position: 100% 50%;
    gap: 0.75rem;
    filter: brightness(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 12px 28px rgba(47, 128, 237, 0.32);
}

.vsp-cta-row button:hover::before {
    transform: translateX(130%);
}

.vsp-cta-row button:hover i {
    transform: translateX(4px);
}

.vsp-cta-row button:active {
    filter: brightness(0.98);
}

@media (min-width: 520px) {
    .vsp-cta-row button {
        width: auto;
        min-width: 10.5rem;
    }
}

.vsp-cta-panel-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-top: 0.95rem;
}

.vsp-cta-panel .vsp-reg-feedback {
    margin: 0;
    text-align: left;
    font-size: 0.78rem;
    color: rgba(168, 182, 197, 0.85);
}

.vsp-cta-panel .vsp-reg-feedback.is-error {
    color: #ff8f8f;
}

.vsp-cta-panel .vsp-reg-feedback.is-success {
    color: #7ddea3;
}

.vsp-cta-note {
    margin: 0;
    text-align: right;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(232, 238, 245, 0.55);
}

@media (max-width: 519px) {
    .vsp-cta-panel-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .vsp-cta-note {
        text-align: left;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .vsp-cta-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 22, 38, 0.98);
    }

    .vsp-band-cta::before {
        filter: none;
        opacity: 0.5;
    }
}

/* ========== FOOTER ========== */
.vsp-footer {
    position: relative;
    background: var(--vsp-navy-950);
    color: #fff;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(74, 158, 255, 0.15);
}

.vsp-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .vsp-footer-cta {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.vsp-footer-cta h2 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.vsp-footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .vsp-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 3rem;
    }
}

.vsp-footer-brand p {
    margin: 1rem 0 0;
    max-width: 28rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(168, 182, 197, 0.9);
}

.vsp-footer h3 {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.55);
}

.vsp-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vsp-footer li + li {
    margin-top: 0.65rem;
}

.vsp-footer a,
.vsp-footer ul a {
    color: rgba(232, 238, 245, 0.78);
    font-size: 0.925rem;
    transition: color 0.2s ease;
}

.vsp-footer a:hover,
.vsp-footer ul a:hover {
    color: #fff;
}

.vsp-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
    .vsp-footer-bottom {
        flex-direction: row;
    }
}

.vsp-footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(168, 182, 197, 0.75);
}

.vsp-footer-bottom img {
    height: 1.75rem;
    width: auto;
    opacity: 0.85;
}

/* Legacy alias */
footer.vsp-footer-glass {
    position: relative;
    background: var(--vsp-navy-950) !important;
    border-top: 1px solid rgba(74, 158, 255, 0.15);
    padding: 4rem 0 0 !important;
}

/* Scroll reveals */
.vsp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--vsp-ease), transform 0.7s var(--vsp-ease);
}

.vsp-reveal.vsp-visible {
    opacity: 1;
    transform: none;
}

.vsp-reveal-delay-1 { transition-delay: 0.08s; }
.vsp-reveal-delay-2 { transition-delay: 0.16s; }
.vsp-reveal-delay-3 { transition-delay: 0.24s; }

/* Legal / content pages */
.vsp-legal-main {
    padding: calc(var(--vsp-header-h) + 3rem) 0 4rem;
}

.prose.content-area {
    max-width: 48rem;
    margin: 0 auto;
}

.prose.content-area p,
.prose.content-area li {
    line-height: 1.75;
    color: var(--vsp-ink-soft);
}

.prose.content-area h3 {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--vsp-ink);
}

.prose.content-area a {
    color: var(--vsp-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ========== SITE PRELOADER ========== */
.vsp-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 35%, rgba(47, 128, 237, 0.18), transparent 58%),
        linear-gradient(165deg, #0a1626 0%, #07111f 55%, #050b14 100%);
    color: #fff;
    transition: opacity 0.65s var(--vsp-ease), visibility 0.65s var(--vsp-ease);
}

.vsp-preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vsp-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    width: min(88vw, 18rem);
    text-align: center;
}

.vsp-preloader-mark {
    opacity: 0;
    transform: translateY(10px);
    animation: vsp-preloader-in 0.7s var(--vsp-ease) 0.1s forwards;
}

.vsp-preloader-mark img {
    width: min(180px, 56vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.vsp-preloader-track {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: vsp-preloader-in 0.6s var(--vsp-ease) 0.25s forwards;
}

.vsp-preloader-progress {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--vsp-accent), var(--vsp-accent-bright));
    box-shadow: 0 0 16px rgba(74, 158, 255, 0.45);
    animation: vsp-preloader-bar 1.35s var(--vsp-ease) 0.2s forwards;
}

.vsp-preloader-copy {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.55);
    opacity: 0;
    animation: vsp-preloader-in 0.6s var(--vsp-ease) 0.4s forwards;
}

@keyframes vsp-preloader-in {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes vsp-preloader-bar {
    0% { width: 0; }
    55% { width: 68%; }
    100% { width: 100%; }
}

body.is-loading {
    overflow: hidden;
}

body.is-loading > *:not(.vsp-preloader) {
    visibility: hidden;
}

body.is-loaded > *:not(.vsp-preloader) {
    visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
    .vsp-preloader-mark,
    .vsp-preloader-track,
    .vsp-preloader-copy,
    .vsp-preloader-progress {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .vsp-preloader-progress {
        width: 100%;
    }

    .vsp-preloader {
        transition-duration: 0.01ms;
    }
}

/* Checkout page helpers (shared) */
#pageloader {
    display: none;
}

.lead-form .form-button button {
    transition: transform 0.2s var(--vsp-ease), box-shadow 0.25s ease;
}

.custom-box {
    border-radius: var(--vsp-radius-lg) !important;
    background: var(--vsp-white) !important;
    border: 1px solid var(--vsp-line-strong) !important;
    box-shadow: var(--vsp-shadow-sm);
}

.lead-form.footer-lead-form {
    background: var(--vsp-white) !important;
    border: 1px solid var(--vsp-line-strong) !important;
    border-radius: var(--vsp-radius-lg) !important;
}

input[type="text"],
input[type="email"] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.18);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .vsp-reveal,
    .vsp-hero-anim,
    .vsp-logo-link,
    .vsp-nav-desktop,
    .vsp-nav-actions,
    .vsp-scroll-cue {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .vsp-testimonial-track,
    .vsp-brands-track {
        animation: none !important;
        transform: none !important;
    }

    .vsp-testimonial-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vsp-testimonial-track .vsp-testimonial-group[aria-hidden="true"] {
        display: none;
    }

    .vsp-brands-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vsp-brands-track .flex-brands[aria-hidden="true"] {
        display: none;
    }

    .vsp-scroll-cue-line {
        animation: none !important;
    }
}

/* Mobile refinements — premium 390px experience */
@media (max-width: 767px) {
    :root {
        --vsp-header-h: 4rem;
    }

    body.vsp-home .vsp-nav:not(.is-scrolled):not(.is-solid) {
        margin-top: 0;
    }

    .vsp-nav.is-scrolled,
    .vsp-nav.is-solid,
    body:not(.vsp-home) .vsp-nav {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    }

    .vsp-logo-link img {
        height: 2.55rem;
    }

    .vsp-nav-inner {
        padding: 0 1rem;
    }

    .vsp-mobile-panel {
        padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
        padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
        padding-left: max(1.15rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.15rem, env(safe-area-inset-right, 0px));
    }

    .vsp-mobile-links a {
        min-height: 2.85rem;
        display: flex;
        align-items: center;
    }

    .vsp-mobile-meta {
        gap: 1rem;
        padding-top: 1.25rem;
    }

    .vsp-mobile-meta .vsp-mobile-mail span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .vsp-mobile-meta .vsp-mobile-cta {
        min-height: 3.6rem !important;
        padding: 1.05rem 1.35rem !important;
        font-size: 1.02rem !important;
    }

    .vsp-hero {
        min-height: auto;
        align-items: flex-start;
        overflow: hidden;
    }

    .vsp-hero-media {
        position: absolute;
    }

    .vsp-hero-content {
        padding: calc(var(--vsp-header-h) + 1.15rem) 1rem 2.75rem;
    }

    .vsp-hero-center {
        gap: 1.5rem;
    }

    .vsp-hero-copy {
        text-align: center;
    }

    .vsp-hero-title {
        max-width: none;
        margin-bottom: 0.85rem;
        font-size: clamp(1.7rem, 7vw, 2.25rem);
        line-height: 1.18;
        white-space: normal;
    }

    .vsp-hero-lead {
        margin: 0 auto 1.15rem;
        max-width: 28rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .vsp-hero-actions {
        margin-bottom: 0.35rem;
        gap: 0.65rem;
        justify-content: center;
    }

    .vsp-btn {
        min-height: 2.85rem;
        padding: 0.75rem 1.2rem;
        font-size: 0.8125rem;
    }

    .vsp-hero-form-shell {
        padding: 1.15rem 1rem 1.05rem;
        border-radius: 1rem;
    }

    .vsp-hero-form-head {
        margin-bottom: 0.95rem;
        gap: 0.75rem;
    }

    .vsp-hero-form-icon {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.95rem;
    }

    .vsp-hero-form-title {
        font-size: 1rem;
    }

    .vsp-field-label {
        margin-bottom: 0.45rem;
        font-size: 0.68rem;
    }

    .vsp-hero-input,
    .vsp-hero-submit {
        padding: 0.95rem 1rem;
        font-size: 1rem;
    }

    .vsp-hero-input {
        letter-spacing: 0.06em;
    }

    .vsp-hero-form-foot {
        gap: 0.45rem;
    }

    .vsp-scroll-cue {
        display: none;
    }

    .vsp-band {
        padding: 3.25rem 0;
    }

    .vsp-section-head {
        font-size: clamp(1.65rem, 7vw, 2.15rem);
    }

    .vsp-section-sub {
        font-size: 0.98rem;
        padding: 0 0.15rem;
    }

    .vsp-trust-proof {
        gap: 0.5rem;
        margin-top: 1.35rem;
    }

    .vsp-trust-proof-item {
        min-width: 0;
        flex: 1 1 calc(33.333% - 0.5rem);
        padding: 0.55rem 0.45rem;
    }

    .vsp-trust-proof-item strong {
        font-size: 0.95rem;
    }

    .vsp-trust-proof-item span {
        font-size: 0.62rem;
        letter-spacing: 0.03em;
    }

    .vsp-testimonial-card {
        width: min(78vw, 300px);
        min-height: 0;
        padding: 1.2rem 1.15rem 1.1rem;
    }

    .vsp-testimonial-quote {
        font-size: 0.92rem;
    }

    .vsp-testimonial-stack::before,
    .vsp-testimonial-stack::after {
        width: 36px;
    }

    .flex-brands,
    .vsp-brands-track {
        gap: 1.75rem;
    }

    .flex-brands img {
        height: 2.55rem;
        max-width: 7.25rem;
    }

    .vsp-process-footnote {
        gap: 0.75rem 1.25rem;
        margin-top: 1.75rem;
    }

    .vsp-faq-intro {
        padding-bottom: 1.75rem;
    }

    .vsp-faq-item.is-open {
        background: transparent;
    }

    .vsp-faq-title {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
    }

    .vsp-faq-lede {
        font-size: 0.98rem;
    }

    .faq-trigger {
        gap: 0.75rem;
        padding: 1.2rem 0;
        font-size: 1rem;
    }

    .faq-trigger:hover {
        padding-left: 0;
    }

    .faq-panel-inner {
        padding-left: 0.1rem;
        max-width: none;
    }

    .vsp-faq-item.is-open .faq-panel-inner {
        padding-bottom: 1.25rem;
    }

    .vsp-faq-chips span {
        font-size: 0.64rem;
        padding: 0.3rem 0.55rem;
    }

    .vsp-product-title,
    .vsp-cta-title {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }

    .vsp-product-lede,
    .vsp-cta-lead {
        font-size: 0.98rem;
    }

    .vsp-product-statement {
        padding: 1.65rem 1.25rem;
    }

    .vsp-product-statement-title {
        font-size: clamp(1.55rem, 6.5vw, 2rem);
    }

    .vsp-product-item {
        gap: 0.85rem;
        padding: 1.25rem 0;
    }

    .vsp-product-item-body h4 {
        font-size: 1.05rem;
    }

    .vsp-product-metrics {
        gap: 1rem 1.1rem;
    }

    .vsp-product-metrics dt {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    .vsp-product-metrics dd {
        font-size: 1.15rem;
    }

    .vsp-product-actions {
        width: 100%;
    }

    .vsp-product-actions .vsp-btn {
        width: 100%;
    }

    .vsp-cta-metrics {
        max-width: none;
        gap: 0.85rem;
    }

    .vsp-cta-metrics dd {
        font-size: 1.05rem;
    }

    .vsp-cta-panel {
        padding: 1.35rem 1.1rem 1.2rem;
    }

    .vsp-cta-panel h3 {
        font-size: 1.05rem;
    }

    .vsp-cta-row input,
    .vsp-cta-row button {
        padding: 0.95rem 1.05rem;
        font-size: 0.95rem;
    }

    .vsp-footer {
        padding-top: 3rem;
    }

    .vsp-footer-cta .vsp-btn {
        width: 100%;
    }

    .vsp-footer a,
    .vsp-footer ul a {
        color: rgba(232, 238, 245, 0.78) !important;
    }

    .vsp-footer a:hover,
    .vsp-footer ul a:hover {
        color: #fff !important;
    }

    .vsp-footer li a {
        overflow-wrap: anywhere;
    }

    .vsp-footer-bottom img {
        max-width: min(100%, 11rem);
        height: auto;
    }

    .vsp-legal-main {
        padding: calc(var(--vsp-header-h) + 1.25rem) 0 2.5rem;
    }

    .vsp-legal-main .vsp-band {
        padding-top: 1.15rem;
        padding-bottom: 2.5rem;
    }

    .vsp-legal-main .vsp-section-head {
        font-size: clamp(1.6rem, 7vw, 2rem);
        margin-bottom: 1.5rem !important;
    }

    .vsp-legal-main .prose {
        font-size: 1rem;
    }

    .prose.content-area a {
        color: var(--vsp-accent);
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .vsp-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vsp-hero-actions .vsp-btn {
        width: 100%;
    }

    .vsp-cta-metrics {
        grid-template-columns: 1fr;
    }

    .vsp-cta-secure {
        display: none;
    }

    .vsp-trust-proof {
        flex-direction: column;
    }

    .vsp-trust-proof-item {
        flex: 1 1 auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 0.7rem 0.9rem;
    }

    .vsp-trust-proof-item span {
        text-transform: none;
        letter-spacing: 0.02em;
        font-size: 0.78rem;
    }
}

/* Prevent horizontal overflow */
.vsp-home,
.vsp-body {
    overflow-x: clip;
}

/* ========== SITE-WIDE PREMIUM HOVER SYSTEM ========== */
a,
button,
.vsp-btn,
.vsp-nav-cta,
.vsp-nav-ghost,
.vsp-nav-link,
.vsp-process-bar-cta,
.vsp-ch-submit,
.vsp-hero-submit,
.faq-trigger,
.vsp-reveal-item,
.vsp-step,
.vsp-product-item,
.vsp-testimonial-card,
.vsp-ch-trust,
.flex-brands img {
    transition-timing-function: var(--vsp-ease);
}

.vsp-reveal-item {
    transition: background 0.35s ease, transform 0.4s var(--vsp-ease), padding-left 0.35s var(--vsp-ease);
}

@media (min-width: 720px) {
    .vsp-reveal-item:hover {
        transform: translateX(6px);
        padding-left: 0.85rem;
    }

    .vsp-reveal-item:hover .vsp-reveal-num {
        color: var(--vsp-accent-bright);
    }

    .vsp-reveal-item:hover h3 {
        color: var(--vsp-navy-800);
    }
}

.vsp-reveal-num {
    transition: color 0.3s ease;
}

.vsp-reveal-item h3 {
    transition: color 0.3s ease;
}

.vsp-testimonial-card {
    transition: transform 0.4s var(--vsp-ease), border-color 0.3s ease, box-shadow 0.4s ease;
}

.vsp-process-bar-cta,
.vsp-nav-cta {
    position: relative;
    overflow: hidden;
}

.vsp-process-bar-cta::after,
.vsp-nav-cta::after,
.vsp-btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.6s var(--vsp-ease);
    pointer-events: none;
}

.vsp-process-bar-cta:hover::after,
.vsp-nav-cta:hover::after,
.vsp-btn-primary:hover::after {
    transform: translateX(120%);
}

.vsp-process-bar-cta i,
.vsp-nav-cta i,
.vsp-footer-cta .vsp-btn i {
    transition: transform 0.35s var(--vsp-ease);
}

.vsp-process-bar-cta:hover i,
.vsp-nav-cta:hover i,
.vsp-footer-cta .vsp-btn:hover i {
    transform: translateX(4px);
}

.faq-trigger {
    transition: color 0.25s ease, padding 0.35s var(--vsp-ease);
}

.faq-trigger:hover {
    padding-left: 0.85rem;
}

.faq-icon {
    transition: transform 0.35s var(--vsp-ease), color 0.3s ease;
}

.faq-trigger:hover .faq-icon {
    color: var(--vsp-accent-bright);
}

.vsp-footer a {
    position: relative;
    transition: color 0.25s ease, transform 0.3s var(--vsp-ease);
}

.vsp-footer ul a:hover {
    color: #fff;
    transform: translateX(4px);
}

.vsp-footer-cta .vsp-btn:hover {
    transform: translateY(-2px);
}

.vsp-ch-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.vsp-ch-trust:hover {
    transform: translateY(-2px);
}

.vsp-ch-trust-icon {
    transition: transform 0.35s var(--vsp-ease), background 0.3s ease;
}

.vsp-ch-trust:hover .vsp-ch-trust-icon {
    transform: scale(1.05);
    background: rgba(47, 128, 237, 0.18);
}

.vsp-logo-link:hover img {
    transform: translateY(-1px);
}

.vsp-nav-ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(74, 158, 255, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.vsp-nav-cta:hover {
    transform: translateY(-1px);
}

.vsp-menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .vsp-btn-primary::after,
    .vsp-process-bar-cta::after,
    .vsp-nav-cta::after,
    .vsp-hero-submit::before,
    .vsp-hero-submit::after,
    .vsp-cta-row button::before {
        display: none;
    }

    .vsp-reveal-item:hover,
    .vsp-hero-submit:hover,
    .vsp-cta-row button:hover,
    .vsp-btn-primary:hover,
    .vsp-nav-cta:hover {
        transform: none !important;
        filter: none !important;
        letter-spacing: inherit !important;
    }
}
