/* ===== NuoVolta — Dark Precision ===== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

:root {
    --bg: #131318;
    --bg-card: #1B1B22;
    --bg-card-hover: #22222A;
    --bg-elevated: #282830;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --green: #00C853;
    --green-dark: #00A844;
    --green-glow: rgba(0,200,83,0.12);
    --green-glow-strong: rgba(0,200,83,0.25);
    --text: #FFFFFF;
    --text-secondary: #888888;
    --text-tertiary: #555555;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-color: var(--green-dark) var(--bg);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--green);
    color: #000;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,h2,h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h4,h5,h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.nv-highlight {
    color: var(--green);
}

/* ==========================================
   TOPBAR
   ========================================== */
.nv-topbar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0.45rem 0;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.nv-topbar.hidden {
    transform: translateY(-100%);
}

.nv-topbar-left,
.nv-topbar-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.nv-topbar a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0 0.5rem;
    font-size: 0.75rem;
}

.nv-topbar a:hover {
    color: var(--green);
}

.nv-topbar-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
    margin: 0 0.5rem;
}

.nv-topbar-social {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nv-topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    padding: 0;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.nv-topbar-social a:hover {
    color: var(--green);
    background: var(--green-glow);
}

.nv-lang-dropdown {
    position: relative;
}

.nv-lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.2rem 0;
}

.nv-lang-btn i {
    font-size: 0.55rem;
    transition: transform 0.2s ease;
}

.nv-lang-dropdown.open .nv-lang-btn i {
    transform: rotate(180deg);
}

.nv-lang-btn:hover {
    color: var(--text);
}

.nv-flag-img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

.nv-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.35rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1002;
}

.nv-lang-dropdown.open .nv-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nv-lang-option {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.75rem !important;
    border-radius: 7px;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    color: var(--text-secondary) !important;
    transition: all 0.15s ease;
}

.nv-lang-option:hover {
    background: var(--bg-elevated);
    color: var(--text) !important;
}

.nv-lang-option.active {
    color: var(--green) !important;
}

@media (max-width: 991px) {
    .nv-topbar {
        display: none;
    }
}

/* ==========================================
   NAVBAR — FLOATING PILL
   ========================================== */
.nv-navbar {
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.4s ease;
}

.nv-navbar.scrolled {
    top: 0;
}

.nv-nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    background: rgba(19,19,24,0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    transition: all 0.4s ease;
}

.nv-navbar.scrolled .nv-nav-inner {
    background: rgba(19,19,24,0.92);
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.nv-nav-brand img {
    height: 36px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nv-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.nv-nav-end {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.nv-nav-auth {
    display: flex;
    align-items: center;
}

/* Icon-only sign in / account (navbar) */
.nv-nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nv-nav-icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.nv-nav-icon-btn:focus-visible {
    outline: 2px solid var(--green, #00c853);
    outline-offset: 2px;
}

.nv-nav-icon-btn i {
    font-size: 1.35rem;
    line-height: 1;
}

.nv-nav-user-dropdown .dropdown-toggle::after {
    display: none;
}

.nv-nav-user-menu {
    min-width: 12rem;
    padding: 0.5rem;
    margin-top: 0.5rem !important;
    background: rgba(19, 19, 24, 0.98) !important;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    z-index: 10050;
}

.nv-nav-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-sm);
    transition: background 0.15s ease, color 0.15s ease;
}

.nv-nav-user-menu .dropdown-item:hover,
.nv-nav-user-menu .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nv-nav-user-menu .dropdown-item i {
    font-size: 1rem;
    color: var(--accent);
}

.nv-nav-user-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 0.35rem 0;
    opacity: 1;
}

.nv-nav-link {
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    text-decoration: none;
}

.nv-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* Navbar Dropdown */
.nv-nav-dropdown {
    position: relative;
}

.nv-nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nv-nav-dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nv-nav-dropdown:hover .nv-nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nv-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    z-index: 1000;
}

.nv-nav-dropdown:hover .nv-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nv-nav-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.85rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nv-nav-dropdown-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.nv-nav-dropdown-menu a i {
    color: var(--accent);
    font-size: 0.9rem;
}

.nv-nav-right {
    display: flex;
    align-items: center;
}

.nv-nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #000;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nv-nav-login:hover {
    background: #00E05C;
    color: #000;
    box-shadow: 0 6px 20px var(--green-glow-strong);
    transform: translateY(-1px);
}

.nv-nav-login i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nv-nav-login:hover i {
    transform: translateX(3px);
}

/* Mobile toggle */
.nv-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.nv-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.nv-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.nv-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nv-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Lock body scroll when menu open */
body.nv-menu-open {
    overflow: hidden;
}

/* Mobile Menu Overlay */
.nv-mobile-menu {
    display: none;
    position: fixed;
    top: 4.5rem;
    left: 1rem;
    right: 1rem;
    bottom: auto;
    max-height: calc(100vh - 5.5rem);
    background: rgba(19,19,24,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    z-index: 9999;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

.nv-mobile-menu.open {
    display: flex;
    animation: mobileMenuIn 0.3s ease;
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Backdrop blur behind menu */
.nv-mobile-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
}

.nv-mobile-backdrop.open {
    display: block;
    animation: backdropIn 0.25s ease;
}

@keyframes backdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Push bottom to bottom */
.nv-mobile-menu-bottom {
    margin-top: auto;
}

/* Mobile menu header */
.nv-mobile-menu-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nv-mobile-logo {
    height: 36px;
    filter: brightness(0) invert(1);
}

.nv-mobile-close {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.nv-mobile-close:hover {
    border-color: #00c853;
    color: #00c853;
}

/* Mobile links */
.nv-mobile-links {
    padding: 1.25rem 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nv-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    border-radius: 10px;
}

.nv-mobile-link i {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.35);
    width: 1.5rem;
    text-align: center;
}

.nv-mobile-link:hover,
.nv-mobile-link:focus {
    color: #00c853;
    background: rgba(0,200,83,0.05);
}

.nv-mobile-link:hover i,
.nv-mobile-link:focus i {
    color: #00c853;
}

/* Mobile Accordion */
.nv-mobile-accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    justify-content: space-between;
}

.nv-mobile-accordion-toggle span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nv-mobile-chevron {
    font-size: 0.7rem !important;
    transition: transform 0.3s ease;
}

.nv-mobile-accordion.open .nv-mobile-chevron {
    transform: rotate(180deg);
}

.nv-mobile-accordion-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1.5rem;
}

.nv-mobile-accordion.open .nv-mobile-accordion-menu {
    max-height: 200px;
}

.nv-mobile-account-accordion.open .nv-mobile-accordion-menu {
    max-height: 260px;
}

.nv-mobile-signin-row {
    justify-content: center;
    font-weight: 600;
    color: rgba(0, 200, 83, 0.95);
}

