-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathweb\pricing.html
More file actions
311 lines (278 loc) · 9.6 KB
/
Copy pathweb\pricing.html
File metadata and controls
311 lines (278 loc) · 9.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TikTok Profile Archiver - Pricing</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
:root {
--primary-dark: #121212;
--secondary-dark: #1f1f1f;
--tiktok-red: #FE2C55;
--tiktok-red-hover: #e62548;
--text-white: #ffffff;
--text-gray: #8a8a8a;
--accent-green: #25D366;
--accent-blue: #1DA1F2;
}
body {
background: var(--primary-dark);
color: var(--text-white);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
.navbar {
background: var(--secondary-dark);
padding: 1rem 2rem;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.logo {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.5rem;
color: var(--tiktok-red);
font-weight: bold;
text-decoration: none;
}
.logo i {
font-size: 1.8rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.hero {
text-align: center;
padding: 4rem 0;
position: relative;
overflow: hidden;
}
.hero::before {
content: '♪';
position: absolute;
font-size: 15rem;
color: rgba(254, 44, 85, 0.05);
top: -2rem;
left: -2rem;
transform: rotate(-45deg);
}
.hero::after {
content: '♫';
position: absolute;
font-size: 12rem;
color: rgba(254, 44, 85, 0.05);
bottom: -2rem;
right: -2rem;
transform: rotate(45deg);
}
.hero h1 {
color: var(--tiktok-red);
font-size: 3rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p {
color: var(--text-gray);
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 4rem 0;
}
.pricing-card {
background: var(--secondary-dark);
border-radius: 16px;
padding: 2rem;
text-align: center;
position: relative;
overflow: hidden;
transition: transform 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.pricing-card:hover {
transform: translateY(-10px);
}
.pricing-card.popular {
border: 2px solid var(--tiktok-red);
}
.popular-badge {
background: var(--tiktok-red);
color: var(--text-white);
padding: 0.5rem 1.5rem;
position: absolute;
top: 1rem;
right: -2rem;
transform: rotate(45deg);
font-size: 0.8rem;
font-weight: bold;
}
.plan-name {
color: var(--text-white);
font-size: 1.8rem;
margin-bottom: 1rem;
}
.plan-price {
color: var(--tiktok-red);
font-size: 3rem;
font-weight: bold;
margin-bottom: 1rem;
}
.plan-billing {
color: var(--text-gray);
font-size: 0.9rem;
margin-bottom: 2rem;
}
.feature-list {
list-style: none;
padding: 0;
margin: 0 0 2rem 0;
text-align: left;
}
.feature-list li {
color: var(--text-gray);
margin-bottom: 1rem;
padding-left: 1.5rem;
position: relative;
}
.feature-list li::before {
content: '✓';
color: var(--tiktok-red);
position: absolute;
left: 0;
}
.btn {
background: var(--tiktok-red);
color: var(--text-white);
padding: 1rem 2.5rem;
border: none;
border-radius: 8px;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
width: 80%;
}
.btn:hover {
background: var(--tiktok-red-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(254, 44, 85, 0.3);
}
.faq-section {
margin-top: 4rem;
background: var(--secondary-dark);
border-radius: 16px;
padding: 2rem;
}
.faq-section h2 {
color: var(--tiktok-red);
text-align: center;
margin-bottom: 2rem;
}
.faq-item {
margin-bottom: 1.5rem;
}
.faq-item h3 {
color: var(--text-white);
margin-bottom: 0.5rem;
}
.faq-item p {
color: var(--text-gray);
margin: 0;
}
</style>
</head>
<body>
<nav class="navbar">
<a href="https://sites.google.com/view/tiktok-backup" class="logo">
<i class="fas fa-music"></i>
TikTok Profile Archiver
</a>
</nav>
<div class="container">
<div class="hero">
<h1>Simple, Transparent Pricing</h1>
<p>Choose the perfect plan for your TikTok archiving needs</p>
</div>
<div class="pricing-grid">
<div class="pricing-card">
<div class="plan-name">Basic</div>
<div class="plan-price">$29.99</div>
<div class="plan-billing">One-time payment</div>
<ul class="feature-list">
<li>Single profile backup</li>
<li>Basic metadata storage</li>
<li>Manual backup scheduling</li>
<li>Standard support</li>
<li>6 months of updates</li>
</ul>
<a href="https://shoppy.gg/@aquax.services" class="btn">Get Started</a>
</div>
<div class="pricing-card popular">
<div class="popular-badge">MOST POPULAR</div>
<div class="plan-name">Professional</div>
<div class="plan-price">$49.99</div>
<div class="plan-billing">One-time payment</div>
<ul class="feature-list">
<li>Multiple profile backups</li>
<li>Advanced metadata storage</li>
<li>Automated scheduling</li>
<li>Priority support</li>
<li>Lifetime updates</li>
<li>Bulk download capability</li>
<li>Analytics dashboard</li>
</ul>
<a href="https://shoppy.gg/@aquax.services" class="btn">Get Started</a>
</div>
<div class="pricing-card">
<div class="plan-name">Enterprise</div>
<div class="plan-price">$99.99</div>
<div class="plan-billing">One-time payment</div>
<ul class="feature-list">
<li>Unlimited profile backups</li>
<li>Complete metadata storage</li>
<li>Advanced automation</li>
<li>24/7 Priority support</li>
<li>Lifetime updates</li>
<li>Custom features</li>
<li>API access</li>
<li>White-label option</li>
</ul>
<a href="https://shoppy.gg/@aquax.services" class="btn">Get Started</a>
</div>
</div>
<div class="faq-section">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<h3>What payment methods do you accept?</h3>
<p>We accept major credit cards, PayPal, and cryptocurrency payments through our secure payment processor.</p>
</div>
<div class="faq-item">
<h3>Do I need to pay for updates?</h3>
<p>Updates are included based on your plan. Professional and Enterprise plans include lifetime updates.</p>
</div>
<div class="faq-item">
<h3>Can I upgrade my plan later?</h3>
<p>Yes, you can upgrade to a higher tier plan at any time. You'll only pay the difference in price.</p>
</div>
<div class="faq-item">
<h3>What happens if TikTok changes their platform?</h3>
<p>Our team actively monitors TikTok changes and provides timely updates to ensure continued functionality.</p>
</div>
</div>
</div>
</body>
</html>