diff --git a/frontend/index.html b/frontend/index.html
index 43eac21..9df61aa 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -512,7 +512,7 @@
Estimated Cost: $0.00
- Based on 0 selected checks at $0.15 each
+ Based on 0 selected checks at ~$0.01 each
@@ -1722,8 +1722,8 @@
if (profileSelect.value && availableProfiles[profileSelect.value]) {
const profile = availableProfiles[profileSelect.value];
const numChecks = profile.enabled_count;
- const cost = numChecks * 0.15;
-
+ const cost = numChecks * 0.01; // Updated based on actual usage: ~$0.01 per check
+
estimatedCost.textContent = `$${cost.toFixed(2)}`;
checkCount.textContent = numChecks;
costDisplay.style.display = 'block';