/* Mobile menu bottom */
.nv-mobile-menu-bottom {
    padding: 0.75rem 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile login button */
.nv-mobile-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 2rem;
    background: linear-gradient(135deg, #00c853, #00e676);
    border: none;
    color: #0d1117;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,200,83,0.2);
}

.nv-mobile-login-btn:hover {
    background: linear-gradient(135deg, #00e676, #69f0ae);
    color: #0d1117;
}

.nv-mobile-lang-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 0.5rem;
}

.nv-mobile-lang-options {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.nv-mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.2s;
}

.nv-mobile-lang-item img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.nv-mobile-lang-item.active {
    border-color: rgba(0,200,83,0.4);
    color: #00c853;
    background: rgba(0,200,83,0.05);
}

.nv-mobile-lang-item:hover {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.nv-mobile-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.nv-mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.nv-mobile-social a:hover {
    border-color: #00c853;
    color: #00c853;
    background: rgba(0,200,83,0.05);
}

.nv-mobile-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

@media (max-width: 991px) {
    .nv-navbar {
        top: 0;
        padding: 0.4rem 0;
    }

    .nv-nav-center {
        display: none !important;
    }

    .nv-nav-toggle {
        display: flex;
        z-index: 10000;
    }

    .nv-nav-inner {
        position: relative;
    }

    .nv-nav-end {
        margin-left: auto;
    }
}

/* ==========================================
   SCENE 1: CINEMATIC OPENING
   ========================================== */
.nv-opening {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 2rem;
}

.nv-opening::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
    pointer-events: none;
}

.nv-opening::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black, transparent);
}

.nv-opening-content {
    position: relative;
    z-index: 2;
}

.nv-opening-logo {
    height: 120px;
    margin-bottom: 2rem;
    animation: fade-in-up 1s ease 0.2s both;
    filter: drop-shadow(0 0 60px rgba(0,200,83,0.15));
}

.nv-opening-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.75rem;
    animation: fade-in-up 1s ease 0.5s both;
}

.nv-opening-tagline {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    animation: fade-in-up 1s ease 0.7s both;
}

.nv-opening-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
    animation: fade-in-up 1s ease 0.9s both;
}

.nv-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: fade-in-up 1s ease 1.2s both;
}

.nv-scroll-hint span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.nv-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--green), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%,100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 25px; }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   SCENE 2: PRODUCT REVEAL
   ========================================== */
.nv-reveal {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.nv-reveal::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,83,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.nv-scene-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: 1.25rem;
}

.nv-scene-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.nv-scene-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

/* Hero Screenshot Slider (reused in reveal) */
.nv-hero-slider {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-hover);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.nv-hero-screenshot {
    width: 100%;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.nv-hero-screenshot:first-child {
    position: relative;
}

.nv-hero-screenshot.nv-slide-active {
    opacity: 1;
}

/* ==========================================
   SCENE 3: BIG NUMBERS
   ========================================== */
.nv-numbers {
    padding: 7rem 0;
    background: linear-gradient(135deg, #003D1A 0%, #00602B 50%, #004D20 100%);
    position: relative;
    overflow: hidden;
}

.nv-numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.nv-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.nv-number-item {
    text-align: center;
    padding: 2rem 1rem;
}

.nv-number-value {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.nv-number-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}

.nv-number-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================
   SCENE 4: WHY DIFFERENT
   ========================================== */
.nv-why {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.nv-why::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,83,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.nv-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.nv-why-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nv-why-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nv-why-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.nv-why-item:hover::before {
    opacity: 1;
}

.nv-why-icon {
    width: 48px;
    height: 48px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.nv-why-item:hover .nv-why-icon {
    background: var(--green);
    color: #000;
}

.nv-why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.nv-why-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

/* ==========================================
   SCENE 5: VIDEO
   ========================================== */
.nv-video-scene {
    padding: 7rem 0;
    background: var(--bg-card);
}

/* ==========================================
   SCENE 7: MODULES
   ========================================== */
.nv-modules {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.nv-modules::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,83,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.nv-modules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.nv-module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nv-module-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nv-module-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.nv-module-card:hover::before {
    opacity: 1;
}

.nv-module-card.nv-module-featured {
    border-color: rgba(0,200,83,0.2);
    background: linear-gradient(180deg, rgba(0,200,83,0.03), var(--bg-card));
}

.nv-module-card i {
    font-size: 1.75rem;
    color: var(--green);
    margin-bottom: 1.25rem;
    display: block;
}

.nv-module-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.nv-module-card p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================
   SCENE 8: FINAL CTA
   ========================================== */
.nv-final-cta {
    padding: 7rem 0;
    background: var(--bg-card);
}

.nv-final-cta-inner {
    text-align: center;
    position: relative;
}

.nv-final-logo {
    height: 50px;
    margin-bottom: 2rem;
}

.nv-final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.nv-final-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.nv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #000;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.nv-btn-primary:hover {
    background: #00E05C;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--green-glow-strong);
}

button.nv-btn-primary,
button.nv-btn-ghost {
    font-family: inherit;
}

.nv-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nv-btn-ghost:hover {
    border-color: var(--border-hover);
    background: var(--bg-card);
    color: var(--text);
    transform: translateY(-2px);
}

/* ==========================================
   BRANDS MARQUEE
   ========================================== */
.nv-brands {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.nv-brands-title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.nv-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.nv-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.nv-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 50px;
    flex-shrink: 0;
    padding: 0 1rem;
}

.nv-brand-item img {
    max-height: 32px;
    max-width: 120px;
    width: auto;
    height: auto;
    opacity: 0.45;
    filter: grayscale(1) brightness(2);
    pointer-events: none;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   SECTIONS
   ========================================== */
.nv-section {
    padding: 7rem 0;
    position: relative;
}

.nv-section-alt {
    background: var(--bg-card);
}

.nv-section-elevated {
    background: var(--bg-card);
}

.nv-section-glow {
    position: relative;
    overflow: hidden;
}

.nv-page-hero {
    padding-top: 12rem !important;
    padding-bottom: 5rem !important;
}

.nv-section-glow::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,83,0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.nv-section-glow::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,200,83,0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.nv-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    text-align: center;
    display: block;
    margin-bottom: 1.25rem;
}

.nv-section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.nv-section-title .nv-highlight {
    color: var(--green);
}

.nv-section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* ==========================================
   FEATURE CARDS
   ========================================== */
.nv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.nv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nv-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.nv-card:hover::before {
    opacity: 1;
}

.nv-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.nv-card:hover .nv-card-icon {
    background: var(--green);
    color: #000;
    box-shadow: 0 0 20px var(--green-glow-strong);
}

.nv-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.nv-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

/* (stats moved to nv-numbers) */

/* ==========================================
   VIDEO SHOWCASE
   ========================================== */
.nv-video-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.nv-video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-hover);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 50px rgba(0,200,83,0.05);
    background: var(--bg-card);
    cursor: pointer;
}

.nv-video-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}

.nv-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s ease;
    z-index: 2;
}

