*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; }
    body { font-family: 'Manrope', sans-serif; background: #fff; color: #18181b; overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ── HEADER ───────────────────────────────────────── */
    .header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.95);
      border-bottom: 1px solid #e4e4e7;
    }
    .header-inner {
      max-width: 1280px; margin: 0 auto;
      padding: 0 32px; height: 64px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo { display: flex; align-items: center; }
    .logo svg { height: 44px; width: auto; }
    .nav { display: flex; align-items: center; gap: 24px; }
    .nav a { font-size: 14px; font-weight: 600; color: #52525b; white-space: nowrap; }
    .nav a.active { color: #8a1175; }
    .nav-search { display: flex; align-items: center; gap: 6px; }
    a.btn-intranet {
      background: #8a1175; color: #fff;
      border-radius: 14px; padding: 10px 20px;
      font-size: 13px; font-weight: 700; white-space: nowrap;
    }
    