 /* Scoped contact page styles (keeps body background #0f0b29) */
        .vn-contact { padding: 48px 16px; }
        .vn-contact__wrap { max-width: 980px; margin: 0 auto; }
        .vn-contact__card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 18px;
            backdrop-filter: blur(10px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.35);
            overflow: hidden;
        }
        .vn-contact__header { padding: 28px 22px 8px; }
        .vn-contact__title {
            margin: 0;
            color: rgba(255,255,255,0.95);
            font-size: clamp(1.35rem, 2.6vw, 2rem);
            letter-spacing: 0.2px;
        }
        .vn-contact__subtitle {
            margin: 10px 0 0;
            color: rgba(255,255,255,0.72);
            line-height: 1.55;
            font-size: 0.98rem;
        }

        .vn-contact__form { padding: 18px 22px 24px; }
        .vn-contact__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .vn-field { display: flex; flex-direction: column; gap: 8px; }
        .vn-field--full { grid-column: 1 / -1; }
        .vn-label { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
        .vn-req { color: rgba(255,255,255,0.85); }
        .vn-opt { color: rgba(255,255,255,0.55); font-weight: 400; }

        .vn-input, .vn-textarea {
            width: 100%;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(10, 7, 28, 0.65);
            color: rgba(255,255,255,0.92);
            padding: 12px 12px;
            outline: none;
            transition: border-color .15s ease, box-shadow .15s ease, transform .08s ease;
            font-size: 0.98rem;
        }
        .vn-textarea { resize: vertical; min-height: 150px; }
        .vn-input:focus, .vn-textarea:focus {
            border-color: rgba(255,255,255,0.28);
            box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
        }
        .vn-help { margin: 0; min-height: 18px; color: rgba(255,140,140,0.95); font-size: 0.86rem; }
        .vn-help--muted { color: rgba(255,255,255,0.55); }

        .vn-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
        .vn-check { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.80); font-size: 0.92rem; }
        .vn-check input { width: 16px; height: 16px; }
        .vn-counter { color: rgba(255,255,255,0.55); font-size: 0.86rem; }

        .vn-contact__actions { margin-top: 18px; display: grid; gap: 12px; }
        .vn-btn {
            width: fit-content;
            border: 1px solid rgba(255,255,255,0.16);
            background: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.95);
            padding: 12px 16px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            letter-spacing: 0.2px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform .08s ease, background .15s ease, border-color .15s ease;
        }
        .vn-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.22); }
        .vn-btn:active { transform: translateY(1px); }
        .vn-btn--ghost { background: transparent; }

        .vn-btn__spinner {
            width: 14px; height: 14px;
            border-radius: 999px;
            border: 2px solid rgba(255,255,255,0.35);
            border-top-color: rgba(255,255,255,0.95);
            display: none;
            animation: vnSpin 0.8s linear infinite;
        }
        @keyframes vnSpin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }

        .vn-footnote { margin: 0; color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.5; }

        /* Honeypot (kept off-screen but still in DOM for bots) */
        .vn-contact__hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

        /* Modal */
        .vn-modal { position: fixed; inset: 0; display: none; z-index: 9999; }
        .vn-modal[aria-hidden="false"] { display: block; }
        .vn-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
        .vn-modal__panel {
            position: relative;
            margin: 30vh auto 0;
            max-width: 720px;
            background: rgba(15, 11, 41, 0.95);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 18px;
            box-shadow: 0 18px 60px rgba(0,0,0,0.55);
            padding: 18px 18px 14px;
            color: rgba(255,255,255,0.92);
        }
        .vn-modal__title { margin: 0 0 8px; font-size: 1.2rem; }
        .vn-modal__text { margin: 0 0 12px; color: rgba(255,255,255,0.72); }
        .vn-modal__summary { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin-bottom: 12px; color: rgba(255,255,255,0.82); }
        .vn-modal__message pre {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            padding: 12px;
            white-space: pre-wrap;
            word-break: break-word;
            max-height: 280px;
            overflow: auto;
            margin: 8px 0 0;
        }
        .vn-modal__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }
        .vn-modal__hint { margin: 10px 0 0; color: rgba(255,255,255,0.55); font-size: 0.86rem; }

        @media (max-width: 760px) {
            .vn-contact { padding: 34px 12px; }
            .vn-contact__header { padding: 22px 16px 6px; }
            .vn-contact__form { padding: 14px 16px 18px; }
            .vn-contact__grid { grid-template-columns: 1fr; gap: 14px; }
            .vn-modal__panel { margin: 20vh 12px 0; }
            .vn-modal__summary { grid-template-columns: 1fr; }
            .vn-row { align-items: flex-start; flex-direction: column; }
        }