/**
 * VNS Web Solutions — brand overrides (see vnsrequiremnt.md)
 */
:root {
    --bs-primary: #1a365d;
    --bs-primary-rgb: 26, 54, 93;
    /* Template shipped with cyan --bs-secondary; override for readable body / muted text */
    --bs-secondary: #5c6b7a;
    --bs-secondary-rgb: 92, 107, 122;
    --vns-accent: #f97316;
    --vns-accent-rgb: 249, 115, 22;
    --vns-text: #1f2937;
    --vns-text-muted: #4b5563;
    --vns-surface: #f8fafc;
}

/* Template bootstrap.min.css hard-codes #0be1ff on "secondary" utilities — neutral slate */
.text-secondary {
    color: var(--vns-text-muted) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.border-secondary {
    border-color: var(--bs-secondary) !important;
}

.link-secondary {
    color: var(--vns-text-muted) !important;
}

.link-secondary:hover,
.link-secondary:focus {
    color: var(--bs-primary) !important;
}

.btn-secondary {
    color: #fff !important;
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff !important;
    background-color: #475569 !important;
    border-color: #434e5c !important;
}

.btn-secondary:disabled,
.btn-secondary.disabled {
    color: rgba(255, 255, 255, 0.7) !important;
    background-color: #94a3b8 !important;
    border-color: #94a3b8 !important;
}

.btn-outline-secondary {
    color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    background-color: transparent !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
    color: #fff !important;
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
    color: #94a3b8 !important;
    background-color: transparent !important;
    border-color: #cbd5e1 !important;
}

body {
    color: var(--vns-text);
}

.btn-accent {
    color: #fff !important;
    background-color: var(--vns-accent) !important;
    border: none;
    font-weight: 600;
}

.btn-accent:hover {
    color: #fff !important;
    filter: brightness(1.08);
}

.text-accent {
    color: var(--vns-accent) !important;
}

/* WhatsApp brand (official green) */
.btn-whatsapp {
    color: #fff !important;
    background-color: #25d366 !important;
    border: none !important;
    font-weight: 600;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff !important;
    background-color: #20bd5a !important;
    filter: none;
}

.btn-whatsapp:active {
    background-color: #1da851 !important;
}

.link-whatsapp {
    color: #128c7e !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.link-whatsapp:hover,
.link-whatsapp:focus {
    color: #075e54 !important;
}

.bg-breadcrumb {
    background:
        linear-gradient(135deg, rgba(26, 54, 93, 0.88) 0%, rgba(15, 23, 42, 0.9) 100%),
        url(../img/bg-breadcrumb-vns.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ---------- Main header: full-width, not a floating pill ---------- */
.vns-nav-shell {
    background: #fff;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    z-index: 1030;
    top: 0;
}

.vns-nav-shell.vns-nav-scrolled {
    box-shadow: 0 8px 28px rgba(26, 54, 93, 0.12);
    border-bottom-color: rgba(26, 54, 93, 0.08);
}

.vns-navbar .navbar-brand {
    flex-shrink: 0;
}

/* Kill template “rounded gray pill” behind nav links */
@media (min-width: 992px) {
    .navbar.vns-navbar .navbar-nav.vns-nav-main {
        background: transparent !important;
        border-radius: 0 !important;
        width: auto !important;
        max-width: none;
        flex: 1 1 auto;
        justify-content: center !important;
        gap: 0.15rem;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .navbar.vns-navbar .vns-nav-main .nav-item {
        padding: 0 0.35rem;
    }

    .navbar.vns-navbar .vns-nav-main .nav-link {
        padding: 0.65rem 0.85rem !important;
        font-weight: 600;
        font-size: 0.92rem;
        color: #334155 !important;
        border-radius: 0.5rem;
        transition: color 0.2s, background 0.2s;
    }

    .navbar.vns-navbar .vns-nav-main .nav-item:hover .nav-link,
    .navbar.vns-navbar .vns-nav-main .nav-item .nav-link:hover {
        color: var(--bs-primary) !important;
        background: rgba(26, 54, 93, 0.06);
    }

    .navbar.vns-navbar .vns-nav-main .nav-item.active .nav-link {
        color: var(--bs-primary) !important;
        background: rgba(249, 115, 22, 0.12);
    }

    /* Mega “Services” control is a <button> — match nav-link look; avoid template .nav-item:hover dropdown CSS fighting BS */
    .navbar.vns-navbar .vns-nav-main .vns-mega-toggle {
        cursor: pointer;
        font: inherit;
        text-align: inherit;
        color: inherit !important;
        width: auto;
    }

    .navbar.vns-navbar .vns-nav-main .vns-mega-toggle:focus-visible {
        outline: 2px solid var(--bs-primary);
        outline-offset: 2px;
    }
}

/* Phone + CTA cluster */
.vns-navbar-actions {
    flex-shrink: 0;
}

.vns-nav-call {
    background: rgba(26, 54, 93, 0.05);
    border: 1px solid rgba(26, 54, 93, 0.1);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.vns-nav-call:hover {
    background: rgba(26, 54, 93, 0.09);
    border-color: rgba(26, 54, 93, 0.18);
}

.vns-nav-call-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--bs-primary), #2c5282);
    color: #fff;
    font-size: 1rem;
}

.vns-nav-call-number {
    color: #0f172a;
    font-size: 1.05rem;
}

.vns-nav-toggler {
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
}

/* Mobile: full-height drawer slides in from the left (Bootstrap 5.0 has no offcanvas) */
.vns-nav-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vns-nav-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.vns-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(100vw - 0.5rem, 400px);
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    z-index: 1045;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0.5rem 0 2rem rgba(26, 54, 93, 0.18);
    border-right: 1px solid rgba(26, 54, 93, 0.12);
    transform: translateX(-100%);
    transition: transform 0.32s ease;
    outline: none;
}

.vns-nav-drawer.is-open {
    transform: translateX(0);
}

.vns-nav-drawer-header {
    flex-shrink: 0;
}

/* One scroll region: nav + CTAs + social (flex-grow-1 + mt-auto broke overflow on small screens) */
.vns-nav-drawer-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

body.vns-drawer-open {
    overflow: hidden;
}

.vns-logo-drawer {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(220px, calc(100vw - 5rem));
    object-fit: contain;
}

/* Mobile drawer — social row (matches admin-configured URLs + website) */
.vns-nav-drawer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--bs-primary);
    background: rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.14);
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.vns-nav-drawer-social-link:hover,
.vns-nav-drawer-social-link:focus-visible {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    transform: translateY(-1px);
}

.vns-nav-mobile .nav-link {
    color: #334155;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.vns-nav-mobile .nav-link:hover,
.vns-nav-mobile .nav-link:focus {
    color: var(--bs-primary);
    background: rgba(26, 54, 93, 0.06);
}

.vns-nav-mobile .nav-link.active {
    color: var(--bs-primary) !important;
    background: rgba(249, 115, 22, 0.1);
}

.vns-mobile-submenu-toggle {
    color: #334155;
    transition: background 0.2s, color 0.2s;
}

.vns-mobile-submenu-toggle:hover,
.vns-mobile-submenu-toggle:focus {
    color: var(--bs-primary);
    background: rgba(26, 54, 93, 0.06);
}

.vns-mobile-submenu-toggle.active {
    color: var(--bs-primary) !important;
    background: rgba(249, 115, 22, 0.1);
}

.vns-mobile-submenu-toggle .vns-mobile-chevron {
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.vns-mobile-submenu-toggle[aria-expanded="true"] .vns-mobile-chevron {
    transform: rotate(180deg);
}

/* Mobile drawer — Services submenu only (hamburger). Black link text, stacked list + industry tiles. */
@media (max-width: 991.98px) {
    .vns-nav-drawer .vns-mobile-mega-inner {
        background: #f1f5f9;
        border-radius: 0.75rem;
        margin: 0 0.65rem 0.65rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
    }

    .vns-nav-drawer .vns-mobile-mega-heading {
        display: flex;
        align-items: center;
        font-size: 0.68rem;
        letter-spacing: 0.07em;
        color: #0f172a;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.6rem !important;
        padding: 0.35rem 0 0.5rem;
        border-bottom: 1px solid rgba(15, 23, 42, 0.12);
        gap: 0.25rem;
    }

    .vns-nav-drawer .vns-mobile-mega-heading i {
        color: var(--vns-accent);
        font-size: 0.85rem;
        width: 1.25rem;
        text-align: center;
    }

    .vns-nav-drawer .vns-mobile-mega-section:first-child .vns-mobile-mega-heading {
        margin-top: 0.15rem;
    }

    .vns-nav-drawer .vns-mobile-svc-list {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .vns-nav-drawer .vns-mobile-svc-list li {
        margin: 0;
    }

    .vns-nav-drawer .vns-mobile-svc-item {
        display: block;
        width: 100%;
        padding: 0.7rem 0.85rem;
        background: #fff;
        color: #0f172a !important;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.35;
        text-decoration: none !important;
        border-radius: 0.5rem;
        border: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
        transition:
            background 0.15s ease,
            border-color 0.15s ease,
            box-shadow 0.15s ease;
    }

    .vns-nav-drawer .vns-mobile-svc-item:hover,
    .vns-nav-drawer .vns-mobile-svc-item:focus {
        color: #0f172a !important;
        background: #e8eef5;
        border-color: rgba(26, 54, 93, 0.2);
        box-shadow: 0 2px 8px rgba(26, 54, 93, 0.08);
    }

    .vns-nav-drawer .vns-mobile-svc-item--tile {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 2.85rem;
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1.25;
        hyphens: auto;
    }
}

/* Override template dropdown 3D flip for mega menu only */
@media (min-width: 992px) {
    .navbar.vns-navbar .mega-dropdown .dropdown-menu.mega-menu-panel {
        display: none;
        transform: none !important;
        transform-origin: center top !important;
        opacity: 0;
        visibility: hidden;
        margin-top: 0 !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        transition: opacity 0.22s ease, visibility 0.22s ease !important;
        pointer-events: none;
    }

    /*
     * Bootstrap 5.0 adds .show to the toggle + .dropdown-menu, NOT to .mega-dropdown parent.
     * Old selectors used .mega-dropdown.show — menu stayed display:none forever.
     */
    .navbar.vns-navbar .mega-dropdown .dropdown-menu.mega-menu-panel.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        margin-top: 0 !important;
    }

    .navbar.vns-navbar .mega-dropdown .dropdown-menu.mega-menu-panel:not(.show) {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
    }
}

/* Mega menu (desktop — toggle open/close on Services click only) */
@media (min-width: 992px) {
    .mega-dropdown > .dropdown-menu.mega-menu-panel.show {
        display: block;
    }

    .mega-dropdown .dropdown-menu.mega-menu-panel {
        margin-top: 0;
        border-radius: 0 0 1rem 1rem;
        border: 1px solid rgba(26, 54, 93, 0.12);
        box-shadow: 0 1rem 2.5rem rgba(26, 54, 93, 0.15);
        animation: vnsMegaFade 0.3s ease;
        z-index: 1025;
    }
}

@keyframes vnsMegaFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-panel h6 {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--vns-accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.65rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(249, 115, 22, 0.35);
}

.mega-menu-panel .mega-link {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.5rem;
    margin: 0 -0.5rem;
    color: var(--vns-text);
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 0.35rem;
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.mega-menu-panel .mega-link:hover {
    color: var(--bs-primary);
    background: rgba(26, 54, 93, 0.06);
    padding-left: 0.65rem;
}

.mega-menu-panel .mega-link .fa-chevron-right {
    opacity: 0.45;
    font-size: 0.65rem;
}

.mega-menu-panel .mega-link-compact {
    padding: 0.32rem 0.45rem;
    font-size: 0.82rem;
}

.mega-menu-columns {
    overflow: hidden;
    border-radius: 0.75rem;
    background: #fff;
}

@media (min-width: 992px) {
    .mega-menu-col {
        padding: 0.5rem 1.25rem !important;
        border-right: 1px solid rgba(26, 54, 93, 0.1);
    }

    .mega-menu-col:last-child,
    .mega-menu-col-industries {
        border-right: 0;
    }
}

/* Industries: horizontal cards, navy accents — no orange border */
.vns-industries {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--vns-surface) 0%, #fff 50%, #f8fafc 100%);
}

.vns-industries::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 54, 93, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 75%);
    pointer-events: none;
}

.vns-industries > .container {
    position: relative;
    z-index: 1;
}

.industry-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.15rem 1.3rem;
    min-height: 4.25rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 2px 10px rgba(26, 54, 93, 0.05);
    height: 100%;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.industry-card:hover {
    transform: translateY(-3px);
    border-color: rgba(26, 54, 93, 0.22);
    box-shadow:
        0 6px 20px rgba(26, 54, 93, 0.09),
        0 2px 6px rgba(26, 54, 93, 0.04);
}

.industry-card-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(26, 54, 93, 0.06), rgba(44, 82, 130, 0.11));
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.industry-card-icon i {
    font-size: 1.2rem;
    color: var(--bs-primary);
    transition: color 0.25s ease;
}

