NDA / Confidentiality Agreement Calculator

Protect your business information with professionally drafted NDAs. This calculator helps clients estimate costs for various types of confidentiality agreements including standard business NDAs, employee agreements, investor NDAs, and specialized agreements for technology, healthcare, and M&A transactions. Configure provisions, jurisdictions, and additional services to get accurate estimates.

Legal Services

Try the Calculator

NDA / Confidentiality Agreement Calculator
๐Ÿ”’ Agreement Type
 
๐Ÿ“‹ Scope & Provisions
๐Ÿ‘” Service Options
 
โœจ Additional Services

๐Ÿ’ฐ Cost Estimate
$ 450.00
+
$ 100.00
+
$ 0.00
+
$ 0.00
๐Ÿงพ Total Estimate
$ 550.00
$ 550.00
Order 5+ for 10% discount, 10+ for 15% discount
This is an estimate only. Final fees confirmed after reviewing your specific requirements. NDA complexity may affect final pricing.
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
export function ndaAgreementCalculator(form: FormTs) {
// NDA types and base fees
const ndaTypes: Record<string, { baseFee: number, hours: number }> = {
'standard-unilateral': { baseFee: 350, hours: 2 },
'standard-mutual': { baseFee: 450, hours: 2.5 },
'employee': { baseFee: 300, hours: 1.5 },
'contractor': { baseFee: 350, hours: 2 },
'investor': { baseFee: 550, hours: 3 },
'merger-acquisition': { baseFee: 1200, hours: 6 },
'technology': { baseFee: 650, hours: 4 },
'healthcare': { baseFee: 750, hours: 4 },
'financial': { baseFee: 700, hours: 4 },
'custom': { baseFee: 600, hours: 3.5 }
};
 
// Attorney levels
const attorneyRates: Record<string, number> = {
'paralegal': 95,
'associate': 275,
'senior-associate': 375,
'partner': 500
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'NDA / Confidentiality Agreement Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// NDA Type Section
const typeSection = form.addSubform('ndaType', { title: '๐Ÿ”’ Agreement Type' });
 
typeSection.addRow(row => {
row.addDropdown('type', {
label: 'NDA Type',
options: [
{ id: 'standard-unilateral', name: 'Standard Unilateral NDA' },
{ id: 'standard-mutual', name: 'Standard Mutual NDA' },
{ id: 'employee', name: 'Employee Confidentiality Agreement' },
{ id: 'contractor', name: 'Contractor / Vendor NDA' },
{ id: 'investor', name: 'Investor / Due Diligence NDA' },
{ id: 'merger-acquisition', name: 'M&A / Transaction NDA' },
{ id: 'technology', name: 'Technology / IP NDA' },
{ id: 'healthcare', name: 'Healthcare / HIPAA NDA' },
{ id: 'financial', name: 'Financial Services NDA' },
{ id: 'custom', name: 'Custom NDA' }
],
defaultValue: 'standard-mutual',
isRequired: true
}, '1fr');
row.addDropdown('direction', {
label: 'Information Flow',
options: [
{ id: 'unilateral', name: 'One-way (Discloser โ†’ Recipient)' },
{ id: 'mutual', name: 'Two-way (Mutual Exchange)' }
],
defaultValue: 'mutual',
isRequired: true
}, '1fr');
});
 
typeSection.addRow(row => {
row.addDropdown('purpose', {
label: 'Purpose of NDA',
options: [
{ id: 'business-discussion', name: 'Business Discussions' },
{ id: 'employment', name: 'Employment / HR' },
{ id: 'partnership', name: 'Partnership Evaluation' },
{ id: 'investment', name: 'Investment / Funding' },
{ id: 'vendor', name: 'Vendor / Supplier Relationship' },
{ id: 'technology', name: 'Technology Licensing' },
{ id: 'merger', name: 'Merger / Acquisition' },
{ id: 'other', name: 'Other' }
],
defaultValue: 'business-discussion',
isRequired: true
}, '1fr');
row.addInteger('partyCount', {
label: 'Number of Parties',
min: 2,
max: 10,
defaultValue: 2
}, '1fr');
});
 
// Scope Section
const scopeSection = form.addSubform('scope', { title: '๐Ÿ“‹ Scope & Provisions' });
 
scopeSection.addRow(row => {
row.addDropdown('duration', {
label: 'Confidentiality Period',
options: [
{ id: '1-year', name: '1 Year' },
{ id: '2-years', name: '2 Years' },
{ id: '3-years', name: '3 Years' },
{ id: '5-years', name: '5 Years' },
{ id: 'indefinite', name: 'Indefinite / Perpetual' }
],
defaultValue: '2-years',
isRequired: true
}, '1fr');
row.addDropdown('jurisdictions', {
label: 'Governing Jurisdiction',
options: [
{ id: 'single-state', name: 'Single State' },
{ id: 'multi-state', name: 'Multi-State (+$150)' },
{ id: 'international', name: 'International (+$350)' }
],
defaultValue: 'single-state',
isRequired: true
}, '1fr');
});
 
scopeSection.addRow(row => {
row.addCheckbox('nonCompete', {
label: 'Include Non-Compete Clause (+$200)',
defaultValue: false
}, '1fr');
row.addCheckbox('nonSolicitation', {
label: 'Include Non-Solicitation (+$150)',
defaultValue: false
}, '1fr');
});
 
scopeSection.addRow(row => {
row.addCheckbox('ipAssignment', {
label: 'IP Assignment Provisions (+$250)',
defaultValue: false
}, '1fr');
row.addCheckbox('dataProtection', {
label: 'Data Protection / GDPR Clauses (+$200)',
defaultValue: false
}, '1fr');
});
 
scopeSection.addRow(row => {
row.addCheckbox('injunctiveRelief', {
label: 'Injunctive Relief Provisions (+$100)',
defaultValue: true
}, '1fr');
row.addCheckbox('returnOfMaterials', {
label: 'Return of Materials Clause',
defaultValue: true
}, '1fr');
});
 
// Service Options Section
const serviceSection = form.addSubform('service', { title: '๐Ÿ‘” Service Options' });
 
serviceSection.addRow(row => {
row.addDropdown('level', {
label: 'Attorney Level',
options: [
{ id: 'paralegal', name: 'Paralegal Review ($95/hr)' },
{ id: 'associate', name: 'Associate Attorney ($275/hr)' },
{ id: 'senior-associate', name: 'Senior Associate ($375/hr)' },
{ id: 'partner', name: 'Partner ($500/hr)' }
],
defaultValue: 'associate',
isRequired: true
}, '1fr');
row.addDropdown('urgency', {
label: 'Turnaround Time',
options: [
{ id: 'standard', name: 'Standard (5-7 days)' },
{ id: 'expedited', name: 'Expedited (2-3 days) (+30%)' },
{ id: 'rush', name: 'Rush (24-48 hrs) (+60%)' },
{ id: 'same-day', name: 'Same Day (+100%)' }
],
defaultValue: 'standard',
isRequired: true
}, '1fr');
});
 
serviceSection.addRow(row => {
row.addDropdown('serviceType', {
label: 'Service Type',
options: [
{ id: 'template', name: 'Use Standard Template' },
{ id: 'custom', name: 'Custom Drafting (+50%)' },
{ id: 'review-only', name: 'Review Existing NDA (-25%)' }
],
defaultValue: 'template',
isRequired: true
}, '1fr');
row.addInteger('quantity', {
label: 'Number of NDAs Needed',
min: 1,
max: 50,
defaultValue: 1
}, '1fr');
});
 
// Additional Services
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('negotiationSupport', {
label: 'Negotiation Support (+$350)',
defaultValue: false
}, '1fr');
row.addCheckbox('executionSupport', {
label: 'Execution Coordination (+$150)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('templatePackage', {
label: 'Template Package (3 variants) (+$500)',
defaultValue: false
}, '1fr');
row.addCheckbox('trainingSession', {
label: 'Training Session (30 min) (+$200)',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Cost Estimate', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('baseFee', {
label: 'Base NDA Fee',
computedValue: () => {
const type = typeSection.dropdown('type')?.value() || 'standard-mutual';
const serviceType = serviceSection.dropdown('serviceType')?.value() || 'template';
const direction = typeSection.dropdown('direction')?.value() || 'mutual';
 
let fee = ndaTypes[type]?.baseFee ?? 0;
 
// Mutual vs unilateral adjustment
if (direction === 'mutual' && !type.includes('mutual')) {
fee *= 1.2;
}
 
// Service type adjustment
if (serviceType === 'custom') fee *= 1.5;
if (serviceType === 'review-only') fee *= 0.75;
 
return Math.round(fee);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('provisionsFee', {
label: 'Additional Provisions',
computedValue: () => {
let total = 0;
 
if (scopeSection.checkbox('nonCompete')?.value()) total += 200;
if (scopeSection.checkbox('nonSolicitation')?.value()) total += 150;
if (scopeSection.checkbox('ipAssignment')?.value()) total += 250;
if (scopeSection.checkbox('dataProtection')?.value()) total += 200;
if (scopeSection.checkbox('injunctiveRelief')?.value()) total += 100;
 
const jurisdictions = scopeSection.dropdown('jurisdictions')?.value() || 'single-state';
if (jurisdictions === 'multi-state') total += 150;
if (jurisdictions === 'international') total += 350;
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('urgencyFee', {
label: 'Urgency Premium',
computedValue: () => {
const type = typeSection.dropdown('type')?.value() || 'standard-mutual';
const urgency = serviceSection.dropdown('urgency')?.value() || 'standard';
const serviceType = serviceSection.dropdown('serviceType')?.value() || 'template';
 
let baseFee = ndaTypes[type]?.baseFee ?? 0;
if (serviceType === 'custom') baseFee *= 1.5;
if (serviceType === 'review-only') baseFee *= 0.75;
 
const urgencyMultipliers: Record<string, number> = {
'standard': 0, 'expedited': 0.3, 'rush': 0.6, 'same-day': 1.0
};
 
return Math.round(baseFee * (urgencyMultipliers[urgency] || 0));
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('addonsFee', {
label: 'Additional Services',
computedValue: () => {
let total = 0;
 
if (addonsSection.checkbox('negotiationSupport')?.value()) total += 350;
if (addonsSection.checkbox('executionSupport')?.value()) total += 150;
if (addonsSection.checkbox('templatePackage')?.value()) total += 500;
if (addonsSection.checkbox('trainingSession')?.value()) total += 200;
 
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Total Estimate',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('perNdaCost', {
label: 'Cost Per NDA',
computedValue: () => {
const type = typeSection.dropdown('type')?.value() || 'standard-mutual';
const serviceType = serviceSection.dropdown('serviceType')?.value() || 'template';
const direction = typeSection.dropdown('direction')?.value() || 'mutual';
const urgency = serviceSection.dropdown('urgency')?.value() || 'standard';
const partyCount = typeSection.integer('partyCount')?.value() || 2;
 
let fee = ndaTypes[type]?.baseFee ?? 0;
 
if (direction === 'mutual' && !type.includes('mutual')) fee *= 1.2;
if (serviceType === 'custom') fee *= 1.5;
if (serviceType === 'review-only') fee *= 0.75;
 
// Additional parties
if (partyCount > 2) fee += (partyCount - 2) * 100;
 
// Provisions
if (scopeSection.checkbox('nonCompete')?.value()) fee += 200;
if (scopeSection.checkbox('nonSolicitation')?.value()) fee += 150;
if (scopeSection.checkbox('ipAssignment')?.value()) fee += 250;
if (scopeSection.checkbox('dataProtection')?.value()) fee += 200;
if (scopeSection.checkbox('injunctiveRelief')?.value()) fee += 100;
 
const jurisdictions = scopeSection.dropdown('jurisdictions')?.value() || 'single-state';
if (jurisdictions === 'multi-state') fee += 150;
if (jurisdictions === 'international') fee += 350;
 
// Urgency
const urgencyMultipliers: Record<string, number> = {
'standard': 1.0, 'expedited': 1.3, 'rush': 1.6, 'same-day': 2.0
};
fee *= urgencyMultipliers[urgency] || 1.0;
 
return Math.round(fee);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('totalFee', {
label: 'Total Estimate',
computedValue: () => {
const type = typeSection.dropdown('type')?.value() || 'standard-mutual';
const serviceType = serviceSection.dropdown('serviceType')?.value() || 'template';
const direction = typeSection.dropdown('direction')?.value() || 'mutual';
const urgency = serviceSection.dropdown('urgency')?.value() || 'standard';
const quantity = serviceSection.integer('quantity')?.value() || 1;
const partyCount = typeSection.integer('partyCount')?.value() || 2;
 
let fee = ndaTypes[type]?.baseFee ?? 0;
 
if (direction === 'mutual' && !type.includes('mutual')) fee *= 1.2;
if (serviceType === 'custom') fee *= 1.5;
if (serviceType === 'review-only') fee *= 0.75;
 
if (partyCount > 2) fee += (partyCount - 2) * 100;
 
if (scopeSection.checkbox('nonCompete')?.value()) fee += 200;
if (scopeSection.checkbox('nonSolicitation')?.value()) fee += 150;
if (scopeSection.checkbox('ipAssignment')?.value()) fee += 250;
if (scopeSection.checkbox('dataProtection')?.value()) fee += 200;
if (scopeSection.checkbox('injunctiveRelief')?.value()) fee += 100;
 
const jurisdictions = scopeSection.dropdown('jurisdictions')?.value() || 'single-state';
if (jurisdictions === 'multi-state') fee += 150;
if (jurisdictions === 'international') fee += 350;
 
const urgencyMultipliers: Record<string, number> = {
'standard': 1.0, 'expedited': 1.3, 'rush': 1.6, 'same-day': 2.0
};
fee *= urgencyMultipliers[urgency] || 1.0;
 
// Quantity discount
let totalFee = fee * quantity;
if (quantity >= 5) totalFee *= 0.9;
if (quantity >= 10) totalFee *= 0.85;
 
// Add-ons (one-time)
if (addonsSection.checkbox('negotiationSupport')?.value()) totalFee += 350;
if (addonsSection.checkbox('executionSupport')?.value()) totalFee += 150;
if (addonsSection.checkbox('templatePackage')?.value()) totalFee += 500;
if (addonsSection.checkbox('trainingSession')?.value()) totalFee += 200;
 
return Math.round(totalFee);
},
variant: 'large'
}, '1fr');
});
 
finalSection.addRow(row => {
row.addTextPanel('volumeDiscount', {
computedValue: () => {
const quantity = serviceSection.integer('quantity')?.value() || 1;
if (quantity >= 10) return '15% volume discount applied';
if (quantity >= 5) return '10% volume discount applied';
return 'Order 5+ for 10% discount, 10+ for 15% discount';
},
customStyles: { 'font-size': '0.9rem', 'color': '#059669', 'text-align': 'center' }
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'This is an estimate only. Final fees confirmed after reviewing your specific requirements. NDA complexity may affect final pricing.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Get NDA Quote'
});
}
 

Frequently Asked Questions

What's the difference between unilateral and mutual NDAs?

A unilateral NDA protects information disclosed by one party only. A mutual NDA protects confidential information shared by both parties. Mutual NDAs are slightly more complex and typically cost more.

Do I need additional provisions like non-compete?

It depends on your situation. Non-compete clauses restrict the receiving party from competing. Non-solicitation prevents poaching employees or customers. Your attorney can advise based on your specific needs.

How long should confidentiality obligations last?

Typical periods range from 2-5 years. Trade secrets may warrant indefinite protection. The appropriate duration depends on the type of information and industry standards.

Can you customize NDAs for specific industries?

Yes. The calculator includes options for technology, healthcare, financial services, and other industries. These specialized NDAs include industry-specific provisions and compliance requirements.