
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        height: var(--nav-h);
        display: flex;
        align-items: center;
        padding: 0 40px;
        background: rgba(4, 20, 10, 0.92);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(56, 240, 128, 0.1);
    }
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        flex-shrink: 0;
    }
    .nav-logo-img {
        width: 56px;
        height: auto;
        filter: drop-shadow(0 0 6px rgba(56, 240, 128, 0.3));
        flex-shrink: 0;
    }
    .nav-logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }
    .nav-logo-text strong {
        font-size: 14.5px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.03em;
    }
    .nav-logo-text span {
        font-size: 10px;
        color: var(--muted);
        letter-spacing: 0.06em;
    }
    .small-logo-text {
        display: none;
    }
    .small-logo-text strong {
        font-size: 14.5px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.03em;
    }
    .small-logo-text span {
        font-size: 10px;
        color: var(--muted);
        letter-spacing: 0.06em;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 6px;
        transition:
            color 0.2s,
            background 0.2s;
        display: flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
    }
    .nav-link:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-link.active {
        color: var(--accent);
    }
    .nav-cta {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        position: relative;
        margin-left: 20px;
    }