.nv-video-overlay:hover {
    background: rgba(0,0,0,0.4);
}

.nv-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.nv-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px var(--green-glow-strong);
}

.nv-video-overlay:hover .nv-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(0,200,83,0.4);
}

.nv-play-btn i {
    margin-left: 4px;
}

.nv-video-cta {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* ==========================================
   BENTO GRID (Feature Highlight)
   ========================================== */
.nv-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.nv-bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nv-bento-item:hover {
    border-color: var(--border-hover);
}

.nv-bento-item.span-2 {
    grid-column: span 2;
}

.nv-bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.nv-bento-item p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.75;
    font-size: 0.9rem;
}

.nv-bento-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

/* ==========================================
   PRICING TABS
   ========================================== */
.nv-pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.3rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.nv-pricing-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s ease;
}

.nv-pricing-tab i {
    font-size: 0.9rem;
}

.nv-pricing-tab:hover {
    color: var(--text);
}

.nv-pricing-tab.active {
    background: var(--green);
    color: #000;
}

.nv-tab-content {
    display: none;
}

.nv-tab-content.active {
    display: block;
    animation: tab-fade 0.4s ease;
}

.nv-pricing-credit-tabs {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nv-pricing-credit-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.48rem 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s ease;
}

.nv-pricing-credit-tab:hover { color: var(--text); border-color: var(--border-hover); }

.nv-pricing-credit-tab.active {
    background: var(--green-glow);
    border-color: rgba(0,200,83,0.35);
    color: var(--green);
}

.nv-full-credit-content { display: none; }
.nv-full-credit-content.active { display: block; }

@keyframes tab-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nv-pricing-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius);
        width: 100%;
    }
    .nv-pricing-tab {
        flex: 1;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ==========================================
   PRICING
   ========================================== */
.nv-pricing {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nv-pricing:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.nv-pricing.featured {
    border-color: var(--green);
}

.nv-pricing.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
    box-shadow: 0 0 20px var(--green-glow-strong);
}

.nv-pricing-badge {
    display: inline-block;
    background: var(--green-glow);
    color: var(--green);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,200,83,0.15);
}

.nv-pricing-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.nv-pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.nv-pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.nv-pricing-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.7;
}

.nv-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.nv-pricing-list li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nv-pricing-list li svg { color: var(--green); flex-shrink: 0; }

/* ==========================================
   CONTACT
   ========================================== */
.nv-contact-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    height: 100%;
}

.nv-contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.nv-contact-item:last-child { margin-bottom: 0; }

.nv-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.nv-contact-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.nv-contact-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

.nv-input {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1.15rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    background: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
    width: 100%;
}

.nv-input::placeholder { color: var(--text-tertiary); }

.nv-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
    outline: none;
}

.nv-input-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-select.nv-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300C853' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    color: var(--text-tertiary);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* ==========================================
   LOGIN
   ========================================== */
/* Login split layout */
.nv-login-split {
    display: flex;
    min-height: 100vh;
}

/* Left branding panel */
.nv-login-left {
    width: 45%;
    background: linear-gradient(160deg, #080810, #0a120a 50%, #080810);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.nv-login-left::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,200,83,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.nv-login-left::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,200,83,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.nv-login-left-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: auto;
}

.nv-login-left-top {
    position: relative;
    z-index: 1;
}

.nv-login-brand-logo {
    height: 40px;
}

.nv-login-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.nv-login-title span {
    color: var(--green);
}

.nv-login-tagline {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
}

.nv-login-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 380px;
}

.nv-login-left-footer {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.nv-login-left-footer span {
    font-size: 0.72rem;
    color: var(--text-tertiary);
}

/* Right form panel */
.nv-login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 3rem;
}

.nv-login-form-wrap {
    width: 100%;
    max-width: 400px;
}

.nv-login-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.nv-login-form-icon {
    width: 60px;
    height: 60px;
    background: var(--green-glow);
    border: 1px solid rgba(0,200,83,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--green);
    margin: 0 auto 1.5rem;
}

.nv-login-form-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.nv-login-form-header p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.nv-login-field {
    margin-bottom: 1.75rem;
}

.nv-login-field .nv-input-label {
    margin-bottom: 0.75rem;
}

.nv-login-field .d-flex {
    margin-bottom: 0.75rem;
}

.nv-login-input-wrap {
    position: relative;
}

.nv-login-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.nv-login-input-wrap .nv-input {
    padding-left: 2.75rem;
}