.industry-card:hover .industry-card-icon {
    background: linear-gradient(145deg, var(--bs-primary), #2c5282);
    border-color: rgba(26, 54, 93, 0.15);
}

.industry-card:hover .industry-card-icon i {
    color: #fff;
}

.industry-card-label {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: #111827;
    transition: color 0.2s ease;
}

.industry-card:hover .industry-card-label {
    color: var(--bs-primary);
}

.vns-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
}

.vns-hero-tagline {
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.vns-hero h1,
.vns-hero-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 5.2vw, 2.5rem);
    line-height: 1.22;
    text-wrap: balance;
}

@media (max-width: 991.98px) {
    .vns-hero-title {
        max-width: 28rem;
    }

    .vns-hero .vns-hero-sub {
        max-width: 36rem;
    }
}

@media (min-width: 992px) {
    .vns-hero-title,
    .vns-hero .vns-hero-sub {
        max-width: none;
    }
}

.vns-hero-sub {
    font-size: 1.05rem;
    line-height: 1.55;
}

/* Hero headline: larger on phones only (md+ unchanged) */
@media (max-width: 767.98px) {
    .vns-hero h1,
    .vns-hero-title {
        font-size: clamp(1.65rem, 6.8vw, 2.35rem);
        line-height: 1.2;
    }
}

