.global-header,
.global-header * { box-sizing:border-box; }
.global-header {
    display:block;
    position:sticky;
    top:0;
    z-index:1000;
    width:100%;
    max-width:none;
    min-height:72px;
    margin:0;
    padding:0;
    border-bottom:1px solid rgba(148,163,184,.14);
    background:rgba(7,12,28,.94);
    box-shadow:0 8px 30px rgba(0,0,0,.12);
    -webkit-backdrop-filter:blur(18px);
    backdrop-filter:blur(18px);
}
.global-header-inner {
    width:min(1320px,calc(100% - 40px));
    min-height:72px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:28px;
    margin:0 auto;
}
.global-brand { display:inline-flex; align-items:center; gap:11px; color:#f8fafc; text-decoration:none; }
.global-brand-mark { width:38px; height:38px; display:grid; place-items:center; overflow:hidden; border-radius:11px; box-shadow:0 8px 22px rgba(37,99,235,.28); }
.global-brand-mark img { display:block; width:100%; height:100%; }
.global-brand strong { color:#60d9f2; font-size:1.15rem; letter-spacing:-.025em; }
.global-nav { justify-self:center; display:flex; align-items:center; gap:2px; }
.global-nav a { padding:9px 9px; border-radius:9px; color:#c9d3e3; font-size:.76rem; font-weight:700; text-decoration:none; transition:color .2s ease,background .2s ease; }
.global-nav a:hover,.global-nav a[aria-current="page"] { color:#fff; background:rgba(96,165,250,.1); }
.global-nav .global-nav-primary { margin-left:5px; color:#fff; background:linear-gradient(135deg,#4f67ed,#7c00f8); box-shadow:0 7px 20px rgba(99,45,238,.25); }
.global-contact { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:39px; padding:8px 12px; color:#4ade80; border:1px solid rgba(34,197,94,.3); border-radius:999px; background:rgba(34,197,94,.08); font-size:.72rem; font-weight:750; text-decoration:none; white-space:nowrap; }
.global-contact svg { width:18px; height:18px; flex:0 0 auto; }
.global-menu-toggle { display:none; width:40px; height:40px; padding:9px; border:1px solid rgba(148,163,184,.22); border-radius:10px; background:#111a30; cursor:pointer; }
.global-menu-toggle span { display:block; height:2px; margin:4px 0; border-radius:3px; background:#e2e8f0; transition:.2s ease; }
.global-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.global-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.global-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
@media (max-width:800px) {
    .global-header,.global-header-inner { min-height:60px; }
    .global-header-inner { width:calc(100% - 24px); grid-template-columns:auto 1fr auto auto; gap:8px; }
    .global-brand { gap:8px; }
    .global-brand-mark { width:34px; height:34px; border-radius:9px; }
    .global-brand strong { font-size:.92rem; }
    .global-menu-toggle { display:block; justify-self:end; }
    .global-contact { width:40px; height:40px; min-height:40px; padding:0; }
    .global-contact span { display:none; }
    .global-nav {
        position:absolute;
        top:calc(100% + 1px);
        left:12px;
        right:12px;
        display:none;
        padding:11px;
        border:1px solid rgba(148,163,184,.18);
        border-radius:14px;
        background:#0b1428;
        box-shadow:0 22px 50px rgba(0,0,0,.45);
    }
    .global-nav.is-open { display:grid; gap:4px; }
    .global-nav a { display:block; padding:12px 13px; font-size:.9rem; }
    .global-nav .global-nav-primary { margin:5px 0 0; text-align:center; }
}
@media (max-width:380px) {
    .global-header-inner { width:calc(100% - 16px); }
    .global-brand strong { display:none; }
}
