        /* --- 1. ELEMENTOR OVERRIDES --- */
        .fmg-header-host {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
            overflow: visible !important; 
            z-index: 999 !important;
            border: none !important;
        }

        .fmg-header-host .elementor-widget-container {
            margin: 0 !important;
            padding: 0 !important;
            width: 100% !important;
        }

        /* --- 2. SCOPED CSS: DESIGN SYSTEM 2026 --- */
        .fmg-nav-wrapper {
            /* Palette */
            --fmg-anchor: var(--fmg-color-ink-900, #141633);
            --fmg-action: var(--fmg-color-accent, #7334F0);
            --fmg-surface: var(--fmg-color-surface, #FFFFFF);
            --fmg-glass: rgba(255, 255, 255, 0.86);
            --fmg-ring: color-mix(in srgb, var(--fmg-action), transparent 72%);

            /* Dimensions */
            --fmg-nav-height: 72px;
            --fmg-shadow: 0 8px 30px rgba(20, 22, 51, 0.09);

            position: sticky;
            top: 0;
            z-index: 999;
            background: var(--fmg-glass);
            backdrop-filter: saturate(150%) blur(10px);
            -webkit-backdrop-filter: saturate(150%) blur(10px);
            width: 100%;
            box-shadow: var(--fmg-shadow);
            border-bottom: 1px solid color-mix(in srgb, var(--fmg-anchor), transparent 92%);
            transition: box-shadow 0.3s ease, background-color 0.3s ease;
        }

        .fmg-nav-wrapper::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, color-mix(in srgb, var(--fmg-action), transparent 100%), color-mix(in srgb, var(--fmg-action), transparent 50%), color-mix(in srgb, var(--fmg-action), transparent 100%));
            pointer-events: none;
        }

        .fmg-nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: var(--fmg-nav-height);
            gap: 12px;
            position: relative;
        }

        /* LOGO */
        .fmg-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            flex-shrink: 0;
        }
        .fmg-nav-logo:hover {
            opacity: 0.92;
            transform: translateY(-1px);
        }

        .fmg-nav-wordmark {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--fmg-anchor);
            letter-spacing: -0.04em;
            line-height: 1;
        }
        .fmg-nav-wordmark span { color: var(--fmg-action); }

        /* LINKS */
        .fmg-nav-links {
            display: flex;
            gap: 1.4rem;
            margin: 0 2rem;
            align-items: center;
        }

        .fmg-nav-link {
            font-family: 'Nunito', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--fmg-anchor);
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
            white-space: nowrap;
            opacity: 0.85;
            position: relative;
            padding-bottom: 2px;
        }

        .fmg-nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            background: var(--fmg-action);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.25s ease;
            opacity: 0.9;
        }

        .fmg-nav-link:hover {
            color: var(--fmg-action);
            opacity: 1;
        }
        .fmg-nav-link:hover::after {
            transform: scaleX(1);
        }

        .fmg-nav-more {
            position: relative;
        }

        .fmg-nav-more-toggle {
            font-family: 'Nunito', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--fmg-anchor);
            background: none;
            border: 0;
            cursor: pointer;
            opacity: 0.85;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0;
        }

        .fmg-nav-more-toggle::after {
            content: "\25BE";
            font-size: 0.8em;
            transition: transform 0.2s ease;
        }

        .fmg-nav-more-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }

        .fmg-nav-more-menu {
            position: absolute;
            top: calc(100% + 14px);
            right: 0;
            min-width: 240px;
            background: var(--fmg-surface);
            border: 1px solid color-mix(in srgb, var(--fmg-anchor), transparent 91%);
            border-radius: 12px;
            box-shadow: 0 14px 30px rgba(20, 22, 51, 0.14);
            padding: 10px;
            display: grid;
            gap: 2px;
            transform: translateY(-8px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
            z-index: 5;
        }

        .fmg-nav-more-menu.is-open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .fmg-nav-more-item {
            display: block;
            padding: 10px 12px;
            border-radius: 8px;
            color: var(--fmg-anchor);
            font-family: 'Nunito', sans-serif;
            font-size: 0.93rem;
            font-weight: 700;
            text-decoration: none;
        }

        .fmg-nav-more-item:hover {
            background: color-mix(in srgb, var(--fmg-action), transparent 92%);
            color: var(--fmg-action);
        }

        /* CTA BUTTON */
        .fmg-nav-cta {
            background: linear-gradient(
                135deg,
                color-mix(in srgb, var(--fmg-action), white 8%),
                color-mix(in srgb, var(--fmg-action), #141633 22%)
            );
            color: #ffffff !important;
            font-family: 'Montserrat', sans-serif;
            padding: 0.7rem 1.4rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            white-space: nowrap;
            letter-spacing: 0.02em;
            box-shadow: 0 8px 20px color-mix(in srgb, var(--fmg-action), transparent 70%);
            flex-shrink: 0;
        }

        .fmg-nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px color-mix(in srgb, var(--fmg-action), transparent 62%);
            filter: brightness(1.03);
        }

        .fmg-nav-link:focus-visible,
        .fmg-nav-logo:focus-visible,
        .fmg-nav-more-toggle:focus-visible,
        .fmg-nav-more-item:focus-visible,
        .fmg-nav-cta:focus-visible,
        .fmg-mobile-toggle:focus-visible,
        .fmg-mobile-drawer .fmg-nav-link:focus-visible {
            outline: 2px solid var(--fmg-action);
            outline-offset: 3px;
            border-radius: 8px;
        }

        .fmg-mobile-toggle:focus-visible {
            box-shadow: 0 0 0 4px var(--fmg-ring);
        }

        /* HAMBURGER */
        .fmg-mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            margin: 0;
            border-radius: 8px;
        }

        .fmg-hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--fmg-anchor);
            margin: 5px 0;
            border-radius: 2px;
            transition: 0.3s;
        }

        .fmg-mobile-toggle[aria-expanded="true"] .fmg-hamburger span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .fmg-mobile-toggle[aria-expanded="true"] .fmg-hamburger span:nth-child(2) {
            opacity: 0;
        }
        .fmg-mobile-toggle[aria-expanded="true"] .fmg-hamburger span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        /* MOBILE DRAWER */
        .fmg-mobile-drawer {
            position: absolute;
            top: var(--fmg-nav-height);
            left: 0;
            width: 100%;
            background: var(--fmg-surface);
            border-top: 1px solid rgba(20,22,51,0.05);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transform: translateY(-10px);
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
        }

        .fmg-mobile-drawer.is-open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
            visibility: visible;
        }

        .fmg-mobile-drawer .fmg-nav-link {
            font-size: 1rem;
            opacity: 0.95;
        }

        /* RESPONSIVE LOGIC */
        @media (max-width: 960px) {
            .fmg-nav-links { display: none; }
            .fmg-mobile-toggle { display: block; }
            
            .fmg-nav-wordmark {
                font-size: 1.15rem;
            }

            .fmg-nav-cta {
                margin-left: auto;
                margin-right: 18px;
                padding: 0.6rem 1rem;
                font-size: 0.75rem;
            }

            .fmg-nav-container {
                padding: 0 16px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .fmg-nav-wrapper,
            .fmg-nav-logo,
            .fmg-nav-link,
            .fmg-nav-link::after,
            .fmg-nav-more-toggle,
            .fmg-nav-more-menu,
            .fmg-nav-cta,
            .fmg-hamburger span,
            .fmg-mobile-drawer {
                transition: none !important;
            }
        }

        .fmg-nav-trustline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 1rem 0.55rem;
            font-family: 'Nunito', sans-serif;
            font-size: 0.8rem;
            color: rgba(20, 22, 51, 0.72);
            border-top: 1px solid rgba(20, 22, 51, 0.06);
            background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.9));
        }

        .fmg-nav-trustline strong {
            font-weight: 800;
            color: var(--fmg-anchor);
        }

        @media (max-width: 960px) {
            .fmg-nav-trustline {
                font-size: 0.76rem;
                padding: 0.5rem 0.9rem 0.6rem;
                text-align: center;
                line-height: 1.35;
            }
        }