@media (min-width: 768px) {
    .vns-hero-sub {
        font-size: 1.12rem;
    }

    .vns-hero h1,
    .vns-hero-title {
        font-size: 2.5rem;
        line-height: 1.25;
    }
}

.vns-hero-offer-pill {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #0f172a;
    background: linear-gradient(135deg, #fffbeb 0%, #fde68a 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(249, 115, 22, 0.15) inset;
    max-width: 100%;
}

.vns-hero-offer-main {
    line-height: 1.35;
}

.vns-hero-offer-price {
    color: #c2410c;
    font-weight: 800;
}

.vns-hero-offer-where {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a365d;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(26, 54, 93, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.12);
}

@media (max-width: 575.98px) {
    .vns-hero-offer-pill {
        font-size: 0.92rem;
        padding: 0.45rem 0.85rem;
        gap: 0.35rem 0.5rem;
        border-radius: 0.9rem;
        align-items: flex-start;
    }

    .vns-hero-offer-where {
        font-size: 0.72rem;
        padding: 0.2rem 0.45rem;
    }

    .vns-hero-tagline {
        font-size: 0.68rem;
        margin-bottom: 0.35rem !important;
    }
}

.vns-hero-art {
    max-width: min(320px, 88vw);
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .vns-hero-art {
        max-width: min(400px, 70vw);
    }
}

@media (min-width: 992px) {
    .vns-hero-art {
        max-width: none;
    }
}

.vns-hero-illustration {
    max-width: 100%;
    max-height: min(420px, 70vh);
    width: auto;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
}

@media (max-width: 991.98px) {
    .vns-hero-illustration {
        max-height: min(220px, 42vw);
    }
}

@media (max-width: 575.98px) {
    .vns-hero-illustration {
        max-height: 200px;
    }

    .vns-hero-actions .btn-lg {
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .vns-hero-actions .btn {
        width: 100%;
        max-width: 20rem;
    }
}

.vns-contact-illustration-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.vns-contact-illustration {
    border-radius: 1.15rem;
    box-shadow:
        0 1px 3px rgba(26, 54, 93, 0.08),
        0 16px 40px rgba(26, 54, 93, 0.1);
}

/* ---------- Contact page ---------- */
.vns-contact-page {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 45%, #f1f5f9 100%);
}

.vns-contact-page__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 0%, rgba(26, 54, 93, 0.07), transparent 55%),
        radial-gradient(ellipse 50% 45% at 90% 30%, rgba(249, 115, 22, 0.06), transparent 50%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(59, 130, 246, 0.05), transparent 60%);
    pointer-events: none;
}

.vns-contact-intro {
    max-width: 46rem;
}

.vns-contact-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vns-accent);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.vns-contact-title {
    font-size: clamp(1.45rem, 4.2vw, 2.35rem);
    color: var(--vns-text);
    letter-spacing: -0.02em;
    line-height: 1.22;
}

.vns-contact-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 40rem;
}

.vns-contact-lead a {
    font-weight: 600;
}

.vns-contact-quick-actions .btn-lg {
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(26, 54, 93, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vns-contact-quick-actions .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26, 54, 93, 0.18);
}

.vns-contact-visual__frame {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 1.35rem;
    padding: 1.5rem 1.25rem 2rem;
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (min-width: 992px) {
    .vns-contact-visual__frame {
        padding: 2rem 1.75rem 2.25rem;
        min-height: 320px;
    }
}

.vns-contact-aside-note {
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 8px 28px rgba(26, 54, 93, 0.07);
}

/* Hash link contact.php#get-quote focuses this node (tabindex=-1) — kill default outline */
#get-quote:focus,
#get-quote:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.vns-contact-form-card {
    background: #fff;
    border-radius: 1.35rem;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 24px 56px rgba(26, 54, 93, 0.1);
    padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    .vns-contact-form-card {
        padding: 2rem 2rem 2.25rem;
    }
}

.vns-contact-form-card__head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-contact-form-card__title {
    color: var(--vns-text);
    letter-spacing: -0.02em;
}

.vns-contact-form .vns-contact-input {
    border-radius: 0.75rem;
    border: 1px solid rgba(26, 54, 93, 0.12);
    background-color: #fafbfc;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.vns-contact-form .vns-contact-input:focus {
    border-color: rgba(26, 54, 93, 0.35);
    background-color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.08);
}

.vns-contact-form .form-floating > label {
    color: var(--vns-text-muted);
}

.vns-contact-textarea {
    min-height: 140px;
}

/* Spam honeypot — leave off-screen (bots often fill hidden fields) */
.vns-contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.vns-contact-info-card {
    position: relative;
    padding: 1.5rem 1.35rem;
    border-radius: 1.15rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.09);
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.vns-contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(26, 54, 93, 0.12);
    border-color: rgba(26, 54, 93, 0.14);
}

.vns-contact-info-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--bs-primary);
    background: linear-gradient(145deg, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.04));
}

.vns-contact-info-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--vns-text);
    margin-bottom: 0.5rem;
}

.vns-contact-info-card__text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--vns-text-muted);
}

.vns-contact-info-card__text a {
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
}

.vns-contact-info-card__text a:hover {
    text-decoration: underline;
}

.vns-contact-map-section .vns-contact-map-frame {
    background: rgba(26, 54, 93, 0.04);
}

.vns-contact-map-iframe {
    display: block;
    min-height: 280px;
    height: clamp(280px, 48vw, 440px);
}

@media (min-width: 992px) {
    .vns-contact-map-iframe {
        height: 400px;
    }
}

.stats-strip .stat-item {
    text-align: center;
    padding: 1rem;
}

.stats-strip .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.stats-strip .stat-label {
    font-size: 0.9rem;
    color: var(--vns-text);
    opacity: 0.85;
}

/* ---------- About (home + about page) ---------- */
.vns-about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 35%, #f1f5f9 100%);
}

.vns-about-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 40% at 0% 20%, rgba(26, 54, 93, 0.06), transparent 60%),
        radial-gradient(ellipse 50% 45% at 100% 80%, rgba(249, 115, 22, 0.05), transparent 55%);
    pointer-events: none;
}

.vns-about-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 54, 93, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 85%);
    pointer-events: none;
}

.vns-about > .container {
    position: relative;
    z-index: 1;
}

.vns-about-panel {
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 20px 48px rgba(26, 54, 93, 0.08);
}

@media (min-width: 992px) {
    .vns-about-panel {
        padding: 2.35rem 2.15rem;
    }
}

.vns-about-brand {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vns-accent);
    margin: 0;
}

.vns-about-kicker {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bs-primary);
    line-height: 1.4;
    margin: 0;
    opacity: 0.92;
}

.vns-about-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.45rem, 2.8vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0;
}

.vns-about-lead {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--vns-text-muted);
    margin: 0;
}

.vns-about-text {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--vns-text-muted);
    margin: 0;
}

.vns-about-list {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--vns-text);
}

.vns-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
    font-weight: 500;
}

.vns-about-list li:last-child {
    margin-bottom: 0;
}