.nv-login-forgot {
    font-size: 0.72rem;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nv-login-forgot:hover {
    opacity: 0.8;
    color: var(--green);
}

.nv-login-remember {
    margin-bottom: 2rem;
}

.nv-login-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.nv-login-check input {
    display: none;
}

.nv-login-checkmark {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border-hover);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.nv-login-check input:checked + .nv-login-checkmark {
    background: var(--green);
    border-color: var(--green);
}

.nv-login-check input:checked + .nv-login-checkmark::after {
    content: '\2713';
    font-size: 0.65rem;
    color: #000;
    font-weight: 800;
}

.nv-login-btn {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 1rem 2rem;
}

.nv-login-or {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.nv-login-or::before,
.nv-login-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.nv-login-or span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.nv-login-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.nv-login-back:hover {
    color: var(--green);
    border-color: var(--border-hover);
    background: var(--bg-card);
}

/* Login responsive */
@media (max-width: 991px) {
    .nv-login-split { flex-direction: column; }
    .nv-login-left { width: 100%; padding: 3rem 2.5rem; }
    .nv-login-title { font-size: 3rem; }
}

@media (max-width: 576px) {
    .nv-login-left { padding: 2rem 1.5rem; }
    .nv-login-right { padding: 2rem 1.5rem; }
    .nv-login-title { font-size: 2.25rem; }
    .nv-login-tagline { letter-spacing: 4px; font-size: 0.85rem; }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.nv-cta-final {
    padding: 7rem 0;
    position: relative;
}

.nv-cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nv-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.nv-cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.3;
}

.nv-cta-box .nv-section-desc {
    margin-bottom: 2rem;
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.nv-faq-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.nv-faq-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nv-faq-tab:hover {
    background: rgba(255,255,255,0.04);
    color: var(--text);
}

.nv-faq-tab.active {
    background: rgba(0,200,83,0.1);
    border-color: rgba(0,200,83,0.3);
    color: var(--green);
}

.nv-faq-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.nv-faq-content.active {
    display: block;
}

.nv-faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.nv-faq-item:hover {
    border-color: var(--border-hover);
}

.nv-faq-item.open {
    border-color: rgba(0,200,83,0.2);
}

.nv-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    gap: 1rem;
}

.nv-faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.nv-faq-question i {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    transition: transform 0.3s ease, color 0.2s ease;
    flex-shrink: 0;
}

.nv-faq-item.open .nv-faq-question i {
    transform: rotate(45deg);
    color: var(--green);
}

.nv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.nv-faq-item.open .nv-faq-answer {
    max-height: 600px;
}

.nv-faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.nv-faq-answer a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

.nv-faq-answer a:hover {
    text-decoration: underline;
}

/* CTA */
/* Credit Table */
.nv-credit-table {
    width: 100%;
    border-collapse: collapse;
}

.nv-credit-table thead th {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    padding: 0.85rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.nv-credit-table tbody td {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nv-credit-table tbody tr:last-child td {
    border-bottom: none;
}

.nv-credit-table tbody tr:hover {
    background: rgba(255,255,255,0.015);
}

.nv-credit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(0,200,83,0.1);
    color: var(--green);
}

.nv-credit-badge.free {
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
}

/* Mini table for examples */
.nv-credit-table.mini thead th {
    padding: 0.6rem 0.85rem;
    font-size: 0.68rem;
}

.nv-credit-table.mini tbody td {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
}

.nv-credit-total td {
    border-top: 1px solid var(--border) !important;
    background: rgba(0,200,83,0.03);
    color: var(--green) !important;
    font-weight: 600;
}

/* Example Cards */
.nv-credit-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.nv-credit-example {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.nv-credit-example-header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.nv-credit-example-header.green { color: var(--green); background: rgba(0,200,83,0.04); }
.nv-credit-example-header.orange { color: #f97316; background: rgba(249,115,22,0.04); }
.nv-credit-example-header.blue { color: #3b82f6; background: rgba(59,130,246,0.04); }
.nv-credit-example-header.purple { color: #8b5cf6; background: rgba(139,92,246,0.04); }

.nv-credit-example-header i {
    font-size: 1.1rem;
}

.nv-credit-example-body {
    padding: 0;
}

.nv-credit-example-note {
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

@media (max-width: 768px) {
    .nv-credit-examples {
        grid-template-columns: 1fr;
    }
    .nv-credit-table thead th,
    .nv-credit-table tbody td {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* CTA */
.nv-faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nv-faq-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0,200,83,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 1.25rem;
}

.nv-faq-cta h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.nv-faq-cta p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.nv-footer {
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.nv-footer-accent {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
    opacity: 0.5;
}

/* CTA Row */
.nv-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
    flex-wrap: wrap;
}

.nv-footer-cta h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.nv-footer-cta p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.95rem;
    margin: 0;
}

/* Links Grid */
.nv-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 0;
}

.nv-footer-brand {
    padding-right: 2rem;
}

.nv-footer-logo {
    height: 36px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.25rem;
}

.nv-footer-brand > p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-tertiary);
    line-height: 1.75;
    margin: 0 0 1.25rem;
}

.nv-footer-col h6 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.nv-footer-col a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    display: block;
    padding: 0.35rem 0;
    transition: color 0.25s ease;
}

.nv-footer-col a:hover {
    color: var(--green);
}

.nv-footer-social {
    display: flex;
    gap: 0.5rem;
}

.nv-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    transition: all 0.25s ease;
}

.nv-footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}

/* Bottom */
.nv-footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nv-footer-links {
    display: flex;
    gap: 1.5rem;
}

.nv-footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.25s ease;
}

.nv-footer-links a:hover {
    color: var(--green);
}

/* Watermark */
.nv-footer-watermark {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 991px) {
    .nv-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .nv-footer-watermark { font-size: 5rem; }
}

@media (max-width: 576px) {
    .nv-footer-grid {
        grid-template-columns: 1fr;
    }
    .nv-footer-cta {
        flex-direction: column;
        text-align: center;
    }
    .nv-footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .nv-footer-watermark { font-size: 3rem; }
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.nv-legal {
    padding: 1.5rem 0 4rem;
}

.nv-legal-header {
    margin-bottom: 3.5rem;
}

.nv-legal-updated {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
}

.nv-legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.nv-legal-intro {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.nv-legal-section {
    margin-bottom: 3rem;
}

.nv-legal-section h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.nv-legal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: var(--green);
}

.nv-legal-section p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.nv-legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.nv-legal-section ul li {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.nv-legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.nv-legal-section a {
    color: var(--green);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nv-legal-section a:hover {
    opacity: 0.8;
}

.nv-legal-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin: 1rem 0;
}

.nv-legal-info-box p {
    margin-bottom: 0.35rem;
}

.nv-legal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .nv-legal-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FEATURES PAGE
   ========================================== */
.nv-feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-glow);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,200,83,0.15);
    margin-bottom: 1.5rem;
}

.nv-feat-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.nv-feat-title .nv-highlight {
    color: var(--green);
}

.nv-feat-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
}

/* App window mock */
.nv-app-window {
    background: #0e0e12;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.nv-app-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1.25rem;
    background: #161620;
    border-bottom: 1px solid var(--border);
}

.nv-app-dots {
    display: flex;
    gap: 6px;
}

.nv-app-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-elevated);
}

.nv-app-dots span:first-child { background: #ff5f57; }
.nv-app-dots span:nth-child(2) { background: #febc2e; }
.nv-app-dots span:last-child { background: #28c840; }

.nv-app-titlebar-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nv-app-body {
    padding: 1.25rem;
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--green-dark) transparent;
}

.nv-app-body::-webkit-scrollbar {
    width: 4px;
}

.nv-app-body::-webkit-scrollbar-track {
    background: transparent;
}

.nv-app-body::-webkit-scrollbar-thumb {
    background: var(--green-dark);
    border-radius: 4px;
}

.nv-app-module-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.nv-app-module-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    cursor: default;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nv-app-module-item:hover {
    background: rgba(255,255,255,0.03);
    color: var(--text);
}

.nv-app-module-item input {
    display: none;
}

.nv-app-checkbox {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--border-hover);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nv-app-module-item.checked .nv-app-checkbox {
    background: var(--green);
    border-color: var(--green);
}

.nv-app-module-item.checked .nv-app-checkbox::after {
    content: '\2713';
    font-size: 0.6rem;
    color: #000;
    font-weight: 800;
}

.nv-app-module-item.checked {
    color: var(--text);
}

/* Highlight list items */
.nv-feat-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nv-feat-highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.nv-feat-highlight-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.nv-feat-highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--green);
}

.nv-feat-highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.nv-feat-highlight-item p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* DTC demo panel */
.nv-feat-dtc-demo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nv-feat-dtc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.nv-feat-dtc-item:last-child {
    border-bottom: none;
}

.nv-feat-dtc-code {
    font-family: 'Plus Jakarta Sans', monospace;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text);
    min-width: 60px;
}

