Legal Services Quote Calculator

Give potential clients transparency into your legal fees with an interactive calculator. This template helps law firms provide instant estimates for consultations, contract review, business formation, trademark filing, and other common legal services. Clients who understand pricing are more likely to engage. Capture inquiries from qualified leads who are ready to retain counsel. Fully customizable to match your firm's practice areas and fee structure.

Legal Services

Try the Calculator

Legal Services Fee Estimate
โš–๏ธ Service Selection
๐Ÿ“‹ Matter Details
โœจ Additional Services

๐Ÿ’ฐ Fee Estimate
$ 150.00
+
$ 0.00
+
$ 0.00
+
$ 0.00
๐Ÿงพ Total Estimate
$ 150.00
Hourly rate: $250/hour
This is an estimate only. Actual fees depend on matter complexity and are confirmed after consultation. No attorney-client relationship is formed by using this calculator.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
export function legalServicesCalculator(form: FormTs) {
// Hourly rates by attorney level
const hourlyRates: Record<string, number> = {
'paralegal': 95,
'associate': 250,
'senior-associate': 350,
'partner': 500,
'senior-partner': 650
};
 
// Service type base fees (flat fee or estimated hours)
const serviceFees: Record<string, { type: 'flat' | 'hourly', amount: number, minHours?: number, maxHours?: number }> = {
'consultation': { type: 'flat', amount: 150 },
'contract-review-simple': { type: 'flat', amount: 350 },
'contract-review-complex': { type: 'hourly', amount: 0, minHours: 3, maxHours: 8 },
'contract-drafting': { type: 'hourly', amount: 0, minHours: 4, maxHours: 12 },
'llc-formation': { type: 'flat', amount: 750 },
'corporation-formation': { type: 'flat', amount: 1200 },
'trademark-search': { type: 'flat', amount: 400 },
'trademark-filing': { type: 'flat', amount: 1500 },
'nda-drafting': { type: 'flat', amount: 450 },
'employment-agreement': { type: 'flat', amount: 850 },
'lease-review': { type: 'flat', amount: 500 },
'will-simple': { type: 'flat', amount: 500 },
'will-complex': { type: 'flat', amount: 1200 },
'trust-creation': { type: 'flat', amount: 2500 },
'power-of-attorney': { type: 'flat', amount: 250 },
'demand-letter': { type: 'flat', amount: 500 },
'cease-desist': { type: 'flat', amount: 600 },
'negotiation': { type: 'hourly', amount: 0, minHours: 2, maxHours: 10 },
'mediation-prep': { type: 'hourly', amount: 0, minHours: 5, maxHours: 15 },
'general-counsel': { type: 'hourly', amount: 0, minHours: 10, maxHours: 40 }
};
 
// Complexity multipliers
const complexityMultipliers: Record<string, number> = {
'simple': 0.8,
'standard': 1.0,
'complex': 1.5,
'highly-complex': 2.0
};
 
// Urgency multipliers
const urgencyMultipliers: Record<string, number> = {
'standard': 1.0,
'expedited': 1.25,
'rush': 1.5,
'emergency': 2.0
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Legal Services Fee Estimate',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Selection Section
const serviceSection = form.addSubform('serviceDetails', { title: 'โš–๏ธ Service Selection' });
 
serviceSection.addRow(row => {
row.addDropdown('practiceArea', {
label: 'Practice Area',
options: [
{ id: 'business', name: 'Business & Corporate' },
{ id: 'contracts', name: 'Contracts & Agreements' },
{ id: 'ip', name: 'Intellectual Property' },
{ id: 'estate', name: 'Estate Planning' },
{ id: 'employment', name: 'Employment Law' },
{ id: 'real-estate', name: 'Real Estate' },
{ id: 'litigation', name: 'Litigation Support' },
{ id: 'general', name: 'General Counsel' }
],
defaultValue: 'contracts',
isRequired: true
}, '1fr');
row.addDropdown('serviceType', {
label: 'Service Type',
options: () => {
const area = serviceSection.dropdown('practiceArea')?.value() || 'contracts';
if (area === 'business') {
return [
{ id: 'consultation', name: 'Initial Consultation' },
{ id: 'llc-formation', name: 'LLC Formation' },
{ id: 'corporation-formation', name: 'Corporation Formation' },
{ id: 'general-counsel', name: 'General Counsel (Monthly)' }
];
} else if (area === 'contracts') {
return [
{ id: 'consultation', name: 'Initial Consultation' },
{ id: 'contract-review-simple', name: 'Simple Contract Review' },
{ id: 'contract-review-complex', name: 'Complex Contract Review' },
{ id: 'contract-drafting', name: 'Contract Drafting' },
{ id: 'nda-drafting', name: 'NDA Drafting' }
];
} else if (area === 'ip') {
return [
{ id: 'consultation', name: 'Initial Consultation' },
{ id: 'trademark-search', name: 'Trademark Search' },
{ id: 'trademark-filing', name: 'Trademark Filing' },
{ id: 'cease-desist', name: 'Cease & Desist Letter' }
];
} else if (area === 'estate') {
return [
{ id: 'consultation', name: 'Initial Consultation' },
{ id: 'will-simple', name: 'Simple Will' },
{ id: 'will-complex', name: 'Complex Will' },
{ id: 'trust-creation', name: 'Trust Creation' },
{ id: 'power-of-attorney', name: 'Power of Attorney' }
];
} else if (area === 'employment') {
return [
{ id: 'consultation', name: 'Initial Consultation' },
{ id: 'employment-agreement', name: 'Employment Agreement' },
{ id: 'contract-review-simple', name: 'Contract Review' },
{ id: 'demand-letter', name: 'Demand Letter' }
];
} else if (area === 'real-estate') {
return [
{ id: 'consultation', name: 'Initial Consultation' },
{ id: 'lease-review', name: 'Lease Review' },
{ id: 'contract-review-complex', name: 'Purchase Agreement Review' },
{ id: 'negotiation', name: 'Negotiation Support' }
];
} else if (area === 'litigation') {
return [
{ id: 'consultation', name: 'Case Evaluation' },
{ id: 'demand-letter', name: 'Demand Letter' },
{ id: 'negotiation', name: 'Settlement Negotiation' },
{ id: 'mediation-prep', name: 'Mediation Preparation' }
];
} else {
return [
{ id: 'consultation', name: 'Initial Consultation' },
{ id: 'general-counsel', name: 'General Counsel Services' }
];
}
},
defaultValue: 'consultation',
isRequired: true
}, '1fr');
});
 
serviceSection.addRow(row => {
row.addDropdown('attorneyLevel', {
label: 'Attorney Level',
options: [
{ id: 'paralegal', name: 'Paralegal ($95/hr)' },
{ id: 'associate', name: 'Associate Attorney ($250/hr)' },
{ id: 'senior-associate', name: 'Senior Associate ($350/hr)' },
{ id: 'partner', name: 'Partner ($500/hr)' },
{ id: 'senior-partner', name: 'Senior Partner ($650/hr)' }
],
defaultValue: 'associate',
isRequired: true
}, '1fr');
row.addDropdown('complexity', {
label: 'Matter Complexity',
options: [
{ id: 'simple', name: 'Simple (-20%)' },
{ id: 'standard', name: 'Standard' },
{ id: 'complex', name: 'Complex (+50%)' },
{ id: 'highly-complex', name: 'Highly Complex (+100%)' }
],
defaultValue: 'standard',
isRequired: true
}, '1fr');
});
 
// Details Section
const detailsSection = form.addSubform('matterDetails', { title: '๐Ÿ“‹ Matter Details' });
 
detailsSection.addRow(row => {
row.addDropdown('urgency', {
label: 'Timeline / Urgency',
options: [
{ id: 'standard', name: 'Standard (2-4 weeks)' },
{ id: 'expedited', name: 'Expedited (1-2 weeks) (+25%)' },
{ id: 'rush', name: 'Rush (3-5 days) (+50%)' },
{ id: 'emergency', name: 'Emergency (24-48 hrs) (+100%)' }
],
defaultValue: 'standard',
isRequired: true
}, '1fr');
row.addInteger('estimatedHours', {
label: 'Estimated Hours',
min: 1,
max: 100,
defaultValue: 5,
isVisible: () => {
const service = serviceSection.dropdown('serviceType')?.value() || 'consultation';
const serviceInfo = serviceFees[service];
return serviceInfo?.type === 'hourly';
}
}, '1fr');
});
 
detailsSection.addRow(row => {
row.addCheckbox('includeFilingFees', {
label: 'Include Filing Fees (Estimated)',
defaultValue: true,
isVisible: () => {
const service = serviceSection.dropdown('serviceType')?.value();
return ['llc-formation', 'corporation-formation', 'trademark-filing'].includes(service || '');
}
}, '1fr');
row.addCheckbox('retainerAgreement', {
label: 'Monthly Retainer Arrangement',
defaultValue: false,
isVisible: () => {
const service = serviceSection.dropdown('serviceType')?.value();
return service === 'general-counsel';
}
}, '1fr');
});
 
detailsSection.addRow(row => {
row.addInteger('retainerHours', {
label: 'Monthly Retainer Hours',
min: 5,
max: 40,
defaultValue: 10,
isVisible: () => {
const service = serviceSection.dropdown('serviceType')?.value();
return service === 'general-counsel' && detailsSection.checkbox('retainerAgreement')?.value() === true;
}
});
});
 
// Additional Services Section
const addonsSection = form.addSubform('additionalServices', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('prioritySupport', {
label: 'Priority Phone/Email Support (+$150/mo)',
defaultValue: false
}, '1fr');
row.addCheckbox('documentStorage', {
label: 'Secure Document Storage (+$50/mo)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('quarterlyReview', {
label: 'Quarterly Compliance Review (+$500/qtr)',
defaultValue: false
}, '1fr');
row.addCheckbox('legalAudit', {
label: 'Initial Legal Audit (+$750)',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Fee Estimate', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('baseFee', {
label: 'Base Legal Fee',
computedValue: () => {
const service = serviceSection.dropdown('serviceType')?.value() || 'consultation';
const attorneyLevel = serviceSection.dropdown('attorneyLevel')?.value() || 'associate';
const complexity = serviceSection.dropdown('complexity')?.value() || 'standard';
const estimatedHours = detailsSection.integer('estimatedHours')?.value() || 5;
const retainerAgreement = detailsSection.checkbox('retainerAgreement')?.value();
const retainerHours = detailsSection.integer('retainerHours')?.value() || 10;
 
const serviceInfo = serviceFees[service];
const hourlyRate = hourlyRates?.[attorneyLevel] ?? 250;
const complexityMult = complexityMultipliers?.[complexity] ?? 1.0;
 
let fee = 0;
if (serviceInfo?.type === 'flat') {
fee = serviceInfo.amount * complexityMult;
} else {
if (service === 'general-counsel' && retainerAgreement) {
fee = hourlyRate * retainerHours * 0.85; // 15% retainer discount
} else {
fee = hourlyRate * estimatedHours * complexityMult;
}
}
 
return fee;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('urgencyFee', {
label: 'Urgency Adjustment',
computedValue: () => {
const service = serviceSection.dropdown('serviceType')?.value() || 'consultation';
const attorneyLevel = serviceSection.dropdown('attorneyLevel')?.value() || 'associate';
const complexity = serviceSection.dropdown('complexity')?.value() || 'standard';
const urgency = detailsSection.dropdown('urgency')?.value() || 'standard';
const estimatedHours = detailsSection.integer('estimatedHours')?.value() || 5;
 
const serviceInfo = serviceFees[service];
const hourlyRate = hourlyRates?.[attorneyLevel] ?? 250;
const complexityMult = complexityMultipliers?.[complexity] ?? 1.0;
const urgencyMult = urgencyMultipliers?.[urgency] ?? 1.0;
 
let baseFee = 0;
if (serviceInfo?.type === 'flat') {
baseFee = serviceInfo.amount * complexityMult;
} else {
baseFee = hourlyRate * estimatedHours * complexityMult;
}
 
return baseFee * (urgencyMult - 1);
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('filingFees', {
label: 'Filing Fees (Est.)',
computedValue: () => {
const service = serviceSection.dropdown('serviceType')?.value();
const includeFilingFees = detailsSection.checkbox('includeFilingFees')?.value();
 
if (!includeFilingFees) return 0;
 
const filingFeeEstimates: Record<string, number> = {
'llc-formation': 150,
'corporation-formation': 300,
'trademark-filing': 350
};
 
return filingFeeEstimates?.[service || ''] ?? 0;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('addonsTotal', {
label: 'Additional Services',
computedValue: () => {
let total = 0;
 
if (addonsSection.checkbox('prioritySupport')?.value()) total += 150;
if (addonsSection.checkbox('documentStorage')?.value()) total += 50;
if (addonsSection.checkbox('quarterlyReview')?.value()) total += 500;
if (addonsSection.checkbox('legalAudit')?.value()) total += 750;
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Total Estimate',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalFee', {
label: 'Estimated Total Fee',
computedValue: () => {
const service = serviceSection.dropdown('serviceType')?.value() || 'consultation';
const attorneyLevel = serviceSection.dropdown('attorneyLevel')?.value() || 'associate';
const complexity = serviceSection.dropdown('complexity')?.value() || 'standard';
const urgency = detailsSection.dropdown('urgency')?.value() || 'standard';
const estimatedHours = detailsSection.integer('estimatedHours')?.value() || 5;
const includeFilingFees = detailsSection.checkbox('includeFilingFees')?.value();
const retainerAgreement = detailsSection.checkbox('retainerAgreement')?.value();
const retainerHours = detailsSection.integer('retainerHours')?.value() || 10;
 
const serviceInfo = serviceFees[service];
const hourlyRate = hourlyRates?.[attorneyLevel] ?? 250;
const complexityMult = complexityMultipliers?.[complexity] ?? 1.0;
const urgencyMult = urgencyMultipliers?.[urgency] ?? 1.0;
 
// Base fee
let baseFee = 0;
if (serviceInfo?.type === 'flat') {
baseFee = serviceInfo.amount * complexityMult;
} else {
if (service === 'general-counsel' && retainerAgreement) {
baseFee = hourlyRate * retainerHours * 0.85;
} else {
baseFee = hourlyRate * estimatedHours * complexityMult;
}
}
 
// Apply urgency
let total = baseFee * urgencyMult;
 
// Filing fees
if (includeFilingFees) {
const filingFees: Record<string, number> = {
'llc-formation': 150,
'corporation-formation': 300,
'trademark-filing': 350
};
total += filingFees?.[service] ?? 0;
}
 
// Add-ons
if (addonsSection.checkbox('prioritySupport')?.value()) total += 150;
if (addonsSection.checkbox('documentStorage')?.value()) total += 50;
if (addonsSection.checkbox('quarterlyReview')?.value()) total += 500;
if (addonsSection.checkbox('legalAudit')?.value()) total += 750;
 
return Math.round(total);
},
variant: 'large',
suffix: () => {
const service = serviceSection.dropdown('serviceType')?.value();
const retainer = detailsSection.checkbox('retainerAgreement')?.value();
if (service === 'general-counsel' && retainer) return '/month';
return '';
}
});
});
 
finalSection.addRow(row => {
row.addTextPanel('hourlyNote', {
computedValue: () => {
const attorneyLevel = serviceSection.dropdown('attorneyLevel')?.value() || 'associate';
const rate = hourlyRates?.[attorneyLevel] ?? 250;
return `Hourly rate: $${rate}/hour`;
},
customStyles: { 'font-size': '0.9rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'This is an estimate only. Actual fees depend on matter complexity and are confirmed after consultation. No attorney-client relationship is formed by using this calculator.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Schedule Consultation'
});
}
 

Frequently Asked Questions

Can I customize this for my practice areas?

Absolutely. The calculator is fully customizable. Add or remove service types, set your own hourly rates, and configure flat-fee packages to match your firm's offerings and practice areas.

Does this support different billing structures?

Yes. The calculator supports hourly rates, flat fees, retainer arrangements, and hybrid billing. You can configure each service type with the appropriate billing model.

Will this give binding quotes to clients?

The calculator provides estimates only. Include appropriate disclaimers noting that actual fees may vary based on case complexity. Final fees are determined after consultation and engagement.

Can I capture client information?

Yes. The submit button collects contact information and case details for follow-up. This helps you qualify leads and prepare for initial consultations.

Is this appropriate for all practice areas?

The calculator works well for transactional and advisory services with predictable scope. For litigation and complex matters, it's best configured to provide consultation rates and indicate that full quotes require case review.