enzostvs HF Staff commited on
Commit
2718db9
·
verified ·
1 Parent(s): 0a797e2

add the pricing page now

Browse files
Files changed (4) hide show
  1. components/footer.js +4 -6
  2. components/navbar.js +11 -14
  3. index.html +8 -7
  4. pricing.html +420 -0
components/footer.js CHANGED
@@ -150,18 +150,16 @@ class CustomFooter extends HTMLElement {
150
  </a>
151
  </div>
152
  </div>
153
-
154
  <div class="footer-col">
155
  <h4>Product</h4>
156
  <ul class="footer-links">
157
- <li><a href="#">Features</a></li>
158
- <li><a href="#">Integrations</a></li>
159
- <li><a href="#">Pricing</a></li>
160
  <li><a href="#">Changelog</a></li>
161
  </ul>
162
  </div>
163
-
164
- <div class="footer-col">
165
  <h4>Resources</h4>
166
  <ul class="footer-links">
167
  <li><a href="#">Documentation</a></li>
 
150
  </a>
151
  </div>
152
  </div>
 
153
  <div class="footer-col">
154
  <h4>Product</h4>
155
  <ul class="footer-links">
156
+ <li><a href="index.html#features">Features</a></li>
157
+ <li><a href="index.html#integrations">Integrations</a></li>
158
+ <li><a href="pricing.html">Pricing</a></li>
159
  <li><a href="#">Changelog</a></li>
160
  </ul>
161
  </div>
162
+ <div class="footer-col">
 
163
  <h4>Resources</h4>
164
  <ul class="footer-links">
165
  <li><a href="#">Documentation</a></li>
components/navbar.js CHANGED
@@ -144,15 +144,13 @@ class CustomNavbar extends HTMLElement {
144
  <i data-feather="box" class="text-indigo-500"></i>
145
  <span class="logo-text">VortexCode</span>
146
  </a>
147
-
148
  <div class="nav-links">
149
- <a href="#features" class="nav-link">Features</a>
150
- <a href="#integrations" class="nav-link">Integrations</a>
151
- <a href="#api-docs" class="nav-link">Developers</a>
152
- <a href="#pricing" class="nav-link">Pricing</a>
153
  </div>
154
-
155
- <div class="nav-actions">
156
  <a href="#" class="btn-login">Log in</a>
157
  <a href="#signup" class="btn-signup">Start Free Trial</a>
158
  </div>
@@ -161,16 +159,15 @@ class CustomNavbar extends HTMLElement {
161
  <i data-feather="menu"></i>
162
  </button>
163
  </div>
164
-
165
  <div class="mobile-menu" id="mobileMenu">
166
- <a href="#features">Features</a>
167
- <a href="#integrations">Integrations</a>
168
- <a href="#api-docs">Developers</a>
169
- <a href="#pricing">Pricing</a>
170
  <a href="#" class="btn-login">Log in</a>
171
- <a href="#signup" class="btn-signup" style="text-align:center;">Start Free Trial</a>
172
  </div>
173
- </div>
174
  </nav>
175
  `;
176
 
 
144
  <i data-feather="box" class="text-indigo-500"></i>
145
  <span class="logo-text">VortexCode</span>
146
  </a>
 
147
  <div class="nav-links">
148
+ <a href="index.html#features" class="nav-link">Features</a>
149
+ <a href="index.html#integrations" class="nav-link">Integrations</a>
150
+ <a href="index.html#api-docs" class="nav-link">Developers</a>
151
+ <a href="pricing.html" class="nav-link">Pricing</a>
152
  </div>
153
+ <div class="nav-actions">
 
154
  <a href="#" class="btn-login">Log in</a>
155
  <a href="#signup" class="btn-signup">Start Free Trial</a>
156
  </div>
 
159
  <i data-feather="menu"></i>
160
  </button>
161
  </div>
 
162
  <div class="mobile-menu" id="mobileMenu">
163
+ <a href="index.html#features">Features</a>
164
+ <a href="index.html#integrations">Integrations</a>
165
+ <a href="index.html#api-docs">Developers</a>
166
+ <a href="pricing.html">Pricing</a>
167
  <a href="#" class="btn-login">Log in</a>
168
+ <a href="index.html#signup" class="btn-signup" style="text-align:center;">Start Free Trial</a>
169
  </div>
170
+ </div>
171
  </nav>
172
  `;
173
 
index.html CHANGED
@@ -96,16 +96,17 @@
96
  </div>
97
  </div>
98
  </section>
99
-
100
  <!-- Features Comparison Table -->
101
  <section id="features" class="py-24 relative">
102
  <div class="container mx-auto px-6">
103
  <div class="text-center mb-16">
104
  <h2 class="text-3xl md:text-5xl font-bold mb-4">Choose Your Power</h2>
105
  <p class="text-gray-400">Compare plans and find the perfect fit for your team.</p>
 
 
 
106
  </div>
107
-
108
- <div class="overflow-x-auto rounded-xl border border-dark-700 bg-dark-800/50 backdrop-blur-sm">
109
  <table class="w-full text-left border-collapse">
110
  <thead>
111
  <tr class="border-b border-dark-700 bg-dark-800">
@@ -152,16 +153,16 @@
152
  <tr class="bg-dark-800/80">
153
  <td class="p-6"></td>
154
  <td class="p-6">
155
- <button class="w-full py-2 px-4 rounded border border-dark-600 text-white hover:border-indigo-500 transition-colors">Get Started</button>
156
  </td>
157
  <td class="p-6">
158
- <button class="w-full py-2 px-4 rounded bg-purple-600 text-white font-medium hover:bg-purple-700 transition-colors shadow-lg shadow-purple-500/20">Get Pro</button>
159
  </td>
160
  <td class="p-6">
161
- <button class="w-full py-2 px-4 rounded border border-dark-600 text-white hover:border-purple-500 transition-colors">Contact Sales</button>
162
  </td>
163
  </tr>
164
- </tbody>
165
  </table>
166
  </div>
167
  </div>
 
96
  </div>
97
  </div>
98
  </section>
 
99
  <!-- Features Comparison Table -->
100
  <section id="features" class="py-24 relative">
101
  <div class="container mx-auto px-6">
102
  <div class="text-center mb-16">
103
  <h2 class="text-3xl md:text-5xl font-bold mb-4">Choose Your Power</h2>
104
  <p class="text-gray-400">Compare plans and find the perfect fit for your team.</p>
105
+ <a href="pricing.html" class="inline-flex items-center text-indigo-400 font-medium hover:text-indigo-300 transition-colors mt-4">
106
+ View detailed pricing <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
107
+ </a>
108
  </div>
109
+ <div class="overflow-x-auto rounded-xl border border-dark-700 bg-dark-800/50 backdrop-blur-sm">
 
110
  <table class="w-full text-left border-collapse">
111
  <thead>
112
  <tr class="border-b border-dark-700 bg-dark-800">
 
153
  <tr class="bg-dark-800/80">
154
  <td class="p-6"></td>
155
  <td class="p-6">
156
+ <a href="pricing.html" class="block w-full py-2 px-4 rounded border border-dark-600 text-white hover:border-indigo-500 transition-colors text-center">Get Started</a>
157
  </td>
158
  <td class="p-6">
159
+ <a href="pricing.html" class="block w-full py-2 px-4 rounded bg-purple-600 text-white font-medium hover:bg-purple-700 transition-colors shadow-lg shadow-purple-500/20 text-center">Get Pro</a>
160
  </td>
161
  <td class="p-6">
162
+ <a href="pricing.html" class="block w-full py-2 px-4 rounded border border-dark-600 text-white hover:border-purple-500 transition-colors text-center">Contact Sales</a>
163
  </td>
164
  </tr>
165
+ </tbody>
166
  </table>
167
  </div>
168
  </div>
pricing.html ADDED
@@ -0,0 +1,420 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Pricing - VortexCode</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <link rel="stylesheet" href="style.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <script>
13
+ tailwind.config = {
14
+ theme: {
15
+ extend: {
16
+ colors: {
17
+ indigo: {
18
+ 400: '#818cf8',
19
+ 500: '#6366f1',
20
+ 600: '#4f46e5',
21
+ 900: '#312e81',
22
+ },
23
+ purple: {
24
+ 500: '#a855f7',
25
+ 600: '#9333ea',
26
+ },
27
+ dark: {
28
+ 900: '#0f172a',
29
+ 800: '#1e293b',
30
+ 700: '#334155',
31
+ }
32
+ }
33
+ }
34
+ }
35
+ }
36
+ </script>
37
+ </head>
38
+ <body class="bg-dark-900 text-gray-100 font-sans antialiased overflow-x-hidden">
39
+
40
+ <!-- Navbar Component -->
41
+ <custom-navbar></custom-navbar>
42
+
43
+ <!-- Hero Section -->
44
+ <section class="relative pt-32 pb-20 lg:pt-40 lg:pb-28 overflow-hidden">
45
+ <div class="absolute inset-0 z-0">
46
+ <div class="absolute inset-0 bg-gradient-to-br from-indigo-900/30 via-dark-900 to-purple-900/20"></div>
47
+ <div class="absolute top-20 right-0 w-96 h-96 bg-indigo-500/10 rounded-full blur-3xl"></div>
48
+ <div class="absolute bottom-0 left-0 w-96 h-96 bg-purple-500/10 rounded-full blur-3xl"></div>
49
+ </div>
50
+
51
+ <div class="container mx-auto px-6 relative z-10 text-center">
52
+ <div class="inline-block px-4 py-1.5 mb-6 border border-indigo-500/30 rounded-full bg-indigo-500/10 backdrop-blur-sm">
53
+ <span class="text-indigo-300 text-sm font-medium tracking-wide">💎 Simple, transparent pricing</span>
54
+ </div>
55
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
56
+ Choose the plan that <br>
57
+ <span class="text-transparent bg-clip-text bg-gradient-to-r from-indigo-400 to-purple-500">fits your needs</span>
58
+ </h1>
59
+ <p class="text-lg md:text-xl text-gray-400 mb-10 max-w-2xl mx-auto">
60
+ Start free and scale as you grow. No hidden fees, no surprises. Cancel anytime.
61
+ </p>
62
+ <div class="flex items-center justify-center gap-4">
63
+ <span class="text-gray-400">Monthly</span>
64
+ <button id="billingToggle" class="w-14 h-8 bg-indigo-600 rounded-full relative transition-colors">
65
+ <span class="absolute top-1 right-1 w-6 h-6 bg-white rounded-full transition-transform"></span>
66
+ </button>
67
+ <span class="text-gray-400">Yearly <span class="text-green-400 text-sm font-medium">(Save 20%)</span></span>
68
+ </div>
69
+ </div>
70
+ </section>
71
+
72
+ <!-- Pricing Cards -->
73
+ <section class="py-16 relative">
74
+ <div class="container mx-auto px-6">
75
+ <div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
76
+ <!-- Starter Plan -->
77
+ <div class="bg-dark-800 border border-dark-700 rounded-2xl p-8 hover:border-indigo-500/50 transition-all duration-300">
78
+ <div class="mb-8">
79
+ <h3 class="text-xl font-bold text-white mb-2">Starter</h3>
80
+ <p class="text-gray-400 text-sm">Perfect for individuals and side projects</p>
81
+ </div>
82
+ <div class="mb-8">
83
+ <span class="text-4xl font-bold text-white" data-monthly="$0" data-yearly="$0">$0</span>
84
+ <span class="text-gray-400">/month</span>
85
+ </div>
86
+ <a href="#signup" class="block w-full py-3 px-6 border border-dark-600 text-white rounded-lg font-medium hover:bg-dark-700 transition-colors text-center mb-8">
87
+ Get Started Free
88
+ </a>
89
+ <ul class="space-y-4">
90
+ <li class="flex items-start gap-3">
91
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
92
+ <span class="text-gray-300">Up to 3 projects</span>
93
+ </li>
94
+ <li class="flex items-start gap-3">
95
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
96
+ <span class="text-gray-300">1 team member</span>
97
+ </li>
98
+ <li class="flex items-start gap-3">
99
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
100
+ <span class="text-gray-300">Basic analytics</span>
101
+ </li>
102
+ <li class="flex items-start gap-3">
103
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
104
+ <span class="text-gray-300">Community support</span>
105
+ </li>
106
+ <li class="flex items-start gap-3">
107
+ <i data-feather="x" class="w-5 h-5 text-red-400 mt-0.5 flex-shrink-0"></i>
108
+ <span class="text-gray-500">API access</span>
109
+ </li>
110
+ <li class="flex items-start gap-3">
111
+ <i data-feather="x" class="w-5 h-5 text-red-400 mt-0.5 flex-shrink-0"></i>
112
+ <span class="text-gray-500">Custom integrations</span>
113
+ </li>
114
+ </ul>
115
+ </div>
116
+
117
+ <!-- Pro Plan -->
118
+ <div class="bg-gradient-to-b from-indigo-900/20 to-dark-800 border-2 border-indigo-500/50 rounded-2xl p-8 relative transform md:-translate-y-4 transition-all duration-300">
119
+ <div class="absolute -top-4 left-1/2 -translate-x-1/2">
120
+ <span class="bg-gradient-to-r from-indigo-600 to-purple-600 text-white text-sm font-semibold px-4 py-1 rounded-full">Most Popular</span>
121
+ </div>
122
+ <div class="mb-8">
123
+ <h3 class="text-xl font-bold text-white mb-2">Pro</h3>
124
+ <p class="text-gray-400 text-sm">For growing teams and startups</p>
125
+ </div>
126
+ <div class="mb-8">
127
+ <span class="text-4xl font-bold text-white" data-monthly="$29" data-yearly="$23">$29</span>
128
+ <span class="text-gray-400">/month</span>
129
+ </div>
130
+ <a href="#signup" class="block w-full py-3 px-6 bg-gradient-to-r from-indigo-600 to-purple-600 text-white rounded-lg font-medium hover:shadow-lg hover:shadow-indigo-500/30 transition-all text-center mb-8">
131
+ Start Pro Trial
132
+ </a>
133
+ <ul class="space-y-4">
134
+ <li class="flex items-start gap-3">
135
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
136
+ <span class="text-gray-300">Unlimited projects</span>
137
+ </li>
138
+ <li class="flex items-start gap-3">
139
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
140
+ <span class="text-gray-300">Up to 10 team members</span>
141
+ </li>
142
+ <li class="flex items-start gap-3">
143
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
144
+ <span class="text-gray-300">Advanced analytics</span>
145
+ </li>
146
+ <li class="flex items-start gap-3">
147
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
148
+ <span class="text-gray-300">Priority email support</span>
149
+ </li>
150
+ <li class="flex items-start gap-3">
151
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
152
+ <span class="text-gray-300">Full API access</span>
153
+ </li>
154
+ <li class="flex items-start gap-3">
155
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
156
+ <span class="text-gray-300">100+ integrations</span>
157
+ </li>
158
+ </ul>
159
+ </div>
160
+
161
+ <!-- Enterprise Plan -->
162
+ <div class="bg-dark-800 border border-dark-700 rounded-2xl p-8 hover:border-purple-500/50 transition-all duration-300">
163
+ <div class="mb-8">
164
+ <h3 class="text-xl font-bold text-white mb-2">Enterprise</h3>
165
+ <p class="text-gray-400 text-sm">For large organizations and scale-ups</p>
166
+ </div>
167
+ <div class="mb-8">
168
+ <span class="text-4xl font-bold text-white" data-monthly="$99" data-yearly="$79">$99</span>
169
+ <span class="text-gray-400">/month</span>
170
+ </div>
171
+ <a href="#signup" class="block w-full py-3 px-6 border border-dark-600 text-white rounded-lg font-medium hover:bg-dark-700 transition-colors text-center mb-8">
172
+ Contact Sales
173
+ </a>
174
+ <ul class="space-y-4">
175
+ <li class="flex items-start gap-3">
176
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
177
+ <span class="text-gray-300">Unlimited everything</span>
178
+ </li>
179
+ <li class="flex items-start gap-3">
180
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
181
+ <span class="text-gray-300">Unlimited team members</span>
182
+ </li>
183
+ <li class="flex items-start gap-3">
184
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
185
+ <span class="text-gray-300">Custom analytics & reports</span>
186
+ </li>
187
+ <li class="flex items-start gap-3">
188
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
189
+ <span class="text-gray-300">24/7 dedicated support</span>
190
+ </li>
191
+ <li class="flex items-start gap-3">
192
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
193
+ <span class="text-gray-300">Custom integrations</span>
194
+ </li>
195
+ <li class="flex items-start gap-3">
196
+ <i data-feather="check" class="w-5 h-5 text-green-400 mt-0.5 flex-shrink-0"></i>
197
+ <span class="text-gray-300">SSO & advanced security</span>
198
+ </li>
199
+ </ul>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </section>
204
+
205
+ <!-- Feature Comparison Table -->
206
+ <section class="py-24 bg-dark-800/30">
207
+ <div class="container mx-auto px-6">
208
+ <div class="text-center mb-16">
209
+ <h2 class="text-3xl md:text-5xl font-bold mb-4">Compare all features</h2>
210
+ <p class="text-gray-400">Everything you need to make the right decision</p>
211
+ </div>
212
+
213
+ <div class="overflow-x-auto rounded-xl border border-dark-700 bg-dark-800/50 backdrop-blur-sm">
214
+ <table class="w-full text-left border-collapse">
215
+ <thead>
216
+ <tr class="border-b border-dark-700 bg-dark-800">
217
+ <th class="p-6 text-lg font-semibold">Features</th>
218
+ <th class="p-6 text-lg font-semibold text-indigo-400">Starter</th>
219
+ <th class="p-6 text-lg font-semibold text-purple-400 relative">
220
+ Pro
221
+ <span class="absolute top-2 right-2 text-xs bg-purple-600 text-white px-2 py-0.5 rounded-full">Popular</span>
222
+ </th>
223
+ <th class="p-6 text-lg font-semibold">Enterprise</th>
224
+ </tr>
225
+ </thead>
226
+ <tbody class="divide-y divide-dark-700">
227
+ <tr class="hover:bg-dark-700/30 transition-colors">
228
+ <td class="p-6 text-gray-300 font-medium">Projects</td>
229
+ <td class="p-6 text-gray-400">Up to 3</td>
230
+ <td class="p-6 text-white">Unlimited</td>
231
+ <td class="p-6 text-white">Unlimited</td>
232
+ </tr>
233
+ <tr class="hover:bg-dark-700/30 transition-colors">
234
+ <td class="p-6 text-gray-300 font-medium">Team Members</td>
235
+ <td class="p-6 text-gray-400">1</td>
236
+ <td class="p-6 text-white">Up to 10</td>
237
+ <td class="p-6 text-white">Unlimited</td>
238
+ </tr>
239
+ <tr class="hover:bg-dark-700/30 transition-colors">
240
+ <td class="p-6 text-gray-300 font-medium">Storage</td>
241
+ <td class="p-6 text-gray-400">1 GB</td>
242
+ <td class="p-6 text-white">50 GB</td>
243
+ <td class="p-6 text-white">Unlimited</td>
244
+ </tr>
245
+ <tr class="hover:bg-dark-700/30 transition-colors">
246
+ <td class="p-6 text-gray-300 font-medium">API Access</td>
247
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
248
+ <td class="p-6 text-center"><i data-feather="check" class="w-5 h-5 text-green-400 mx-auto"></i></td>
249
+ <td class="p-6 text-center"><i data-feather="check" class="w-5 h-5 text-green-400 mx-auto"></i></td>
250
+ </tr>
251
+ <tr class="hover:bg-dark-700/30 transition-colors">
252
+ <td class="p-6 text-gray-300 font-medium">Advanced Analytics</td>
253
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
254
+ <td class="p-6 text-center"><i data-feather="check" class="w-5 h-5 text-green-400 mx-auto"></i></td>
255
+ <td class="p-6 text-center"><i data-feather="check" class="w-5 h-5 text-green-400 mx-auto"></i></td>
256
+ </tr>
257
+ <tr class="hover:bg-dark-700/30 transition-colors">
258
+ <td class="p-6 text-gray-300 font-medium">Custom Integrations</td>
259
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
260
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
261
+ <td class="p-6 text-center"><i data-feather="check" class="w-5 h-5 text-green-400 mx-auto"></i></td>
262
+ </tr>
263
+ <tr class="hover:bg-dark-700/30 transition-colors">
264
+ <td class="p-6 text-gray-300 font-medium">24/7 Priority Support</td>
265
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
266
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
267
+ <td class="p-6 text-center"><i data-feather="check" class="w-5 h-5 text-green-400 mx-auto"></i></td>
268
+ </tr>
269
+ <tr class="hover:bg-dark-700/30 transition-colors">
270
+ <td class="p-6 text-gray-300 font-medium">SSO / SAML</td>
271
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
272
+ <td class="p-6 text-center"><i data-feather="x" class="w-5 h-5 text-red-400 mx-auto"></i></td>
273
+ <td class="p-6 text-center"><i data-feather="check" class="w-5 h-5 text-green-400 mx-auto"></i></td>
274
+ </tr>
275
+ <tr class="bg-dark-800/80">
276
+ <td class="p-6"></td>
277
+ <td class="p-6">
278
+ <a href="#signup" class="block w-full py-2 px-4 rounded border border-dark-600 text-white hover:border-indigo-500 transition-colors text-center">Get Started</a>
279
+ </td>
280
+ <td class="p-6">
281
+ <a href="#signup" class="block w-full py-2 px-4 rounded bg-purple-600 text-white font-medium hover:bg-purple-700 transition-colors shadow-lg shadow-purple-500/20 text-center">Get Pro</a>
282
+ </td>
283
+ <td class="p-6">
284
+ <a href="#signup" class="block w-full py-2 px-4 rounded border border-dark-600 text-white hover:border-purple-500 transition-colors text-center">Contact Sales</a>
285
+ </td>
286
+ </tr>
287
+ </tbody>
288
+ </table>
289
+ </div>
290
+ </div>
291
+ </section>
292
+
293
+ <!-- FAQ Section -->
294
+ <section class="py-24">
295
+ <div class="container mx-auto px-6">
296
+ <div class="text-center mb-16">
297
+ <h2 class="text-3xl md:text-5xl font-bold mb-4">Frequently Asked Questions</h2>
298
+ <p class="text-gray-400">Got questions? We've got answers.</p>
299
+ </div>
300
+
301
+ <div class="max-w-3xl mx-auto space-y-4">
302
+ <!-- FAQ Item 1 -->
303
+ <details class="bg-dark-800 border border-dark-700 rounded-xl group">
304
+ <summary class="p-6 cursor-pointer flex justify-between items-center font-semibold text-white hover:text-indigo-400 transition-colors">
305
+ Can I change plans later?
306
+ <i data-feather="chevron-down" class="w-5 h-5 transition-transform group-open:rotate-180"></i>
307
+ </summary>
308
+ <div class="px-6 pb-6 text-gray-400">
309
+ Absolutely! You can upgrade or downgrade your plan at any time. When you upgrade, you'll be charged prorated amounts for the remainder of your billing cycle.
310
+ </div>
311
+ </details>
312
+
313
+ <!-- FAQ Item 2 -->
314
+ <details class="bg-dark-800 border border-dark-700 rounded-xl group">
315
+ <summary class="p-6 cursor-pointer flex justify-between items-center font-semibold text-white hover:text-indigo-400 transition-colors">
316
+ What payment methods do you accept?
317
+ <i data-feather="chevron-down" class="w-5 h-5 transition-transform group-open:rotate-180"></i>
318
+ </summary>
319
+ <div class="px-6 pb-6 text-gray-400">
320
+ We accept all major credit cards (Visa, MasterCard, American Express), PayPal, and bank transfers for Enterprise plans.
321
+ </div>
322
+ </details>
323
+
324
+ <!-- FAQ Item 3 -->
325
+ <details class="bg-dark-800 border border-dark-700 rounded-xl group">
326
+ <summary class="p-6 cursor-pointer flex justify-between items-center font-semibold text-white hover:text-indigo-400 transition-colors">
327
+ Is there a free trial?
328
+ <i data-feather="chevron-down" class="w-5 h-5 transition-transform group-open:rotate-180"></i>
329
+ </summary>
330
+ <div class="px-6 pb-6 text-gray-400">
331
+ Yes! All paid plans come with a 14-day free trial. No credit card required to start. You'll have full access to all features during the trial period.
332
+ </div>
333
+ </details>
334
+
335
+ <!-- FAQ Item 4 -->
336
+ <details class="bg-dark-800 border border-dark-700 rounded-xl group">
337
+ <summary class="p-6 cursor-pointer flex justify-between items-center font-semibold text-white hover:text-indigo-400 transition-colors">
338
+ Do you offer refunds?
339
+ <i data-feather="chevron-down" class="w-5 h-5 transition-transform group-open:rotate-180"></i>
340
+ </summary>
341
+ <div class="px-6 pb-6 text-gray-400">
342
+ We offer a 30-day money-back guarantee for all paid plans. If you're not satisfied, contact our support team within 30 days for a full refund.
343
+ </div>
344
+ </details>
345
+
346
+ <!-- FAQ Item 5 -->
347
+ <details class="bg-dark-800 border border-dark-700 rounded-xl group">
348
+ <summary class="p-6 cursor-pointer flex justify-between items-center font-semibold text-white hover:text-indigo-400 transition-colors">
349
+ Can I cancel my subscription anytime?
350
+ <i data-feather="chevron-down" class="w-5 h-5 transition-transform group-open:rotate-180"></i>
351
+ </summary>
352
+ <div class="px-6 pb-6 text-gray-400">
353
+ Yes, you can cancel your subscription at any time. Your access will continue until the end of your current billing period. No questions asked.
354
+ </div>
355
+ </details>
356
+ </div>
357
+ </div>
358
+ </section>
359
+
360
+ <!-- CTA Section -->
361
+ <section id="signup" class="py-24 relative overflow-hidden">
362
+ <div class="absolute inset-0 z-0">
363
+ <div class="absolute inset-0 bg-gradient-to-t from-indigo-900/20 to-transparent pointer-events-none"></div>
364
+ </div>
365
+ <div class="container mx-auto px-6 relative z-10">
366
+ <div class="bg-dark-800 border border-indigo-500/30 rounded-3xl p-8 md:p-16 text-center max-w-4xl mx-auto shadow-2xl shadow-indigo-500/10">
367
+ <h2 class="text-3xl md:text-5xl font-bold mb-6">Ready to get started?</h2>
368
+ <p class="text-gray-400 text-lg mb-10 max-w-2xl mx-auto">Join thousands of developers building the future. Start your free trial today.</p>
369
+
370
+ <form class="max-w-md mx-auto flex flex-col sm:flex-row gap-4">
371
+ <input type="email" placeholder="Enter your work email" class="flex-1 bg-dark-900 border border-dark-700 text-white px-6 py-4 rounded-lg focus:outline-none focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 transition-all">
372
+ <button type="button" class="px-8 py-4 bg-gradient-to-r from-indigo-600 to-purple-600 text-white font-bold rounded-lg hover:shadow-lg hover:shadow-indigo-500/30 transition-all transform hover:-translate-y-0.5">
373
+ Get Started
374
+ </button>
375
+ </form>
376
+ <p class="text-xs text-gray-500 mt-4">By signing up, you agree to our Terms of Service and Privacy Policy.</p>
377
+ </div>
378
+ </div>
379
+ </section>
380
+
381
+ <!-- Footer Component -->
382
+ <custom-footer></custom-footer>
383
+
384
+ <!-- Component Scripts -->
385
+ <script src="components/navbar.js"></script>
386
+ <script src="components/footer.js"></script>
387
+
388
+ <!-- Global Script -->
389
+ <script src="script.js"></script>
390
+ <script>
391
+ feather.replace();
392
+
393
+ // Billing Toggle Logic
394
+ const billingToggle = document.getElementById('billingToggle');
395
+ const priceElements = document.querySelectorAll('[data-monthly]');
396
+ let isYearly = false;
397
+
398
+ billingToggle.addEventListener('click', () => {
399
+ isYearly = !isYearly;
400
+ const toggleBtn = billingToggle.querySelector('span');
401
+
402
+ if (isYearly) {
403
+ toggleBtn.style.transform = 'translateX(-24px)';
404
+ billingToggle.classList.remove('bg-indigo-600');
405
+ billingToggle.classList.add('bg-purple-600');
406
+ priceElements.forEach(el => {
407
+ el.textContent = el.dataset.yearly;
408
+ });
409
+ } else {
410
+ toggleBtn.style.transform = 'translateX(0)';
411
+ billingToggle.classList.remove('bg-purple-600');
412
+ billingToggle.classList.add('bg-indigo-600');
413
+ priceElements.forEach(el => {
414
+ el.textContent = el.dataset.monthly;
415
+ });
416
+ }
417
+ });
418
+ </script>
419
+ </body>
420
+ </html>