.nv-feat-dtc-desc {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.nv-feat-dtc-status {
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nv-feat-dtc-status.removed {
    color: var(--green);
}

/* Stats grid */
.nv-feat-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.nv-feat-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.nv-feat-stat:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.nv-feat-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0.35rem;
}

.nv-feat-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Vehicle type cards */
.nv-feat-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.nv-feat-vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nv-feat-vehicle-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nv-feat-vehicle-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.nv-feat-vehicle-card:hover::before {
    opacity: 1;
}

.nv-feat-vehicle-card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
}

.nv-feat-vehicle-card .fa-solid {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.nv-feat-vehicle-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.nv-feat-vehicle-card p {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   SUPPORT LIST PAGE
   ========================================== */
.nv-sl-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.nv-sl-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nv-sl-tab:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.nv-sl-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}

.nv-sl-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto 3rem;
}

.nv-sl-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

.nv-sl-search input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.85rem 1.25rem 0.85rem 3rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.nv-sl-search input::placeholder {
    color: var(--text-tertiary);
}

.nv-sl-search input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.nv-sl-content {
    display: none;
}

.nv-sl-content.active {
    display: block;
}

.nv-sl-brand {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nv-sl-brand:hover {
    border-color: var(--border-hover);
}

.nv-sl-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nv-sl-brand-header:hover {
    background: rgba(255,255,255,0.02);
}

.nv-sl-brand-header h3 {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.nv-sl-brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}

.nv-sl-icon-fallback {
    font-size: 1rem;
    color: var(--green);
    width: 28px;
    text-align: center;
}

.nv-sl-brand-header i.bi-chevron-down {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.nv-sl-brand.open .nv-sl-brand-header i.bi-chevron-down {
    transform: rotate(180deg);
}

.nv-sl-brand-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.nv-sl-brand.open .nv-sl-brand-body {
    max-height: 500px;
}

.nv-sl-ecu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0 1.5rem 1.25rem;
}

.nv-sl-brand-body .nv-sl-ecu-list {
    padding: 0 1rem 0.75rem;
}

.nv-sl-ecu {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    transition: all 0.2s ease;
}

.nv-sl-ecu:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-glow);
    cursor: pointer;
}

/* Split view layout */
.nv-sl-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}

.nv-sl-left {
    min-width: 0;
}

/* ECU list (vertical) */
.nv-sl-ecu-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.25rem 0;
}

.nv-sl-ecu-list .nv-sl-ecu {
    text-align: left;
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    border: none;
    background: transparent;
    font-size: 0.82rem;
}

.nv-sl-ecu-list .nv-sl-ecu:hover {
    background: rgba(255,255,255,0.04);
    border: none;
}

.nv-sl-ecu-list .nv-sl-ecu.active {
    background: var(--green-glow);
    color: var(--green);
}

/* Right detail panel */
.nv-sl-right {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    min-height: 400px;
}

.nv-sl-detail-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 400px;
}

.nv-sl-detail-empty i {
    font-size: 2.5rem;
    color: var(--text-tertiary);
    margin-bottom: 1.25rem;
    opacity: 0.4;
}

.nv-sl-detail-empty h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.nv-sl-detail-empty p {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    font-weight: 300;
    margin: 0;
}

.nv-sl-detail-content {
    padding: 1.5rem;
}

.nv-sl-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nv-sl-detail-ecu-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--green);
}

.nv-sl-detail-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
}

.nv-sl-detail-brand {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.nv-sl-detail-divider {
    height: 1px;
    background: var(--border);
    margin: 1.25rem 0;
}

.nv-sl-detail-section {}

.nv-sl-detail-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.nv-sl-detail-label i {
    font-size: 0.85rem;
}

.nv-sl-detail-count {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.15rem 0.6rem;
    font-size: 0.68rem;
    color: var(--text-secondary);
    margin-left: 4px;
}

.nv-sl-detail-modules {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nv-sl-detail-module-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nv-sl-detail-module-tag:hover {
    background: rgba(255,255,255,0.03);
    color: var(--text);
}

.nv-sl-detail-module-tag i {
    font-size: 0.7rem;
    color: var(--green);
}

@media (max-width: 991px) {
    .nv-sl-split { grid-template-columns: 1fr; }
    .nv-sl-right { display: none !important; }
}

/* Mobile Bottom Sheet */
.nv-sl-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.nv-sl-sheet-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }

.nv-sl-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--card-bg, #141418);
    border-top: 1px solid var(--border);
    border-radius: 1.25rem 1.25rem 0 0;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
    visibility: hidden;
}
.nv-sl-sheet.open { transform: translateY(0); visibility: visible; }

.nv-sl-sheet-handle {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0 0.25rem;
    flex-shrink: 0;
}
.nv-sl-sheet-handle span {
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.nv-sl-sheet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.nv-sl-sheet-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(0,200,83,0.05));
    border: 1px solid rgba(0,200,83,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--green);
    flex-shrink: 0;
}
.nv-sl-sheet-header-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.nv-sl-sheet-header-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.nv-sl-sheet-close {
    margin-left: auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}
.nv-sl-sheet-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.nv-sl-sheet-body {
    padding: 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}
.nv-sl-sheet-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nv-sl-sheet-label i { color: var(--green); }
.nv-sl-sheet-count {
    background: var(--green);
    color: #000;
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-weight: 700;
}
.nv-sl-sheet-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.nv-sl-sheet-mod {
    background: rgba(0,200,83,0.06);
    border: 1px solid rgba(0,200,83,0.15);
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nv-sl-sheet-mod i {
    color: var(--green);
    font-size: 0.7rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nv-sl-tabs { gap: 0.35rem; }
    .nv-sl-tab { padding: 0.6rem 1rem; font-size: 0.78rem; }
}

/* ==========================================
   MODULE LIST PAGE
   ========================================== */
.nv-ml-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.nv-ml-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nv-ml-tab:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.nv-ml-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}

.nv-ml-content {
    display: none;
}

.nv-ml-content.active {
    display: block;
}

.nv-ml-intro {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(0,200,83,0.04), var(--bg-card));
    border: 1px solid rgba(0,200,83,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.nv-ml-intro-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
}

.nv-ml-intro h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.nv-ml-intro p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.nv-ml-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.nv-ml-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nv-ml-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nv-ml-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.nv-ml-card:hover::before {
    opacity: 1;
}

.nv-ml-card-icon {
    width: 42px;
    height: 42px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.nv-ml-card:hover .nv-ml-card-icon {
    background: var(--green);
    color: #000;
}

.nv-ml-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.nv-ml-card p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.nv-ml-card-custom {
    border-color: rgba(0,200,83,0.12);
    background: linear-gradient(180deg, rgba(0,200,83,0.02), var(--bg-card));
}

@media (max-width: 991px) {
    .nv-ml-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nv-ml-grid { grid-template-columns: 1fr; }
    .nv-ml-tabs { gap: 0.35rem; }
    .nv-ml-tab { padding: 0.6rem 1rem; font-size: 0.78rem; }
    .nv-ml-intro { flex-direction: column; }
}

/* ==========================================
   NEWS & UPDATES PAGE
   ========================================== */
.nv-news-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.nv-news-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nv-news-tab:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.nv-news-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}