.vns-about-list .fa-check {
    margin-top: 0.2rem;
    color: #16a34a;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.vns-about-cta {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vns-about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26, 54, 93, 0.18);
}

.vns-about-aside {
    min-height: 0;
}

.vns-about-figure {
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 16px 40px rgba(26, 54, 93, 0.1);
    background: #e2e8f0;
}

.vns-about-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.vns-about-stat {
    padding: 1rem 0.85rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.06);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.vns-about-stat:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.1);
    transform: translateY(-2px);
}

.vns-about-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.55rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--bs-primary);
    background: rgba(26, 54, 93, 0.08);
}

.vns-about-stat-value {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bs-primary);
    letter-spacing: -0.02em;
}

.vns-about-stat-suffix {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vns-accent);
}

.vns-about-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--vns-text-muted);
    margin-top: 0.35rem;
    line-height: 1.35;
}

/* Infinite marquee below stats — same gradient as hero, auto scroll R→L */
.vns-marquee-trust {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vns-marquee-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.vns-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: vns-marquee-scroll 26s linear infinite;
}

.vns-marquee-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
    margin: 0;
    padding: 0.7rem 1.25rem;
    flex-shrink: 0;
}

.vns-marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
}

.vns-marquee-check {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    flex-shrink: 0;
}

/* Content moves left (translateX −) = reads right → left */
@keyframes vns-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vns-marquee-track {
        animation: vns-marquee-scroll 55s linear infinite;
    }
}

.navbar-brand h1,
.navbar-brand .brand-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

/* Brand logo (upload: assets/img/logo-vns.png) */
.vns-logo-nav {
    display: block;
    height: 52px;
    width: auto;
    max-width: min(260px, 70vw);
    object-fit: contain;
}

@media (min-width: 992px) {
    .vns-logo-nav {
        height: 58px;
        max-width: 280px;
    }
}

@media (min-width: 1200px) {
    .vns-logo-nav {
        height: 62px;
        max-width: 300px;
    }
}

.vns-logo-footer {
    display: block;
    height: auto;
    max-height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 576px) {
    .vns-logo-footer {
        max-height: 64px;
    }
}

@media (max-width: 991.98px) {
    .mega-menu-panel {
        position: static !important;
        transform: none !important;
        width: 100%;
        box-shadow: none !important;
        border: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0.5rem !important;
        background: rgba(26, 54, 93, 0.04) !important;
        border-radius: 0.75rem !important;
    }

    .mega-menu-panel .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .mega-menu-col {
        border-right: 0 !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        border-bottom: 1px solid rgba(26, 54, 93, 0.08);
    }

    .mega-menu-col:last-child {
        border-bottom: 0;
    }

    .navbar.vns-navbar .navbar-nav.vns-nav-main {
        background: rgba(248, 250, 252, 0.95) !important;
        border-radius: 0.75rem;
        padding: 0.5rem 0 !important;
    }

    .navbar.vns-navbar .vns-nav-main .nav-item {
        padding: 0.25rem 0.75rem;
    }
}

/* ---------- Testimonials & section polish ---------- */
.vns-testimonials {
    background: linear-gradient(180deg, var(--vns-surface) 0%, #fff 45%, #fff 100%);
}

.vns-section-eyebrow {
    color: var(--vns-accent);
    letter-spacing: 0.08em;
}

.vns-heading {
    color: var(--bs-primary);
    font-family: "Poppins", "Inter", sans-serif;
    font-weight: 700;
}

.vns-lead {
    color: var(--vns-text-muted) !important;
    font-size: 1.05rem;
    line-height: 1.6;
}

.vns-testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow:
        0 1px 3px rgba(26, 54, 93, 0.06),
        0 8px 24px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-top: 3px solid var(--vns-accent);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vns-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 4px 12px rgba(26, 54, 93, 0.08),
        0 16px 40px rgba(26, 54, 93, 0.1);
}

.vns-testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 0.85rem;
    right: 1.25rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(26, 54, 93, 0.07);
    pointer-events: none;
}

.vns-testimonial-stars {
    color: #d97706;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.vns-testimonial-quote {
    margin: 0 0 1.25rem;
    padding: 0;
    border: 0;
}

.vns-testimonial-quote p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    font-weight: 400;
}

.vns-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.vns-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--bs-primary), #2c5282);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vns-testimonial-name {
    display: block;
    color: #111827;
    font-size: 0.95rem;
}

.vns-testimonial-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

/* ---------- What We Build (home) — studio cards ---------- */
.vns-build--studio {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #f1f5f9 100%);
    overflow: hidden;
}

.vns-build-glow {
    position: absolute;
    width: min(52rem, 90vw);
    height: min(52rem, 90vw);
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.09) 0%, transparent 62%);
    pointer-events: none;
}

.vns-build--studio::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 54, 93, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 75%);
    pointer-events: none;
}

.vns-build--studio > .container {
    position: relative;
    z-index: 1;
}

.vns-build-intro {
    max-width: 40rem;
    padding: 0 0.5rem;
}

.vns-build-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vns-accent);
    margin-bottom: 0.35rem;
}

.vns-build-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.4rem, 2.9vw, 2.15rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.vns-build-lead {
    font-size: 1.02rem;
    line-height: 1.65;
}

.vns-build-inline-link {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.vns-build-inline-link:hover {
    color: var(--vns-accent);
}

.vns-build-toolbar {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.vns-build-toolbar-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--vns-text) !important;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.12);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.05);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vns-build-toolbar-item:hover {
    border-color: rgba(26, 54, 93, 0.28);
    color: var(--bs-primary) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26, 54, 93, 0.08);
}

.vns-build-toolbar-item--cta {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff !important;
    border-color: transparent;
}

.vns-build-toolbar-item--cta:hover {
    color: #fff !important;
    filter: brightness(1.06);
}

/* Card tones */
.vns-build-card--studio.vns-build-card--tone-navy {
    --vns-build-tone: linear-gradient(90deg, #1a365d, #2c5282);
}

.vns-build-card--studio.vns-build-card--tone-accent {
    --vns-build-tone: linear-gradient(90deg, #c2410c, #f97316);
}

.vns-build-card--studio.vns-build-card--tone-teal {
    --vns-build-tone: linear-gradient(90deg, #0f766e, #2dd4bf);
}

.vns-build-card--studio {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 1.25rem;
    transition:
        transform 0.32s ease,
        filter 0.32s ease;
}

.vns-build-card--studio:hover {
    transform: translateY(-6px);
    color: inherit;
}

.vns-build-card--studio:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.55);
    outline-offset: 4px;
}

.vns-build-card-sheet {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow:
        0 2px 6px rgba(15, 23, 42, 0.04),
        0 16px 40px rgba(26, 54, 93, 0.08);
    overflow: hidden;
    transition:
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.vns-build-card--studio:hover .vns-build-card-sheet {
    border-color: rgba(26, 54, 93, 0.18);
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.07),
        0 28px 56px rgba(26, 54, 93, 0.12);
}

.vns-build-card-accent-bar {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--vns-build-tone);
}

