diff --git a/src/content/docs/browser-rendering/platform/limits.mdx b/src/content/docs/browser-rendering/platform/limits.mdx
index 8a6a993fe0bf96b..ae4f1f129af52bb 100644
--- a/src/content/docs/browser-rendering/platform/limits.mdx
+++ b/src/content/docs/browser-rendering/platform/limits.mdx
@@ -14,16 +14,18 @@ import { Render, Plan } from "~/components";
| Feature | Limit |
| -------------------------------------- | --------------- |
-| Concurrent browsers per account | 3 per account |
+| Concurrent browsers per account (Workers Binding API only) | 3 per account |
| New browser instances per minute | 3 per minute |
| Browser timeout | 60 seconds [^2] |
| Total requests per min (REST API only) | 6 per minute |
## Workers Paid
+
+
| Feature | Limit |
| -------------------------------------- | ------------------- |
-| Concurrent browsers per account | 10 per account [^1] |
+| Concurrent browsers per account (Workers Binding API only) | 10 per account [^1] |
| New browser instances per minute | 10 per minute [^1] |
| Browser timeout | 60 seconds [^2][^1] |
| Total requests per min (REST API only) | 60 per minute |
@@ -32,4 +34,10 @@ import { Render, Plan } from "~/components";
[^2]: By default, a browser instance gets killed if it does not get any [devtools](https://chromedevtools.github.io/devtools-protocol/) command for 60 seconds, freeing one instance. Users can optionally increase this by using the `keep_alive` [option](/browser-rendering/platform/puppeteer/#keep-alive). `browser.close()` releases the browser instance.
-
+## Note on concurrency
+
+While the limits above define the maximum number of concurrent browser sessions per account, in practice you may not need to hit these limits. Browser sessions close automatically—by default, after 60 seconds of inactivity or upon task completion—so if each session finishes its work before a new request comes in, the effective concurrency is lower. This means that most workflows do not require very high concurrent browser limits.
+
+
+
+
diff --git a/src/content/partials/browser-rendering/limits-increase.mdx b/src/content/partials/browser-rendering/limits-increase.mdx
index 86f3d400ee3278f..542dbdfc9af3bad 100644
--- a/src/content/partials/browser-rendering/limits-increase.mdx
+++ b/src/content/partials/browser-rendering/limits-increase.mdx
@@ -4,6 +4,6 @@
:::note[Need a higher limit?]
-To request an increase to a limit, complete the [Limit Increase Request Form](https://forms.gle/CdueDKvb26mTaepa9). If the limit can be increased, Cloudflare will contact you with next steps.
+These limits will be raised once we are ready to start charging for this service. If you need higher limits sooner, complete the [Limit Increase Request Form](https://forms.gle/CdueDKvb26mTaepa9). If the limit can be increased, Cloudflare will contact you with next steps.
:::