.nv-news-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

/* Posts */
.nv-news-posts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nv-news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nv-news-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* Card with visual (ECU posts — like Instagram) */
.nv-news-card-visual {
    width: 280px;
    min-width: 280px;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f, #111118);
}

.nv-news-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nv-news-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(0,200,83,0.05), #0e0e14);
    border-right: 2px solid rgba(0,200,83,0.15);
}

.nv-news-card-img-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Card info / body */
.nv-news-card-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Brand name (like Instagram posts) */
.nv-news-card-brand {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

/* ECU name as title */
.nv-news-card-info h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.nv-news-card-info h3 .nv-highlight,
.nv-news-card-brand + h3 {
    color: var(--green);
}

/* Module checklist (green checkmarks like Instagram posts) */
.nv-news-card-modules {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.nv-news-module {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.nv-news-module i {
    color: var(--green);
    font-size: 0.9rem;
}

/* Update / text-only cards */
.nv-news-card-update {
    flex-direction: column;
}

.nv-news-card-update .nv-news-card-info h3 {
    color: var(--text);
}

/* Coming Soon cards */
.nv-news-card-badge.soon {
    background: rgba(236,72,153,0.12);
    color: #f472b6;
    border: 1px solid rgba(236,72,153,0.2);
}

.nv-news-card-soon {
    flex-direction: column;
    border-color: rgba(236,72,153,0.15);
    background: linear-gradient(135deg, rgba(236,72,153,0.03), var(--bg-card));
}

.nv-news-card-soon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f472b6, transparent);
    opacity: 0.4;
}

.nv-news-card-status {
    margin-bottom: 0.75rem;
}

.nv-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
}

.nv-status-tag.in-progress {
    background: rgba(251,191,36,0.12);
    color: #fbbf24;
    border: 1px solid rgba(251,191,36,0.2);
}

.nv-status-tag.planned {
    background: rgba(99,102,241,0.12);
    color: #818cf8;
    border: 1px solid rgba(99,102,241,0.2);
}

.nv-status-tag.testing {
    background: rgba(34,197,94,0.1);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.22);
}

.nv-news-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.nv-news-card-badge.update {
    background: rgba(59,130,246,0.12);
    color: #60a5fa;
    border: 1px solid rgba(59,130,246,0.2);
}

.nv-news-card-badge.ecu {
    background: var(--green-glow);
    color: var(--green);
    border: 1px solid rgba(0,200,83,0.2);
}

.nv-news-card-badge.brand {
    background: rgba(168,85,247,0.12);
    color: #c084fc;
    border: 1px solid rgba(168,85,247,0.2);
}

.nv-news-card-badge.module {
    background: rgba(251,191,36,0.12);
    color: #fbbf24;
    border: 1px solid rgba(251,191,36,0.2);
}

.nv-news-card-date {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.nv-news-card-update p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.nv-news-body-preview {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    max-height: 7rem;
    overflow: hidden;
    margin-top: 0.5rem;
    margin-bottom: 0.65rem;
}

.nv-news-card-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    background: var(--bg-elevated);
    border-radius: 10px;
}