.vns-build-card-visual-wrap {
    padding: 1.1rem 1.1rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.vns-build-card-visual {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #e2e8f0;
    border: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-build-card--studio .vns-build-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.vns-build-card--studio:hover .vns-build-card-img {
    transform: scale(1.04);
}

.vns-build-card-icon-float {
    position: absolute;
    left: 1.65rem;
    bottom: 0;
    transform: translateY(50%);
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--bs-primary);
    font-size: 1.2rem;
    border: 1px solid rgba(26, 54, 93, 0.12);
    box-shadow:
        0 6px 20px rgba(26, 54, 93, 0.12),
        0 0 0 4px #fff;
    z-index: 2;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.vns-build-card--studio:hover .vns-build-card-icon-float {
    background: var(--vns-build-tone);
    color: #fff;
    border-color: transparent;
    transform: translateY(50%) scale(1.05);
}

.vns-build-card--studio.vns-build-card--tone-navy:hover .vns-build-card-icon-float {
    background: linear-gradient(135deg, #1a365d, #2c5282);
}

.vns-build-card--studio.vns-build-card--tone-accent:hover .vns-build-card-icon-float {
    background: linear-gradient(135deg, #c2410c, #f97316);
}

.vns-build-card--studio.vns-build-card--tone-teal:hover .vns-build-card-icon-float {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.vns-build-card-body {
    padding: 2.15rem 1.35rem 1.35rem;
    padding-top: 2.35rem;
}

.vns-build-card-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vns-text-muted);
    margin-bottom: 0.35rem;
}

.vns-build-card-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.6rem;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.vns-build-card--studio:hover .vns-build-card-title {
    color: var(--bs-primary);
}

.vns-build-card-text {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--vns-text-muted);
    margin: 0 0 1.1rem;
}

.vns-build-card-footer {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-build-card-chip {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #c2410c;
    border: 1px solid rgba(249, 115, 22, 0.22);
}

.vns-build-card-chip--ghost {
    background: rgba(26, 54, 93, 0.06);
    color: var(--bs-primary);
    border-color: rgba(26, 54, 93, 0.1);
}

.vns-build-card-cta {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: gap 0.25s ease;
}

.vns-build-card--studio:hover .vns-build-card-cta {
    gap: 0.35rem;
    color: var(--vns-accent);
}

.vns-build-card-cta .fa-arrow-right {
    transition: transform 0.25s ease;
}

.vns-build-card--studio:hover .vns-build-card-cta .fa-arrow-right {
    transform: translateX(4px);
}

/* ---------- Home: What We Offer (matches hero navy gradient) ---------- */
.vns-offer {
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vns-offer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
    pointer-events: none;
}

.vns-offer-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 100% 0%, rgba(249, 115, 22, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.vns-offer-intro {
    position: relative;
}

@media (min-width: 992px) {
    .vns-offer-intro {
        position: sticky;
        top: 5.5rem;
    }
}

.vns-offer-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.vns-offer-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    color: #fff;
    letter-spacing: -0.02em;
}

.vns-offer-lead {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    font-size: 1.02rem;
}

.vns-offer-checklist {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.vns-offer-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
}

.vns-offer-checklist li:last-child {
    margin-bottom: 0;
}

.vns-offer-checklist .fa-check {
    margin-top: 0.2rem;
    font-size: 0.65rem;
    color: #4ade80;
    flex-shrink: 0;
}

.vns-offer-btn-primary {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vns-offer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.vns-offer-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.vns-offer-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.vns-offer-card {
    padding: 1.15rem 1.15rem 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.vns-offer-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.vns-offer-icon {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: #fff;
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.45), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vns-offer-card-title {
    margin: 0 0 0.5rem;
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.vns-offer-card-text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991.98px) {
    .vns-offer-grid-hint .opacity-75 {
        display: none;
    }
}

/* ---------- FAQ (accordion + search + tabs) ---------- */
.vns-faq-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 40%, #f1f5f9 100%);
}

.vns-faq-header {
    max-width: 40rem;
}

.vns-faq-title {
    color: var(--vns-text);
    font-family: "Poppins", "Inter", sans-serif;
    letter-spacing: -0.02em;
}

.vns-faq-toolbar {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.vns-faq-search {
    border: 1px solid rgba(26, 54, 93, 0.12);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(26, 54, 93, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vns-faq-search:focus {
    border-color: rgba(26, 54, 93, 0.35);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.12);
}

.vns-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
    justify-content: center;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    padding-bottom: 0.15rem;
}

.vns-faq-tab {
    border: 0;
    background: none;
    padding: 0.5rem 0.15rem 0.65rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--vns-text-muted);
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.vns-faq-tab:hover {
    color: var(--bs-primary);
}

.vns-faq-tab.is-active {
    color: var(--bs-primary);
}

.vns-faq-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--vns-accent);
}

.vns-faq-list {
    max-width: 720px;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.vns-faq-list.vns-faq-fade--out {
    opacity: 0;
}

.vns-faq-list.vns-faq-fade--in {
    opacity: 1;
}

.vns-faq-item {
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 0.85rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(26, 54, 93, 0.05);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.vns-faq-item:hover {
    border-color: rgba(26, 54, 93, 0.16);
    box-shadow: 0 6px 22px rgba(26, 54, 93, 0.08);
}

.vns-faq-item.is-open {
    border-color: rgba(26, 54, 93, 0.2);
    box-shadow: 0 8px 28px rgba(26, 54, 93, 0.1);
}

.vns-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.1rem 1.25rem;
    border: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.vns-faq-trigger:hover {
    color: var(--bs-primary);
    background: rgba(26, 54, 93, 0.02);
}

.vns-faq-trigger-text {
    flex: 1;
    line-height: 1.45;
}

.vns-faq-trigger-icon {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.vns-faq-trigger-icon::before,
.vns-faq-trigger-icon::after {
    content: "";
    position: absolute;
    background: var(--bs-primary);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.vns-faq-trigger-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    margin-top: -1px;
}

.vns-faq-trigger-icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    margin-left: -1px;
}

.vns-faq-item.is-open .vns-faq-trigger-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.vns-faq-panel-outer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s ease;
}

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

.vns-faq-panel-inner {
    overflow: hidden;
}

.vns-faq-panel {
    padding: 0 1.25rem 1.15rem;
}

.vns-faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-faq-item.is-open .vns-faq-trigger {
    padding-bottom: 0.65rem;
}

.vns-faq-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    background: #fff;
    border: 1px dashed rgba(26, 54, 93, 0.15);
    border-radius: 0.85rem;
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .vns-faq-trigger {
        font-size: 0.95rem;
        padding: 1rem 1rem;
    }

    .vns-faq-panel {
        padding: 0 1rem 1rem;
    }
}

/* ---------- Pricing page ---------- */
.vns-pricing-page {
    overflow-x: hidden;
}

.vns-pricing-intro {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.vns-pricing-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 52rem;
    margin: 0 auto;
    padding: 1.15rem 1.35rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.06);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--vns-text-muted);
}

.vns-pricing-notice-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: rgba(26, 54, 93, 0.08);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vns-pricing-notice-link {
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.vns-pricing-notice-link:hover {
    color: var(--vns-accent);
}

.vns-pricing-spotlight {
    background: #fff;
}

.vns-pricing-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vns-accent);
}

