Sass generates valid CSS, so it doesn't matter if you're working on a non-Ruby project. I've used it with several PHP projects. Sass and Compass work great as stand-alone tools, as demonstrated in this tutorial about integrating Compass with Django.
Sass and Haml are now seperate projects, so no worries about being tightly integrated (not that they were when they were the same project).
Sass does indeed have more features and it is also more elegantly designed as a true superset of CSS. The new SCSS syntax should be immediately familiar to those experienced with CSS. The one advantage Less used to have over Sass was the CSS syntax. The developers of Sass recognised this and came up with SCSS as the solution. Both the older whitespace-sensitve Sass syntax and the SCSS syntax are interoperable, so there are no compatibility problems. You can have half of your project in Sass syntax and half in SCSS and it'll still compile.
Sass also has the advantage of the superb Compass meta-framework of which for me the highlight is the Susy extension. There are even Django specific extensions for Compass appearing.
Here's a nice article discussing a refactoring of the digg.com stylesheet using SCSS.
Yes, the extra features in Sass are definitely worth it, as is the superior design.
Yes, Sass is definitely mature enough for production use; it is at version 3 with a strong community of users and very active, responsive developers.
Chris Eppstein, creator of Compass, has put together a page comparing Sass and Less.