.nv-news-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nv-news-detail span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.nv-news-detail strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.nv-news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.nv-news-tag {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.2rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

/* Sidebar update log */
.nv-news-sidebar {
    position: sticky;
    top: 100px;
}

.nv-news-log {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.nv-news-log h4 {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.nv-news-log h4 i {
    color: var(--green);
    font-size: 1rem;
}

.nv-news-log-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nv-news-log-item {
    display: flex;
    gap: 12px;
    padding: 0.65rem 0;
    border-left: 1px solid var(--border);
    margin-left: 5px;
    padding-left: 16px;
    position: relative;
}

.nv-news-log-dot {
    position: absolute;
    left: -4px;
    top: 0.85rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.nv-news-log-date {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    margin-bottom: 2px;
}

.nv-news-log-item p {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .nv-news-layout { grid-template-columns: 1fr; }
    .nv-news-sidebar { position: static; }
}

@media (max-width: 768px) {
    .nv-news-tabs { gap: 0.35rem; }
    .nv-news-tab { padding: 0.5rem 0.85rem; font-size: 0.75rem; }
    .nv-news-card { flex-direction: column; }
    .nv-news-card-visual { width: 100%; min-width: unset; height: auto; min-height: unset; }
    .nv-news-card-visual img { height: auto; object-fit: contain; }
    .nv-news-card-details { flex-direction: column; gap: 0.5rem; }
}

/* Features responsive */
@media (max-width: 991px) {
    .nv-feat-title { font-size: 2rem; }
    .nv-feat-vehicle-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nv-feat-title { font-size: 1.75rem; }
    .nv-feat-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .nv-feat-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .nv-feat-dtc-desc { display: none; }
    .nv-app-module-list { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .nv-feat-vehicle-grid { grid-template-columns: 1fr; }
    .nv-feat-stats-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.nv-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nv-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .nv-scene-title { font-size: 2.25rem; }
    .nv-section-title { font-size: 2.25rem; }
    .nv-numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .nv-why-grid { grid-template-columns: 1fr; }
    .nv-modules-grid { grid-template-columns: repeat(2, 1fr); }
    .nv-final-cta h2 { font-size: 2.25rem; }
    .navbar-collapse {
        background: rgba(11,11,11,0.98);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: 0.5rem;
    }
    .nv-reveal .col-lg-7 { margin-top: 3rem; }
    .nv-page-hero { padding-top: 7rem !important; padding-bottom: 2.5rem !important; }

    /* Pricing cards stack */
    .nv-pricing-card { padding: 2rem 1.5rem; }

    /* Why cards padding */
    .nv-why-item { padding: 1.5rem; }

    /* Module cards */
    .nv-module-card { padding: 1.5rem 1rem; }
    .nv-module-card i { font-size: 1.5rem; }

    /* Section padding */
    .nv-section { padding: 5rem 0; }

    /* Final CTA */
    .nv-final-cta .nv-cta-box { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
    .nv-opening { min-height: 100vh; padding: 1.5rem; }
    .nv-opening::before { width: 400px; height: 400px; }
    .nv-opening::after { background-size: 50px 50px; }
    .nv-opening-title { font-size: 2.5rem; letter-spacing: -0.02em; }
    .nv-opening-logo { height: 60px; }
    .nv-opening-tagline { font-size: 0.75rem; letter-spacing: 4px; margin-bottom: 1.25rem; }
    .nv-opening-sub { font-size: 0.9rem; max-width: 320px; line-height: 1.6; }
    .nv-scroll-hint { bottom: 1.5rem; }
    .nv-scroll-hint span { font-size: 0.6rem; letter-spacing: 2px; }
    .nv-scene-title { font-size: 2rem; }
    .nv-section-title { font-size: 1.85rem; }
    .nv-number-value { font-size: 2.75rem; }
    .nv-reveal, .nv-why, .nv-modules, .nv-video-scene, .nv-final-cta { padding: 5rem 0; }
    .nv-numbers { padding: 5rem 0; }
    .nv-modules-grid { grid-template-columns: 1fr; }
    .nv-pricing-price { font-size: 2.75rem; }

    /* Hero sections padding */
    .nv-page-hero { padding-top: 6.5rem !important; padding-bottom: 2rem !important; }
    .nv-section-desc { font-size: 0.9rem; }

    /* Pricing */
    .nv-pricing-card { padding: 1.75rem 1.25rem; }
    .nv-pricing-list li { font-size: 0.85rem; }

    /* Contact form */
    .nv-contact-panel { padding: 2rem 1.5rem; }
    .nv-input { font-size: 0.9rem; padding: 0.65rem 1rem; }

    /* Video */
    .nv-video-wrap { max-width: 100%; }
    .nv-video-overlay i { font-size: 2.5rem; }

    /* Why cards */
    .nv-why-item { padding: 1.25rem; }
    .nv-why-item h4 { font-size: 1rem; }
    .nv-why-item p { font-size: 0.85rem; }

    /* Module cards */
    .nv-module-card { padding: 1.25rem 1rem; }
    .nv-module-card h4 { font-size: 0.95rem; }
    .nv-module-card p { font-size: 0.8rem; }

    /* Feature cards */
    .nv-feat-title { font-size: 1.75rem; }
    .nv-feat-desc { font-size: 0.9rem; }
    .nv-feat-highlight-item { padding: 1rem; }

    /* News cards */
    .nv-news-card-info { padding: 1.25rem; }
    .nv-news-card-info h3 { font-size: 1.1rem; }
    .nv-news-card-info p { font-size: 0.85rem; }

    /* App window mock */
    .nv-app-window { max-height: 350px; }

    /* Footer */
    .nv-footer-watermark { font-size: 4rem; }

    /* Final CTA */
    .nv-final-cta .nv-cta-box { padding: 2.5rem 1.5rem; }
    .nv-final-cta h2 { font-size: 2rem; }
    .nv-final-cta p { font-size: 0.9rem; }

    /* Buttons */
    .nv-btn-primary, .nv-nav-login { font-size: 0.85rem; padding: 0.6rem 1.25rem; }
}

@media (max-width: 576px) {
    .nv-opening { min-height: 100vh; padding: 1rem; }
    .nv-opening::before { width: 300px; height: 300px; }
    .nv-opening-title { font-size: 2rem; margin-bottom: 0.5rem; }
    .nv-opening-tagline { font-size: 0.65rem; letter-spacing: 3px; margin-bottom: 1rem; }
    .nv-opening-sub { font-size: 0.8rem; max-width: 280px; }
    .nv-scene-title { font-size: 1.5rem; }
    .nv-section-title { font-size: 1.5rem; }
    .nv-numbers-grid { grid-template-columns: 1fr; }
    .nv-number-value { font-size: 3rem; }
    .nv-login-form-wrap { padding: 0; }
    .nv-contact-panel { padding: 1.5rem 1rem; }
    .nv-final-cta h2 { font-size: 1.5rem; }

    /* Hero */
    .nv-page-hero { padding-top: 6rem !important; padding-bottom: 1.5rem !important; }
    .nv-section-desc { font-size: 0.85rem; max-width: 100%; }
    .nv-section-label { font-size: 0.65rem; }

    /* Sections reduce padding further */
    .nv-section { padding: 3.5rem 0; }
    .nv-reveal, .nv-why, .nv-modules, .nv-video-scene, .nv-final-cta { padding: 3.5rem 0; }
    .nv-numbers { padding: 3.5rem 0; }

    /* Pricing */
    .nv-pricing-card { padding: 1.5rem 1rem; }
    .nv-pricing-price { font-size: 2.25rem; }
    .nv-pricing-name { font-size: 1rem; }
    .nv-pricing-desc { font-size: 0.8rem; }
    .nv-pricing-list li { font-size: 0.8rem; }

    /* Features */
    .nv-feat-title { font-size: 1.5rem; }
    .nv-feat-badge { font-size: 0.7rem; }
    .nv-feat-highlight-item { padding: 0.75rem; }
    .nv-feat-highlight-item h5 { font-size: 0.9rem; }
    .nv-feat-highlight-item p { font-size: 0.8rem; }

    /* News */
    .nv-news-card-info { padding: 1rem; }
    .nv-news-card-info h3 { font-size: 1rem; }
    .nv-news-card-visual { height: auto; min-height: unset; }
    .nv-news-tabs { gap: 0.35rem; }
    .nv-news-tab { font-size: 0.75rem; padding: 0.4rem 0.65rem; }

    /* Modules list */
    .nv-ml-tabs { flex-wrap: wrap; }
    .nv-ml-tab { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
    .nv-ml-card { padding: 1.25rem; }
    .nv-ml-card h4 { font-size: 1rem; }
    .nv-ml-card p { font-size: 0.8rem; }

    /* Support list */
    .nv-sl-search { font-size: 0.85rem; }

    /* Footer */
    .nv-footer { padding: 3rem 0 1.5rem; }
    .nv-footer-watermark { font-size: 2.5rem; }
    .nv-footer-col h6 { font-size: 0.75rem; }
    .nv-footer-col a { font-size: 0.85rem; }

    /* Final CTA */
    .nv-final-cta .nv-cta-box { padding: 2rem 1.25rem; }
    .nv-final-cta p { font-size: 0.85rem; }

    /* Buttons */
    .nv-btn-primary, .nv-nav-login { font-size: 0.8rem; padding: 0.55rem 1rem; }

    /* Contact form */
    .nv-input { font-size: 0.85rem; }

    /* App window */
    .nv-app-window { max-height: 280px; }

    /* General typography */
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.15rem; }
    h4 { font-size: 1rem; }
}


/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* About Headings & Text */
.nv-about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.nv-about-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.nv-about-highlight-text {
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    font-style: italic;
    border-left: 3px solid #00c853;
    padding-left: 1rem;
    margin-top: 1.5rem;
}

/* Stats Grid */
.nv-about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.nv-about-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.nv-about-stat-card:hover {
    border-color: rgba(0,200,83,0.3);
    transform: translateY(-4px);
}

.nv-about-stat-icon {
    font-size: 1.5rem;
    color: #00c853;
    margin-bottom: 0.75rem;
}

.nv-about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.nv-about-stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.nv-timeline {
    position: relative;
    padding: 2rem 0;
}

.nv-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(0,200,83,0.3), rgba(0,200,83,0.3), transparent);
    transform: translateX(-50%);
}

.nv-timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.nv-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.nv-timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.nv-timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 40px;
    background: #0d1117;
    border: 2px solid #00c853;
    border-radius: 20px;
    color: #00c853;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 1rem;
}

.nv-timeline-content {
    width: 50%;
    padding: 0 3rem;
    text-align: left;
}

.nv-timeline-item:nth-child(odd) .nv-timeline-content {
    text-align: left;
}

.nv-timeline-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: border-color 0.3s, transform 0.3s;
}

.nv-timeline-card:hover {
    border-color: rgba(0,200,83,0.25);
    transform: translateY(-3px);
}

.nv-timeline-card-icon {
    font-size: 1.5rem;
    color: #00c853;
    margin-bottom: 1rem;
    text-align: left;
}

.nv-timeline-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    text-align: left;
}

.nv-timeline-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.nv-timeline-features li {
    text-align: left;
}

/* Timeline Feature List */
.nv-timeline-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nv-timeline-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.nv-timeline-features li i {
    color: #00c853;
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Timeline Card Images */
.nv-timeline-card-images {
    display: flex;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.nv-timeline-card-images img {
    width: 50%;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    object-fit: cover;
    max-height: 160px;
}

/* Current Version Card */
.nv-timeline-card-current {
    border-color: rgba(0,200,83,0.3) !important;
    background: rgba(0,200,83,0.05) !important;
    position: relative;
}

.nv-timeline-card-badge {
    position: absolute;
    top: -10px;
    right: 1.5rem;
    background: #00c853;
    color: #0d1117;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.75rem;
    border-radius: 10px;
}

/* Commitment Section */
.nv-about-commitment {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.nv-about-commitment-inner {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 3.5rem 3rem;
}

.nv-about-commitment-icon {
    font-size: 2.5rem;
    color: #00c853;
    margin-bottom: 1.5rem;
}

.nv-about-commitment h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.nv-about-commitment p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.nv-about-commitment-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
}

.nv-about-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0,200,83,0.05);
    border-radius: 10px;
}

.nv-about-value i {
    color: #00c853;
    font-size: 1rem;
    flex-shrink: 0;
}

.nv-about-value span {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}

/* About Responsive */
@media (max-width: 991px) {
    .nv-timeline::before { left: 30px; }
    .nv-timeline-item,
    .nv-timeline-item:nth-child(odd) { flex-direction: row; }
    .nv-timeline-marker { left: 30px; }
    .nv-timeline-content { width: 100%; padding: 0 0 0 5rem; }
    .nv-timeline-item:nth-child(odd) .nv-timeline-content { text-align: left; }
    .nv-about-heading { font-size: 2rem; }
    .nv-about-stats-grid { margin-top: 2rem; }
}

@media (max-width: 576px) {
    .nv-about-stats-grid { grid-template-columns: 1fr; }
    .nv-about-commitment-inner { padding: 2rem 1.5rem; }
    .nv-about-commitment-values { grid-template-columns: 1fr; }
    .nv-about-heading { font-size: 1.75rem; }
    .nv-timeline-content { padding-left: 4rem; }
}

/* ==========================================
   ORDER FORM
   ========================================== */
.nv-order-shell { max-width: 980px; margin: 0 auto; }
.nv-order-form { display: flex; flex-direction: column; gap: 1.25rem; }
.nv-order-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.nv-order-card-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.nv-order-card-header h3 { margin: 0; font-size: 1rem; font-weight: 700; }
.nv-order-card-body { padding: 1.25rem; }
.nv-order-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.nv-order-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nv-order-field { display: flex; flex-direction: column; gap: 0.35rem; }
.nv-order-label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.nv-order-input.form-control, .nv-order-input.form-select { background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--text); border-radius: 10px; min-height: 42px; }
.nv-order-input.form-control:focus, .nv-order-input.form-select:focus { border-color: rgba(0,200,83,0.45); box-shadow: 0 0 0 3px rgba(0,200,83,0.12); }
.nv-order-input.form-select option { background: #1b1b22; color: var(--text); }
.nv-order-info-box { margin-top: 1rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem 1rem; color: var(--text-secondary); font-size: 0.82rem; }
.nv-order-summary { margin-top: 1rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; }
.nv-order-summary h5 { margin-bottom: 0.75rem; color: var(--green); font-size: 0.95rem; font-weight: 700; }
.nv-order-summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.45rem; }
.nv-order-summary-row.total { margin-top: 0.65rem; padding-top: 0.65rem; border-top: 1px solid var(--border); color: var(--text); font-size: 0.95rem; font-weight: 700; }
.nv-order-checks { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.45rem; }
.nv-order-check-item { display: inline-flex; align-items: flex-start; gap: 0.55rem; color: var(--text-secondary); font-size: 0.82rem; }
.nv-order-check-item input[type="checkbox"] { margin-top: 0.15rem; accent-color: var(--green); }
.nv-order-check-item a { color: #78b9ff; }
.nv-order-payment { margin-top: 1.1rem; }
.nv-order-payment .button-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.nv-order-payment .btn { flex: 1; min-height: 44px; border-radius: 10px; font-weight: 700; border: none; }
.nv-order-payment .btn-pre-order { background: linear-gradient(135deg, #3d6ef7, #2c54c7); color: #fff; }
.nv-order-payment .btn-payment { background: linear-gradient(135deg, #00c853, #00a844); color: #000; }
.nv-order-payment .payment-disabled-note { color: var(--text-tertiary); font-size: 0.85rem; align-self: center; }
.nv-order-complete { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem 1.25rem; }
.nv-order-complete-icon { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3); color: var(--green); font-size: 2rem; }
@media (max-width: 900px) { .nv-order-grid-2 { grid-template-columns: 1fr; } }

/* Borica redirect + payment result (public layout) */
.nv-pay-redirect-card {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.nv-pay-redirect-spinner {
    width: 3.25rem;
    height: 3.25rem;
    border: 3px solid rgba(0, 200, 83, 0.18);
    border-top-color: var(--green, #00c853);
    border-radius: 50%;
    animation: nv-pay-spin 0.9s linear infinite;
}
@keyframes nv-pay-spin {
    to { transform: rotate(360deg); }
}
.nv-pay-redirect-form {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.nv-pay-result-rows {
    border: 1px solid var(--border);
    border-radius: var(--radius-md, 10px);
    overflow: hidden;
    margin-top: 0.5rem;
}
.nv-pay-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.nv-pay-result-row:last-child {
    border-bottom: none;
}
.nv-pay-result-row strong,
.nv-pay-result-row span:last-child {
    color: var(--text);
    text-align: right;
}
.nv-pay-result-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.82rem;
}
.nv-pay-result-notice {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.22);
    color: var(--text-secondary);
}
.nv-pay-result-notice--warn {
    background: rgba(234, 179, 8, 0.08);
    border-color: rgba(234, 179, 8, 0.28);
    color: rgba(250, 250, 252, 0.92);
}
