I would say there are more SQL database than NoSQL databases (every company has at least one SQL database), but more data in NoSQL databases. See: MongoDB for a new Era.
Yes, SQL has the ACID properties. But SQL isn't (usually) spread across multiple servers in a cluster. (There are always multiple disks.)
Coordinating transactions across multiple processes on single server is tough enough, let alone across multiple servers. In order to, say, lock a collection/table or some documents/rows, you'd have to do network communications, which are (relatively) slow.
See the second part of the previous answer.
The drawbacks of ACID are (1) that it's (somewhat) difficult to do, and (2) doing so may slow down concurrency.
The same query might yield slightly different results depending on which server it goes to and other details. But in many applications, that doesn't matter
Could you explain why a query might have different results depending on the server, and why that doesn't often matter?
Suppose the query is "how many iPhone 15s do we have?" maybe for a shopping site. If the inventory is spread across multiple servers, and they aren't closely coordinated, the answer might be inexact.
But most of the time, the exact answer isn't necessary. The customer just wants to know if there's more than one, and the supply chain manager wants to know if it's time to restock, neither of which needs to be exact.
Financial accounting needs to be exact, but lots of other things don't.