        /* SafeNest Design System */
        :root {
            --bg-dark: #0B1220;
            --bg-card: #151B2E;
            --bg-hover: #1A2338;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --accent-primary: #4F46E5;
            --accent-secondary: #7C3AED;
            --accent-success: #10B981;
            --accent-warning: #F59E0B;
            --border-color: #2D3748;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body,
        body *,
        input,
        textarea,
        select,
        button {
            font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
        }

        body {
            background: #ffffff;
            color: #1e1e1e;
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Dark theme for pages that explicitly opt-in */
        body.dark-theme,
        body.safeness-design {
            background: var(--bg-dark);
            color: var(--text-primary);
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent-primary);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Navigation */
        .site-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,.92);
            border-bottom: 1px solid var(--border, #e2e8f0);
            backdrop-filter: blur(12px);
            overflow: visible;
        }
        
        [data-theme="dark"] .site-nav,
        body.dark-theme .site-nav,
        body.safeness-design .site-nav {
            background: rgba(15,23,42,.95);
            border-bottom: 1px solid rgba(148,163,184,0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .wrap {
            max-width: 1280px; 
            margin: 0 auto; 
            /* padding: 0 24px; */
        }

        /* Header nav: fixed layout so logo stays in same position on all pages (overrides page-specific .wrap) */
        .site-nav .wrap,
        .site-nav .nav-inner {
            padding-left: 24px !important;
            padding-right: 24px !important;
            max-width: 1280px !important;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            min-height: 72px;
            height: 72px;
            overflow: visible;
        }
        
        /* Mobile: 3-column grid — avoids position+transform on .brand (iOS Safari clips SVG <img> inside transformed layers) */
        @media (max-width: 1024px) {
            .site-nav {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(255, 255, 255, 0.98) !important;
            }

            [data-theme="dark"] .site-nav,
            body.dark-theme .site-nav,
            body.safeness-design .site-nav {
                background: rgba(15, 23, 42, 0.98) !important;
            }

            .nav-inner {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
                align-content: center;
                gap: 10px;
                min-height: 80px;
                height: auto;
                padding-top: 14px;
                padding-bottom: 14px;
            }

            .menu-btn {
                grid-column: 1;
                justify-self: start;
                align-self: center;
            }

            .brand {
                grid-column: 2;
                justify-self: center;
                align-self: center;
                position: static;
                left: auto;
                top: auto;
                transform: none;
                overflow: visible;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .nav-cta {
                grid-column: 3;
                justify-self: end;
                align-self: center;
            }
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border-radius: 8px;
            background: #f8fafc;
            border: none;
            cursor: pointer;
            box-shadow: none;
            color: #000000;
        }

        .icon-btn svg {
            width: 22px;
            height: 22px;
        }

        .menu-btn {
            display: none;
        }
        
        /* Force menu button to be visible on mobile */
        @media (max-width: 1024px) {
            .menu-btn {
                display: grid !important;
            }
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #000000;
            flex-shrink: 0;
            margin-right: 0;
        }
        
        .brand-logo {
            /* Wordmark SVG uses a horizontal viewBox (cropped artboard), not a square canvas */
            width: clamp(140px, 32vw, 200px);
            max-width: 100%;
            height: auto;
            display: block;
            overflow: visible;
            margin-top: 15px;
            /* Symmetric inset so ascenders (“h”) and descenders (“p”) are not clipped on mobile rasterization */
            padding-top: 6px;
            padding-bottom: 6px;
            box-sizing: content-box;
        }

        [data-theme="dark"] .brand {
            color: var(--ink, #0a1128);
        }

        .brand-word {
            font-family: Inter, system-ui, sans-serif;
            font-weight: 800;
            letter-spacing: -0.01em;
            font-size: 16px;
            color: #000000 !important;
        }
        
        [data-theme="dark"] .brand-word {
            color: #000000 !important;
        }
        
        body.dark-theme .brand-word,
        body.safeness-design .brand-word {
            color: #000000 !important;
        }
        
        .brand-mark {
            width: 26px;
            height: 26px;
            border-radius: 10px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            box-shadow: 0 10px 20px rgba(59,130,246,.22);
            position: relative;
        }
        
        .brand-mark::after {
            content: "";
            position: absolute;
            inset: 7px 6px 6px 7px;
            border-radius: 10px;
            border: 2px solid rgba(255,255,255,.85);
            border-top-left-radius: 12px;
            transform: rotate(-6deg);
            opacity: .9;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            color: #000000;
            font-weight: 500;
            font-size: 15px;
        }

        .nav-links > a,
        .nav-dd-btn {
            color: #000000;
            text-decoration: none;
            padding: 9px 10px;
            border-radius: 12px;
            border: 1px solid transparent;
            background: transparent;
            cursor: pointer;
            font: inherit;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .nav-links > a:hover,
        .nav-dd-btn:hover {
            color: #000000;
            background: #f1f5f9;
        }

        .nav-links > a.active {
            color: #1d4ed8;
            background: #eff6ff;
            border-color: transparent;
        }

        [data-theme="dark"] .nav-links {
            color: rgba(255,255,255,.92);
        }

        [data-theme="dark"] .nav-links > a,
        [data-theme="dark"] .nav-dd-btn {
            color: rgba(255,255,255,.92);
        }

        [data-theme="dark"] .nav-links > a:hover,
        [data-theme="dark"] .nav-dd-btn:hover {
            color: rgba(255,255,255,1);
            background: rgba(255,255,255,.1);
        }

        [data-theme="dark"] .nav-links > a.active {
            color: rgba(255,255,255,1);
            background: rgba(59,130,246,.3);
            border-color: transparent;
        }

        .nav-dd {
            position: relative;
        }

        .chev {
            opacity: .55;
            display: inline-block;
            transform: translateY(1px);
            line-height: 1;
            font-size: 0.75rem;
            transition: transform 0.2s;
        }

        .nav-dd[aria-expanded="true"] .chev {
            transform: translateY(1px) rotate(180deg);
        }

        .nav-dd-panel {
            position: absolute;
            left: 50%;
            top: 100%;
            width: 320px;
            transform: translateX(-50%) translateY(10px);
            background: #ffffff !important;
            border: 1px solid rgba(230,232,238,.9);
            border-radius: 16px;
            padding: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            z-index: 1000;
        }

        .nav-dd[aria-expanded="true"] .nav-dd-panel {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dd-item {
            display: flex;
            gap: 12px;
            padding: 12px 12px;
            border-radius: 14px;
            text-decoration: none;
            color: #000000;
            transition: background 0.2s;
        }

        .dd-item:hover {
            background: #f8fafc;
            border-color: transparent;
        }

        .dd-item.is-disabled {
            opacity: .55;
            pointer-events: none;
        }

        .dd-ico {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: #f1f5f9;
            flex-shrink: 0;
            font-size: 1rem;
            color: #000000;
        }
        
        .dd-ico svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
        }

        .dd-text {
            flex: 1;
        }

        .dd-title {
            font-weight: 900;
            font-size: 13px;
            color: #000000;
        }

        .dd-sub {
            color: var(--muted, #64748b);
            font-weight: 600;
            font-size: 12px;
        }

        .dd-divider {
            height: 1px;
            background: rgba(230,232,238,.9);
            margin: 8px 8px;
        }

        .dd-group-label {
            padding: 6px 10px 2px;
            color: var(--muted, #64748b);
            font-weight: 900;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Force dropdown panel to always be white */
        [data-theme="dark"] .nav-dd-panel,
        body.dark-theme .nav-dd-panel,
        body.safeness-design .nav-dd-panel {
            background: #ffffff !important;
            border-color: rgba(230,232,238,.9) !important;
            box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
        }

        [data-theme="dark"] .dd-item,
        body.dark-theme .dd-item,
        body.safeness-design .dd-item {
            color: #000000 !important;
        }

        [data-theme="dark"] .dd-item:hover,
        body.dark-theme .dd-item:hover,
        body.safeness-design .dd-item:hover {
            background: #f8fafc !important;
        }

        [data-theme="dark"] .dd-title,
        body.dark-theme .dd-title,
        body.safeness-design .dd-title {
            color: #000000 !important;
        }

        [data-theme="dark"] .dd-divider,
        body.dark-theme .dd-divider,
        body.safeness-design .dd-divider {
            background: rgba(230,232,238,.9) !important;
        }
        
        [data-theme="dark"] .dd-ico,
        body.dark-theme .dd-ico,
        body.safeness-design .dd-ico {
            background: #f1f5f9 !important;
            color: #000000 !important;
        }
        
        [data-theme="dark"] .dd-sub,
        body.dark-theme .dd-sub,
        body.safeness-design .dd-sub {
            color: #64748b !important;
        }
        
        [data-theme="dark"] .dd-group-label,
        body.dark-theme .dd-group-label,
        body.safeness-design .dd-group-label {
            color: #64748b !important;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .site-user-wrap {
            position: relative;
        }
        .site-user-trigger {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 12px 6px 6px;
            border-radius: 10px;
            border: 1px solid var(--border, #e2e8f0);
            background: transparent;
            cursor: pointer;
            font: inherit;
            color: inherit;
            transition: background 0.15s;
        }
        .site-user-trigger:hover {
            background: #f8fafc;
        }
        .site-user-avatar {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: #ede9fe;
            color: #5746d6;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .site-user-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            min-width: 0;
        }
        .site-user-name {
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            max-width: 140px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .site-user-role {
            font-size: 11px;
            color: #94a3b8;
        }
        .site-user-chevron {
            margin-left: 2px;
            opacity: 0.55;
            transition: transform 0.2s;
            flex-shrink: 0;
        }
        .site-user-wrap.open .site-user-chevron {
            transform: rotate(180deg);
        }
        .site-user-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 220px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
            padding: 6px;
            z-index: 1100;
        }
        .site-user-wrap.open .site-user-dropdown {
            display: block;
        }
        .site-user-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            font-size: 13px;
            color: #334155;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
        }
        .site-user-dropdown a:hover {
            background: #f8fafc;
            color: #0f172a;
        }
        .site-user-dropdown a.site-user-logout {
            color: #ef4444;
        }
        .site-user-dropdown a.site-user-logout:hover {
            background: rgba(239, 68, 68, 0.08);
            color: #dc2626;
        }

        [data-theme="dark"] .site-user-trigger,
        body.dark-theme .site-user-trigger,
        body.safeness-design .site-user-trigger {
            border-color: rgba(148, 163, 184, 0.25);
            color: #f1f5f9;
        }
        [data-theme="dark"] .site-user-trigger:hover,
        body.dark-theme .site-user-trigger:hover,
        body.safeness-design .site-user-trigger:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        [data-theme="dark"] .site-user-name,
        body.dark-theme .site-user-name,
        body.safeness-design .site-user-name {
            color: #f1f5f9;
        }
        [data-theme="dark"] .site-user-role,
        body.dark-theme .site-user-role,
        body.safeness-design .site-user-role {
            color: #94a3b8;
        }
        [data-theme="dark"] .site-user-dropdown,
        body.dark-theme .site-user-dropdown,
        body.safeness-design .site-user-dropdown {
            background: #1e293b;
            border-color: rgba(148, 163, 184, 0.2);
        }
        [data-theme="dark"] .site-user-dropdown a,
        body.dark-theme .site-user-dropdown a,
        body.safeness-design .site-user-dropdown a {
            color: #e2e8f0;
        }
        [data-theme="dark"] .site-user-dropdown a:hover,
        body.dark-theme .site-user-dropdown a:hover,
        body.safeness-design .site-user-dropdown a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .drawer-user-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0 16px;
            margin-bottom: 8px;
            border-bottom: 1px solid #e2e8f0;
        }
        .drawer-user-avatar {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #ede9fe;
            color: #5746d6;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .drawer-user-name {
            font-weight: 700;
            font-size: 15px;
            color: #0f172a;
        }
        .drawer-user-role {
            font-size: 12px;
            color: #64748b;
            margin-top: 2px;
        }
        .drawer-nav a.drawer-logout {
            color: #ef4444;
            font-weight: 600;
        }
        .drawer-nav a.drawer-logout:hover {
            color: #dc2626;
        }

        .lang-toggle {
            display: inline-flex;
            background: #f1f5f9;
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 4px;
            box-shadow: none;
        }

        .lang-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 10px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 900;
            font-size: 12px;
            color: #000000;
        }

        .lang-pill.active {
            background: #fff;
            color: var(--ink, #0a1128);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        [data-theme="dark"] .lang-toggle {
            background: rgba(255,255,255,.1);
        }

        [data-theme="dark"] .lang-pill {
            color: rgba(255,255,255,.7);
            background: transparent;
        }

        [data-theme="dark"] .lang-pill.active {
            background: rgba(59,130,246,.3);
            color: rgba(255,255,255,1);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.9375rem;
        }

        .btn-primary {
            background: #4F46E5;
            color: white;
            font-weight: 600;
        }

        .btn-primary:hover {
            background: #4338CA;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        .btn-ghost {
            background: transparent;
            color: #000000;
            border: 1px solid var(--border, #e2e8f0);
            box-shadow: none;
        }

        .btn-ghost:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            color: #000000;
        }

        [data-theme="dark"] .btn-ghost {
            background: #fff;
            color: var(--ink, #0a1128);
            border-color: transparent;
        }

        [data-theme="dark"] .btn-ghost:hover {
            background: rgba(255,255,255,.95);
            border-color: transparent;
        }

        /* Trust Bar */
        .combined-trust-bar {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: #fff;
            padding: 12px 0;
            box-shadow: 0 2px 12px rgba(91, 33, 182, 0.15);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .combined-trust-bar::-webkit-scrollbar {
            display: none;
        }

        .combined-trust-bar-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: nowrap;
        }

        .trust-badge-compact {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #fff;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            flex-shrink: 0;
        }

        .trust-badge-icon-sm {
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .trust-badge-text {
            font-weight: 500;
            font-size: 12px;
            white-space: nowrap;
        }
        
        .trust-badge-text strong {
            font-weight: 700;
            color: #fff;
        }

        .trust-divider {
            width: 1px;
            height: 24px;
            background: rgba(255,255,255,0.25);
            margin: 0 4px;
            flex-shrink: 0;
        }

        .urgency-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.95);
            color: #3b82f6;
            padding: 6px 8px 6px 12px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            flex-shrink: 0;
        }

        .urgency-badge-text {
            font-weight: 600;
            white-space: nowrap;
        }

        .urgency-badge-highlight {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: #fff;
            padding: 4px 8px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .urgency-cta-compact {
            background: #fff;
            color: #1d4ed8;
            padding: 6px 14px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            flex-shrink: 0;
            white-space: nowrap;
        }
        
        .urgency-cta-compact:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 1100px) {
            .combined-trust-bar .wrap {
                max-width: 100%;
                padding: 0 12px;
            }
            .combined-trust-bar-inner {
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {
            .trust-divider {
                display: none;
            }
            .trust-badge-compact {
                padding: 5px 10px;
            }
        }

        /* Mobile Menu Drawer */
        .scrim {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .scrim.open {
            opacity: 1;
            visibility: visible;
        }

        .drawer {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 320px;
            max-width: 90vw;
            background: rgba(255,255,255,.98) !important;
            border-right: 1px solid rgba(230,232,238,.9);
            z-index: 1000;
            transform: translateX(-100%);
            transition: transform 0.3s;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        /* Force drawer to always have light background */
        body.dark-theme .drawer,
        body.safeness-design .drawer,
        [data-theme="dark"] .drawer {
            background: rgba(255,255,255,.98) !important;
        }

        .drawer.open {
            transform: translateX(0);
        }
        
        .drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px;
            border-bottom: 1px solid rgba(230,232,238,.9);
        }
        
        .drawer-head .icon-btn {
            background: #f8fafc;
            color: #000000;
        }
        
        .drawer-head .icon-btn svg {
            stroke: #000000;
        }
        
        .drawer-title {
            font-family: "Playfair Display", Georgia, serif;
            font-weight: 900;
            color: #0a1128 !important;
            letter-spacing: -0.02em;
        }
        
        /* Force drawer text to always be dark */
        body.dark-theme .drawer-title,
        body.safeness-design .drawer-title,
        [data-theme="dark"] .drawer-title {
            color: #0a1128 !important;
        }
        
        .drawer-nav {
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .drawer-nav a {
            text-decoration: none;
            color: #0a1128 !important;
            font-weight: 900;
            padding: 12px 12px;
            border-radius: 14px;
        }
        
        /* Force drawer nav links to always be dark */
        body.dark-theme .drawer-nav a,
        body.safeness-design .drawer-nav a,
        [data-theme="dark"] .drawer-nav a {
            color: #0a1128 !important;
        }
        
        .drawer-nav a:hover {
            background: rgba(31,111,235,.08);
        }
        
        /* Force drawer nav hover to always be light */
        body.dark-theme .drawer-nav a:hover,
        body.safeness-design .drawer-nav a:hover,
        [data-theme="dark"] .drawer-nav a:hover {
            background: rgba(31,111,235,.08) !important;
        }
        
        .drawer-divider {
            height: 1px;
            background: rgba(230,232,238,.9);
            margin: 10px 6px;
        }
        
        .drawer-foot {
            padding: 16px;
            border-top: 1px solid rgba(230,232,238,.9);
            display: flex;
            justify-content: center;
            margin-top: auto;
        }
        
        .drawer-foot .lang-toggle {
            display: inline-flex;
            background: #f1f5f9;
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 4px;
        }
        
        .drawer-foot .lang-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 10px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 900;
            font-size: 12px;
            color: #000000;
        }
        
        .drawer-foot .lang-pill.active {
                background: #fff;
            color: var(--ink, #0a1128);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        
        body.no-scroll {
            overflow: hidden;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .menu-btn {
                display: grid !important;
                background: #f8fafc !important;
                color: #000000 !important;
            }
            
            .menu-btn svg {
                stroke: #000000 !important;
            }

            .nav-links {
                display: none;
            }

            .nav-cta .btn-ghost {
                display: none;
            }

            .site-user-text {
                display: none;
            }
            .site-user-trigger {
                padding: 4px 8px 4px 4px;
            }
            
            .nav-cta {
                display: flex !important;
            }
            
            .nav-cta .lang-toggle {
                display: inline-flex !important;
            }
            
            /* Force brand to be black on mobile */
            .brand {
                color: #000000 !important;
            }
            
            .brand-word {
                color: #000000 !important;
            }
            
            /* Override any dark theme styles on mobile */
            body.dark-theme .brand,
            body.safeness-design .brand,
            [data-theme="dark"] .brand {
                color: #000000 !important;
            }
            
            body.dark-theme .brand-word,
            body.safeness-design .brand-word,
            [data-theme="dark"] .brand-word {
                color: #000000 !important;
            }
            
            body.dark-theme .menu-btn,
            body.safeness-design .menu-btn,
            [data-theme="dark"] .menu-btn {
                background: #f8fafc !important;
                color: #000000 !important;
            }
            
            body.dark-theme .menu-btn svg,
            body.safeness-design .menu-btn svg,
            [data-theme="dark"] .menu-btn svg {
                stroke: #000000 !important;
            }
        }