.vns-pricing-h2 {
    font-family: "Poppins", "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    color: var(--vns-text);
    letter-spacing: -0.02em;
}

.vns-pricing-tier {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(26, 54, 93, 0.12);
    background: #fff;
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vns-pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(26, 54, 93, 0.12);
}

.vns-pricing-tier--basic {
    border-top: 3px solid rgba(26, 54, 93, 0.35);
}

.vns-pricing-tier--featured {
    border: 2px solid rgba(249, 115, 22, 0.45);
    border-top: 3px solid var(--vns-accent);
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.vns-pricing-tier-ribbon {
    position: absolute;
    top: 1rem;
    right: -2px;
    background: var(--vns-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 0.35rem 0 0 0.35rem;
    box-shadow: -2px 2px 8px rgba(249, 115, 22, 0.35);
}

.vns-pricing-tier-head {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-pricing-tier-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bs-primary);
    background: rgba(26, 54, 93, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.vns-pricing-tier-badge--light {
    background: rgba(249, 115, 22, 0.15);
    color: #c2410c;
}

.vns-pricing-tier-price {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--vns-text);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.vns-pricing-tier-currency {
    font-size: 1.35rem;
    font-weight: 600;
    opacity: 0.85;
    margin-right: 0.1rem;
}

.vns-pricing-tier-note {
    font-size: 0.9rem;
    color: var(--vns-text-muted);
}

.vns-pricing-tier-list {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    flex: 1 1 auto;
}

.vns-pricing-tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 0.65rem;
}

.vns-pricing-tier-list li:last-child {
    margin-bottom: 0;
}

.vns-pricing-tier-list .fa-check {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #16a34a;
    font-size: 0.85rem;
}

.vns-pricing-catalog {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #fff 100%);
}

.vns-pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.6rem 1.4rem;
    background: #fff;
    border-radius: 1.15rem;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 4px 24px rgba(26, 54, 93, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.vns-pricing-card:hover {
    border-color: rgba(26, 54, 93, 0.18);
    box-shadow: 0 12px 36px rgba(26, 54, 93, 0.1);
    transform: translateY(-3px);
}

.vns-pricing-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--bs-primary), #2c5282);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
}

.vns-pricing-card-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vns-text);
    margin: 0 0 0.5rem;
}

.vns-pricing-card-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--vns-text-muted);
    margin: 0 0 1.15rem;
}

.vns-pricing-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vns-pricing-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    padding: 0.65rem 0.85rem;
    background: #f8fafc;
    border-radius: 0.65rem;
    border: 1px solid rgba(26, 54, 93, 0.06);
}

.vns-pricing-row-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1f2937;
}

.vns-pricing-row-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bs-primary);
    white-space: nowrap;
    padding: 0.2rem 0.55rem;
    background: rgba(26, 54, 93, 0.07);
    border-radius: 2rem;
}

.vns-pricing-card-foot {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(26, 54, 93, 0.12);
    color: var(--vns-text-muted);
}

.vns-pricing-trust {
    background: #fff;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-pricing-trust-item {
    padding: 1rem 0.5rem;
}

.vns-pricing-trust-item i {
    display: block;
    font-size: 1.35rem;
    color: var(--bs-primary);
    margin-bottom: 0.4rem;
    opacity: 0.9;
}

.vns-pricing-trust-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--vns-text-muted);
}

.vns-pricing-cta {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
}

.vns-pricing-cta-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.vns-pricing-cta-lead {
    color: rgba(255, 255, 255, 0.88);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

.vns-pricing-cta .btn-light:hover {
    background: #fff;
    color: var(--vns-text);
}

.vns-pricing-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Footer (modern layout) ---------- */
.footer.vns-footer {
    position: relative;
    background: linear-gradient(165deg, #0f172a 0%, #1a365d 42%, #152238 100%);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.vns-footer-glow {
    position: absolute;
    width: 60%;
    max-width: 520px;
    height: 280px;
    top: -120px;
    right: -80px;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.22), transparent 70%);
    pointer-events: none;
}

.vns-footer-logo-wrap {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.65rem 1rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vns-footer-logo-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.vns-footer-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vns-accent);
}

.vns-footer-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 26rem;
}

.vns-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vns-footer-social-link {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vns-footer-social-link:hover {
    background: var(--vns-accent);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.vns-footer-icon-btn {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}

.vns-footer-icon-btn:hover {
    background: #fff;
    color: var(--bs-primary);
}

.vns-footer-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.15rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(249, 115, 22, 0.65);
    display: inline-block;
    min-width: 0;
}

.vns-footer-title--light {
    border-bottom-color: rgba(255, 255, 255, 0.35);
}

.vns-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.vns-footer-nav a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78) !important;
    text-decoration: none;
    line-height: 1.4 !important;
    transition: color 0.2s ease, transform 0.2s ease;
    border: 0;
}

.vns-footer-nav a:hover {
    color: #fff !important;
    transform: translateX(4px);
}

.vns-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.vns-footer-contact li:last-child {
    margin-bottom: 0;
}

.vns-footer-contact-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vns-accent);
    font-size: 0.85rem;
}

.vns-footer-contact a {
    color: #fff !important;
    text-decoration: none;
    word-break: break-word;
}

.vns-footer-contact a:hover {
    text-decoration: underline;
    color: var(--vns-accent) !important;
}

.vns-footer-contact-text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    padding-top: 0.15rem;
}

.vns-footer-map-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vns-footer-map-link:hover {
    color: var(--vns-accent) !important;
}

.vns-footer-cta {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.15rem;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.vns-footer-cta-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.copyright.vns-footer-copy {
    background: #0a0f1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vns-footer-copy-brand {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.vns-footer-copy-brand:hover {
    color: var(--vns-accent) !important;
}

.vns-footer-copy-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.vns-footer-copy-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
}

.vns-footer-copy-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
}

.vns-footer-copy-links a:hover {
    color: var(--vns-accent) !important;
}

.back-to-top.vns-back-top {
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.35);
}

/* Sticky WhatsApp — mobile only (left side; back-to-top stays right) */
.vns-wa-float {
    display: none;
}

@media (max-width: 767.98px) {
    .vns-wa-float {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        left: max(1rem, env(safe-area-inset-left, 0px));
        bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
        width: 3.35rem;
        height: 3.35rem;
        z-index: 1040;
        text-decoration: none !important;
        color: #fff !important;
    }

    .vns-wa-float__btn {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
        box-shadow:
            0 4px 18px rgba(18, 140, 126, 0.45),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        font-size: 1.65rem;
        line-height: 1;
    }

    .vns-wa-float__pulse {
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        border: 2px solid rgba(37, 211, 102, 0.85);
        z-index: 1;
        animation: vns-wa-float-pulse 2s ease-out infinite;
        pointer-events: none;
    }

    .vns-wa-float:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 3px;
    }
}

