Skip to content

Commit e47f758

Browse files
author
Valido
committed
add pricing
1 parent 3f79b4f commit e47f758

File tree

1 file changed

+204
-0
lines changed

1 file changed

+204
-0
lines changed

index.html

Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,141 @@
316316
object-fit: contain;
317317
}
318318

319+
/* Pricing Section */
320+
.pricing-section {
321+
padding: 5rem 2rem;
322+
background: #f9fafb;
323+
text-align: center;
324+
}
325+
326+
.pricing-container {
327+
max-width: 1000px;
328+
margin: 0 auto;
329+
}
330+
331+
.pricing-section h2 {
332+
font-size: 2.5rem;
333+
font-weight: 700;
334+
margin-bottom: 1rem;
335+
color: var(--text-dark);
336+
}
337+
338+
.pricing-subtitle {
339+
font-size: 1.125rem;
340+
color: var(--text-light);
341+
margin-bottom: 3rem;
342+
}
343+
344+
.pricing-cards {
345+
display: grid;
346+
grid-template-columns: repeat(2, 1fr);
347+
gap: 2rem;
348+
max-width: 800px;
349+
margin: 0 auto;
350+
}
351+
352+
.pricing-card {
353+
background: white;
354+
border: 2px solid var(--border);
355+
border-radius: 12px;
356+
padding: 2.5rem 2rem;
357+
transition: all 0.3s;
358+
position: relative;
359+
}
360+
361+
.pricing-card:hover {
362+
border-color: var(--primary);
363+
transform: translateY(-5px);
364+
box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
365+
}
366+
367+
.pricing-card.popular {
368+
border-color: var(--primary);
369+
box-shadow: 0 5px 20px rgba(0, 102, 255, 0.15);
370+
}
371+
372+
.popular-badge {
373+
position: absolute;
374+
top: -12px;
375+
right: 20px;
376+
background: var(--primary);
377+
color: white;
378+
padding: 0.4rem 1rem;
379+
border-radius: 20px;
380+
font-size: 0.85rem;
381+
font-weight: 600;
382+
}
383+
384+
.pricing-plan {
385+
font-size: 1.5rem;
386+
font-weight: 700;
387+
color: var(--text-dark);
388+
margin-bottom: 1rem;
389+
}
390+
391+
.pricing-amount {
392+
font-size: 3rem;
393+
font-weight: 800;
394+
color: var(--primary);
395+
margin-bottom: 0.5rem;
396+
}
397+
398+
.pricing-amount .currency {
399+
font-size: 1.5rem;
400+
vertical-align: super;
401+
}
402+
403+
.pricing-period {
404+
font-size: 1rem;
405+
color: var(--text-light);
406+
margin-bottom: 1.5rem;
407+
}
408+
409+
.pricing-features {
410+
list-style: none;
411+
margin: 2rem 0;
412+
text-align: left;
413+
}
414+
415+
.pricing-features li {
416+
padding: 0.75rem 0;
417+
color: var(--text-dark);
418+
display: flex;
419+
align-items: center;
420+
gap: 0.5rem;
421+
}
422+
423+
.pricing-features li::before {
424+
content: "✓";
425+
color: var(--success);
426+
font-weight: 700;
427+
font-size: 1.2rem;
428+
}
429+
430+
.pricing-btn {
431+
display: inline-block;
432+
width: 100%;
433+
padding: 1rem 2rem;
434+
background: var(--primary);
435+
color: white;
436+
text-decoration: none;
437+
border-radius: 8px;
438+
font-weight: 600;
439+
font-size: 1.125rem;
440+
transition: background 0.3s;
441+
margin-top: 1rem;
442+
}
443+
444+
.pricing-btn:hover {
445+
background: var(--primary-dark);
446+
}
447+
448+
.pricing-note {
449+
margin-top: 2rem;
450+
font-size: 0.95rem;
451+
color: var(--text-light);
452+
}
453+
319454
/* Features Section */
320455
.features {
321456
padding: 5rem 2rem;
@@ -540,6 +675,19 @@
540675
.features-grid {
541676
grid-template-columns: 1fr;
542677
}
678+
679+
.pricing-cards {
680+
grid-template-columns: 1fr;
681+
gap: 1.5rem;
682+
}
683+
684+
.pricing-section h2 {
685+
font-size: 2rem;
686+
}
687+
688+
.pricing-amount {
689+
font-size: 2.5rem;
690+
}
543691
}
544692
</style>
545693
</head>
@@ -669,6 +817,62 @@ <h3>Professional Reports</h3>
669817
</div>
670818
</section>
671819

820+
<!-- Pricing Section -->
821+
<section class="pricing-section">
822+
<div class="pricing-container">
823+
<h2>Simple, Transparent Pricing</h2>
824+
<p class="pricing-subtitle">Choose the plan that works best for you. Try free for 7 days.</p>
825+
826+
<div class="pricing-cards">
827+
<!-- Monthly Plan -->
828+
<div class="pricing-card">
829+
<div class="pricing-plan">Monthly</div>
830+
<div class="pricing-amount">
831+
<span class="currency">$</span>14.20
832+
</div>
833+
<div class="pricing-period">per month, billed monthly</div>
834+
835+
<ul class="pricing-features">
836+
<li>Unlimited PDF processing</li>
837+
<li>All validation rules</li>
838+
<li>Custom calculations</li>
839+
<li>Folder automation</li>
840+
<li>Cloud storage integration</li>
841+
<li>Export to CSV, Excel, PDF, JSON</li>
842+
<li>7-day free trial</li>
843+
</ul>
844+
845+
<a href="https://rai89.gumroad.com/l/bdspjn" class="pricing-btn" target="_blank" rel="noopener">Start Free Trial</a>
846+
</div>
847+
848+
<!-- Annual Plan -->
849+
<div class="pricing-card popular">
850+
<span class="popular-badge">Save 12%</span>
851+
<div class="pricing-plan">Annual</div>
852+
<div class="pricing-amount">
853+
<span class="currency">$</span>150
854+
</div>
855+
<div class="pricing-period">per year, billed annually</div>
856+
857+
<ul class="pricing-features">
858+
<li>Unlimited PDF processing</li>
859+
<li>All validation rules</li>
860+
<li>Custom calculations</li>
861+
<li>Folder automation</li>
862+
<li>Cloud storage integration</li>
863+
<li>Export to CSV, Excel, PDF, JSON</li>
864+
<li>7-day free trial</li>
865+
<li>Priority support</li>
866+
</ul>
867+
868+
<a href="https://rai89.gumroad.com/l/eyuiy" class="pricing-btn" target="_blank" rel="noopener">Start Free Trial</a>
869+
</div>
870+
</div>
871+
872+
<p class="pricing-note">All prices exclude local taxes. Cancel anytime, no questions asked.</p>
873+
</div>
874+
</section>
875+
672876
<!-- Privacy Banner -->
673877
<section class="privacy-banner">
674878
<h2>Your Data Stays Yours</h2>

0 commit comments

Comments
 (0)