@keyframes vns-wa-float-pulse {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    70% {
        transform: scale(1.38);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vns-wa-float__pulse {
        animation: none;
        opacity: 0.35;
        transform: scale(1.12);
    }
}

@media (max-width: 991.98px) {
    .vns-footer-cta {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------- Insights / blog cards (homepage + blog) ---------- */
.vns-insights {
    background: linear-gradient(165deg, #f1f5f9 0%, #f8fafc 38%, #ffffff 100%);
}

.vns-insights-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 54, 93, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.vns-insights-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin: 0;
}

.vns-insights-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.vns-insights-lead {
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 40rem;
}

.vns-insights-cta {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vns-insights-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 54, 93, 0.2) !important;
}

.vns-insights-blog-note {
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    background: rgba(26, 54, 93, 0.05);
    border: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-insight-card {
    color: inherit;
    border-radius: 1.15rem;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.vns-insight-card:hover {
    transform: translateY(-6px);
    color: inherit;
}

.vns-insight-card:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.55);
    outline-offset: 3px;
}

.vns-insight-card-inner {
    border-radius: 1.15rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 12px 28px rgba(26, 54, 93, 0.07);
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.28s ease;
}

.vns-insight-card:hover .vns-insight-card-inner {
    border-color: rgba(26, 54, 93, 0.2);
    box-shadow:
        0 8px 16px rgba(15, 23, 42, 0.06),
        0 22px 48px rgba(26, 54, 93, 0.12);
}

.vns-insight-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, #e2e8f0, #f1f5f9);
}

.vns-insight-card-img {
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.vns-insight-card:hover .vns-insight-card-img {
    transform: scale(1.06);
}

.vns-insight-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.vns-insight-tag--business {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff;
}

.vns-insight-tag--web {
    background: linear-gradient(135deg, #c2410c, var(--vns-accent));
    color: #fff;
}

.vns-insight-tag--software {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
}

.vns-insight-card-body {
    padding: 1.35rem 1.35rem 1.4rem;
}

.vns-insight-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

.vns-insight-card-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin: 0;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vns-insight-card:hover .vns-insight-card-title {
    color: var(--bs-primary);
}

.vns-insight-card-excerpt {
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.vns-insight-card-more {
    color: var(--bs-primary);
    margin-top: auto;
}

.vns-insight-card-arrow {
    transition: transform 0.25s ease;
}

.vns-insight-card:hover .vns-insight-card-arrow {
    transform: translateX(5px);
    color: var(--vns-accent);
}

@media (max-width: 575.98px) {
    .vns-insight-meta {
        font-size: 0.78rem;
    }

    .vns-insight-meta-dot {
        display: none;
    }
}

/* Blog listing + article — top promo strip (below navbar) */
.vns-blog-promo-bar {
    background: linear-gradient(105deg, var(--bs-primary) 0%, #1e4a7a 55%, #163a66 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 18px rgba(26, 54, 93, 0.18);
}

.vns-blog-promo-bar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    text-align: center;
    padding: 0.35rem 0.25rem;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: clamp(0.82rem, 2.8vw, 0.95rem);
    line-height: 1.35;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.vns-blog-promo-bar__link:hover,
.vns-blog-promo-bar__link:focus-visible {
    color: #fff !important;
    opacity: 0.95;
    transform: translateY(-1px);
}

.vns-blog-promo-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.95);
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.vns-blog-promo-bar__text {
    flex: 1 1 auto;
    min-width: min(100%, 16rem);
}

.vns-blog-promo-bar__cta {
    opacity: 0.85;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ---------- Blog article (detail) — 80% shell, wireframe layout ---------- */
.vns-blog-article {
    --vns-blog-shell-pct: 80%;
    position: relative;
    overflow-x: hidden;
    background:
        radial-gradient(ellipse 90% 45% at 50% -15%, rgba(26, 54, 93, 0.06), transparent 58%),
        linear-gradient(180deg, #f4f7fc 0%, #fafbfc 35%, #ffffff 60%, #f1f5f9 100%);
    padding: clamp(1.25rem, 3.5vw, 2.5rem) 0 clamp(2.25rem, 5vw, 4.5rem);
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.vns-blog-article-shell {
    width: var(--vns-blog-shell-pct);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 575.98px) {
    .vns-blog-article {
        --vns-blog-shell-pct: 92%;
    }
}

.vns-blog-article-nav {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.vns-blog-article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

.vns-blog-article-back:hover {
    color: var(--vns-accent, #f97316);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.08);
    transform: translateX(-2px);
}

.vns-blog-article-back-icon {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(26, 54, 93, 0.08), rgba(44, 82, 130, 0.06));
    font-size: 0.75rem;
}

/* Top: centered heading block */
.vns-blog-article-head--center {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-blog-article-head--center .vns-blog-article-tag {
    margin-bottom: 1rem !important;
}

.vns-blog-article-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 auto 1.35rem;
    max-width: 920px;
}

.vns-blog-article-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.vns-blog-article-meta--center {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.vns-blog-article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.vns-blog-article-meta-item i {
    font-size: 0.8rem;
    color: var(--bs-primary);
    opacity: 0.85;
}

.vns-blog-article-meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.22);
    flex-shrink: 0;
}

/* Single card: image + summary + article body (joined, not two separate blocks) */
.vns-blog-article-unified {
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.09);
    border-radius: 1.15rem;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 18px 40px -14px rgba(26, 54, 93, 0.1);
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
}

.vns-blog-article-split {
    margin-bottom: 0;
}

.vns-blog-article-figure {
    margin: 0;
}

.vns-blog-article-figure-inner {
    position: relative;
    border-radius: 0.85rem;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(26, 54, 93, 0.07);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.vns-blog-article-figure-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.vns-blog-article-figure-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Summary sits in same card — no nested white box */
.vns-blog-article-preview {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.vns-blog-article-preview--wide {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.vns-blog-article-preview-label {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin: 0 0 0.85rem;
    opacity: 0.9;
}

.vns-blog-article-preview-text {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(1rem, 1.2vw + 0.85rem, 1.125rem);
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Divider between summary block and full article — same surface */
.vns-blog-article-body-wrap {
    margin-top: clamp(1.35rem, 2.5vw, 2rem);
    padding-top: clamp(1.35rem, 2.5vw, 2rem);
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.vns-blog-article-body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: clamp(1.02rem, 0.9vw + 0.9rem, 1.125rem);
    line-height: 1.85;
    color: #334155;
    letter-spacing: 0.01em;
}

.vns-blog-article-body p {
    margin-bottom: 1.35rem;
}

.vns-blog-article-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .vns-blog-article-split .vns-blog-article-preview {
        margin-top: 0.35rem;
    }
}

@media (max-width: 575.98px) {
    .vns-blog-article-meta--center {
        flex-direction: column;
        align-items: center;
        border-radius: 1rem;
        padding: 0.75rem 1rem;
    }

    .vns-blog-article-meta-sep {
        display: none;
    }

    .vns-blog-article-unified {
        padding: 1.2rem 1rem 1.35rem;
    }
}

/* ---------- Portfolio page ---------- */
.vns-portfolio-page {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 22%, #f1f5f9 100%);
}

.vns-portfolio-intro {
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
    background:
        radial-gradient(ellipse 80% 60% at 50% -30%, rgba(26, 54, 93, 0.07), transparent 55%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.vns-portfolio-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin: 0;
}

.vns-portfolio-intro-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.vns-portfolio-intro-lead {
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.vns-portfolio-stat {
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.06);
    height: 100%;
}

.vns-portfolio-stat-value {
    display: block;
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1.2;
}

.vns-portfolio-stat-label {
    font-size: 0.82rem;
    color: var(--vns-text-muted);
    font-weight: 500;
}

.vns-portfolio-toolbar {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.vns-portfolio-filter {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 54, 93, 0.18);
    background: #fff;
    color: var(--vns-text);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vns-portfolio-filter:hover {
    border-color: rgba(26, 54, 93, 0.35);
    color: var(--bs-primary);
}

.vns-portfolio-filter.active {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.25);
}

.vns-portfolio-filter:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.45);
    outline-offset: 2px;
}

.vns-portfolio-grid-section {
    position: relative;
}

.vns-portfolio-card {
    border-radius: 1.1rem;
    transition: transform 0.28s ease;
}

.vns-portfolio-card:hover {
    transform: translateY(-4px);
}

.vns-portfolio-card-inner {
    padding: 1.35rem 1.35rem 1.25rem;
    border-radius: 1.1rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 12px 32px rgba(26, 54, 93, 0.08);
    border-left: 4px solid rgba(26, 54, 93, 0.35);
    transition:
        border-color 0.25s ease,
        box-shadow 0.28s ease;
}

.vns-portfolio-card:hover .vns-portfolio-card-inner {
    border-left-color: var(--vns-accent);
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.07),
        0 20px 48px rgba(26, 54, 93, 0.1);
}

.vns-portfolio-card--featured .vns-portfolio-card-inner {
    border-left-width: 5px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    box-shadow:
        0 4px 12px rgba(249, 115, 22, 0.08),
        0 16px 40px rgba(26, 54, 93, 0.1);
}

.vns-portfolio-card--featured .vns-portfolio-card-title {
    font-size: 1.2rem;
}

.vns-portfolio-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(26, 54, 93, 0.08), rgba(44, 82, 130, 0.12));
    border: 1px solid rgba(26, 54, 93, 0.1);
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.vns-portfolio-card--featured .vns-portfolio-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    background: linear-gradient(145deg, var(--bs-primary), #2c5282);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.vns-portfolio-industry {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--vns-accent);
    margin-bottom: 0.25rem;
}

.vns-portfolio-card-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    margin: 0;
}

.vns-portfolio-details {
    margin-top: 1.15rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-portfolio-detail {
    margin-bottom: 0.85rem;
}

.vns-portfolio-detail:last-of-type {
    margin-bottom: 0;
}

.vns-portfolio-detail dt {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 0.2rem;
}

.vns-portfolio-detail dd {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--vns-text-muted);
}

.vns-portfolio-detail--impact dd {
    color: var(--vns-text);
    font-weight: 500;
}

.vns-portfolio-card-foot {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(26, 54, 93, 0.12);
    color: var(--vns-text-muted);
}

.vns-portfolio-cta {
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-portfolio-cta-inner {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1e3a5f 100%);
    color: #fff;
    box-shadow: 0 16px 48px rgba(26, 54, 93, 0.25);
}

.vns-portfolio-cta-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.vns-portfolio-cta-lead {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 36rem;
}

.vns-portfolio-cta .btn-outline-primary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    background: transparent !important;
}

.vns-portfolio-cta .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #fff !important;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .vns-portfolio-cta .btn-lg {
        width: 100%;
    }
}

/* ---------- Services page ---------- */
.vns-service-page {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 18%, #f1f5f9 100%);
}

.vns-service-intro {
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
    background:
        radial-gradient(ellipse 75% 55% at 50% -25%, rgba(26, 54, 93, 0.06), transparent 50%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.vns-service-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin: 0;
}

.vns-service-intro-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.vns-service-intro-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.vns-service-jump {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0.35rem 0 0.65rem;
    margin-left: -0.35rem;
    margin-right: -0.35rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

@media (min-width: 992px) {
    .vns-service-jump {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

.vns-service-jump-link {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--bs-primary);
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.15);
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vns-service-jump-link:hover {
    border-color: rgba(26, 54, 93, 0.35);
    background: rgba(26, 54, 93, 0.04);
    color: var(--bs-primary);
}

.vns-service-jump-link.is-active {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(26, 54, 93, 0.3);
}

.vns-service-main {
    padding-top: 0.5rem;
}

.vns-service-toc {
    position: sticky;
    top: 5.75rem;
    padding: 1.25rem 1.15rem;
    border-radius: 1.1rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 8px 28px rgba(26, 54, 93, 0.07);
}

.vns-service-toc-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vns-text-muted);
    margin: 0 0 0.85rem;
}

.vns-service-toc-list li {
    margin-bottom: 0.35rem;
}

.vns-service-toc-list li:last-child {
    margin-bottom: 0;
}

.vns-service-toc-link {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--vns-text);
    text-decoration: none;
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.vns-service-toc-link:hover {
    background: rgba(26, 54, 93, 0.06);
    color: var(--bs-primary);
}

.vns-service-toc-link.is-active {
    background: rgba(26, 54, 93, 0.12);
    color: var(--bs-primary);
    box-shadow: inset 3px 0 0 var(--vns-accent);
}

.vns-service-toc-link.is-active i {
    color: var(--vns-accent);
    opacity: 1;
}

.vns-service-toc-link i {
    width: 1.1rem;
    text-align: center;
    color: var(--bs-primary);
    opacity: 0.85;
    font-size: 0.85rem;
}

.vns-service-toc-cta {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-service-block {
    scroll-margin-top: 6.5rem;
}

.vns-service-block-inner {
    padding: 1.5rem 1.4rem 1.35rem;
    border-radius: 1.15rem;
    background: #fff;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 14px 36px rgba(26, 54, 93, 0.07);
    transition:
        box-shadow 0.28s ease,
        border-color 0.25s ease;
}

.vns-service-block:hover .vns-service-block-inner {
    border-color: rgba(26, 54, 93, 0.18);
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.06),
        0 22px 50px rgba(26, 54, 93, 0.1);
}

.vns-service-block-icon {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    background: linear-gradient(145deg, var(--bs-primary), #2c5282);
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.28);
}

.vns-service-block-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.vns-service-block-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vns-text-muted);
}

.vns-service-list {
    margin-top: 1.25rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--vns-text);
}

.vns-service-list li:last-child {
    margin-bottom: 0;
}

.vns-service-list .fa-check {
    margin-top: 0.28rem;
    font-size: 0.7rem;
    color: #16a34a;
    flex-shrink: 0;
}

.vns-service-block-foot {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px dashed rgba(26, 54, 93, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.vns-service-block-foot .btn-link {
    color: var(--bs-primary) !important;
}

.vns-service-block-foot .btn-link:hover {
    color: var(--vns-accent) !important;
}

.vns-service-bottom-cta {
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.vns-service-bottom-inner {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 48%, #1e3a5f 100%);
    color: #fff;
    box-shadow: 0 16px 48px rgba(26, 54, 93, 0.22);
}

.vns-service-bottom-title {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: clamp(1.3rem, 2.4vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.vns-service-bottom-lead {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36rem;
}

@media (max-width: 991.98px) {
    .vns-service-block-foot .btn-accent {
        width: 100%;
    }
}
