-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.html
466 lines (466 loc) · 18.9 KB
/
packages.html
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Invest in Your Growth & Transformation | Christie Tufts</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#5100FF',
secondary: '#C6A74C'
},
borderRadius: {
'none': '0px',
'sm': '4px',
DEFAULT: '8px',
'md': '12px',
'lg': '16px',
'xl': '20px',
'2xl': '24px',
'3xl': '32px',
'full': '9999px',
'button': '8px'
}
}
}
}
</script>
<style>
:where([class^="ri-"])::before { content: "\f3c2"; }
.package-card {
transition: all 0.3s ease;
background: linear-gradient(to bottom right, #ffffff, #fcfcfc);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.package-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.calendar-day.available {
cursor: pointer;
background-color: #F3F4F6;
}
.calendar-day.available:hover {
background-color: #E5E7EB;
}
.calendar-day.selected {
background-color: #5100FF;
color: white;
}
</style>
</head>
<body class="font-['Inter'] text-gray-900 min-h-screen">
<nav class="fixed w-full bg-white/90 backdrop-blur-sm z-50 border-b border-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center space-x-8">
<a href="https://readdy.ai/home/0f3d8cef-be4b-41c9-b8a0-3c4522b857da/178efbee-0062-4026-bacd-b681f45cc8b8" data-readdy="true" class="flex items-center text-gray-700 hover:text-primary">
<i class="ri-arrow-left-line mr-2"></i>
Back to Home
</a>
<span class="font-['Playfair_Display'] text-2xl font-bold bg-gradient
bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">
Christie Tufts
</span>
</div>
</div>
</div>
</nav>
<main class="pt-24 pb-32">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h1 class="font-['Playfair_Display'] text-4xl font-bold mb-4">Invest in Your Growth & Transformation</h1>
<p class="text-gray-600 text-lg max-w-2xl mx-auto mb-8">Transformation requires clarity, guidance, and the right support. Whether you need intuitive insight, leadership coaching, or elite consulting, there's a package designed to meet your needs.</p>
<p class="text-xl font-medium text-gray-800 mb-6">Ready to elevate your leadership and intuition?</p>
<div class="flex items-center justify-center gap-4">
<button class="bg-primary text-white px-8 py-3 !rounded-button hover:bg-opacity-90 transition-all whitespace-nowrap cursor-pointer text-lg select-package" data-package="quick">
Book a Session
</button>
<button class="bg-white border-2 border-primary text-primary px-8 py-3 !rounded-button hover:bg-primary hover:text-white transition-all whitespace-nowrap cursor-pointer text-lg">
Schedule a Discovery Call
</button>
</div>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-8">
<div class="package-card bg-white rounded-lg shadow-lg p-8 border border-gray-100">
<div class="text-center mb-8">
<h3 class="font-['Playfair_Display'] text-2xl font-bold mb-2">🌅 Quick Clarity Sessions</h3>
<div class="space-y-4">
<div class="text-xl font-bold text-primary">15-Minute Reading: $45</div>
<div class="text-xl font-bold text-primary">30-Minute Reading: $90</div>
<div class="text-xl font-bold text-primary">1-Hour Reading: $180</div>
</div>
<p class="text-gray-600 mt-4">Package Offer: 3 x 30-Minute Sessions for $250 (Save $20)</p>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Flexible session durations to fit your schedule</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Focused guidance on specific questions</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Personalized action steps</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Email summary of key insights</span>
</li>
</ul>
<button class="w-full bg-white border-2 border-primary text-primary px-6 py-3 !rounded-button hover:bg-primary hover:text-white transition-all whitespace-nowrap cursor-pointer select-package" data-package="quick">
Select Package
</button>
</div>
<div class="package-card bg-white rounded-lg shadow-lg p-8 border-2 border-primary relative">
<div class="absolute -top-4 left-1/2 transform -translate-x-1/2">
<span class="bg-primary text-white px-4 py-1 rounded-full text-sm">Most Popular</span>
</div>
<div class="text-center mb-8">
<h3 class="font-['Playfair_Display'] text-2xl font-bold mb-2">🚀 Transformational Leadership Coaching</h3>
<div class="space-y-4">
<div class="text-xl font-bold text-primary">60-Minute Private Session: $350</div>
<div class="text-xl font-bold text-primary">3-Month Program: $1,800</div>
<div class="text-xl font-bold text-primary">6-Month Intensive: $3,500</div>
</div>
<p class="text-gray-600 mt-4">6 or 12 Biweekly Sessions + Custom Options Available</p>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Structured leadership development plan</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Bi-weekly accountability check-ins</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Personal growth assessments</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>24/7 email & messaging support</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Access to exclusive resources & workshops</span>
</li>
</ul>
<button class="w-full bg-primary text-white px-6 py-3 !rounded-button hover:bg-opacity-90 transition-all whitespace-nowrap cursor-pointer select-package" data-package="transformational">
Select Package
</button>
</div>
<div class="package-card bg-white rounded-lg shadow-lg p-8 border border-gray-100">
<div class="text-center mb-8">
<h3 class="font-['Playfair_Display'] text-2xl font-bold mb-2">🦅 Elite Leadership Consulting</h3>
<div class="space-y-4">
<div class="text-xl font-bold text-primary">1-Hour Consultation: $2,800</div>
<div class="text-xl font-bold text-primary">Monthly Advisory: $10,000+</div>
</div>
<p class="text-gray-600 mt-4">Exclusive High-Stakes Leadership Support</p>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Confidential executive consulting</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Strategic decision-making guidance</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Crisis management support</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Priority access & availability</span>
</li>
<li class="flex items-start">
<i class="ri-sparkle-line text-primary mt-1 mr-2"></i>
<span>Customized advisory solutions</span>
</li>
</ul>
<button class="w-full bg-white border-2 border-primary text-primary px-6 py-3 !rounded-button hover:bg-primary hover:text-white transition-all whitespace-nowrap cursor-pointer select-package" data-package="elite">
Select Package
</button>
</div>
</div>
<div class="bg-gray-50 rounded-lg p-8 mb-16">
<h3 class="font-['Playfair_Display'] text-2xl font-bold mb-6 text-center">🏢 Corporate & Business Solutions</h3>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white rounded-lg p-6">
<h4 class="font-bold mb-4">Executive Leadership Coaching</h4>
<p class="text-gray-600 mb-4">One-on-One coaching starting at $2,500/month</p>
<button class="w-full bg-white border-2 border-primary text-primary px-4 py-2 !rounded-button hover:bg-primary hover:text-white transition-all whitespace-nowrap cursor-pointer">Contact for Details</button>
</div>
<div class="bg-white rounded-lg p-6">
<h4 class="font-bold mb-4">Team Development Workshops</h4>
<p class="text-gray-600 mb-4">Custom pricing based on group size & needs</p>
<button class="w-full bg-white border-2 border-primary text-primary px-4 py-2 !rounded-button hover:bg-primary hover:text-white transition-all whitespace-nowrap cursor-pointer">Request Quote</button>
</div>
<div class="bg-white rounded-lg p-6">
<h4 class="font-bold mb-4">Corporate Consulting</h4>
<p class="text-gray-600 mb-4">Retainer-based strategic partnerships</p>
<button class="w-full bg-white border-2 border-primary text-primary px-4 py-2 !rounded-button hover:bg-primary hover:text-white transition-all whitespace-nowrap cursor-pointer">Discuss Options</button>
</div>
</div>
</div>
<div id="calendar-section" class="hidden mb-16">
<h2 class="font-['Playfair_Display'] text-3xl font-bold text-center mb-8">Schedule Your Session</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="col-span-2 bg-white rounded-lg shadow-lg p-8">
<div class="flex items-center justify-between mb-6">
<button id="prev-month" class="text-gray-600 hover:text-primary">
<i class="ri-arrow-left-s-line text-2xl"></i>
</button>
<h3 id="current-month" class="text-xl font-bold">March 2025</h3>
<button id="next-month" class="text-gray-600 hover:text-primary">
<i class="ri-arrow-right-s-line text-2xl"></i>
</button>
</div>
<div class="grid grid-cols-7 gap-2 mb-4">
<div class="text-center text-sm font-medium text-gray-600">Sun</div>
<div class="text-center text-sm font-medium text-gray-600">Mon</div>
<div class="text-center text-sm font-medium text-gray-600">Tue</div>
<div class="text-center text-sm font-medium text-gray-600">Wed</div>
<div class="text-center text-sm font-medium text-gray-600">Thu</div>
<div class="text-center text-sm font-medium text-gray-600">Fri</div>
<div class="text-center text-sm font-medium text-gray-600">Sat</div>
</div>
<div id="calendar-days" class="grid grid-cols-7 gap-2">
</div>
</div>
<div class="bg-white rounded-lg shadow-lg p-8">
<h3 class="font-bold text-lg mb-4">Selected Package</h3>
<div id="package-summary" class="mb-6">
</div>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Time Zone</label>
<select class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
<option>Eastern Time (ET)</option>
<option>Central Time (CT)</option>
<option>Mountain Time (MT)</option>
<option>Pacific Time (PT)</option>
</select>
</div>
<button id="continue-checkout" class="w-full bg-primary text-white px-6 py-3 !rounded-button hover:bg-opacity-90 transition-all whitespace-nowrap cursor-pointer" disabled>
Continue to Checkout
</button>
</div>
</div>
</div>
<div class="mb-16">
<h2 class="font-['Playfair_Display'] text-3xl font-bold text-center mb-8">Frequently Asked Questions</h2>
<div class="max-w-3xl mx-auto space-y-4">
<div class="bg-white rounded-lg shadow-sm">
<button class="w-full text-left px-6 py-4 focus:outline-none flex items-center justify-between">
<span class="font-medium">What happens after I select a package?</span>
<i class="ri-arrow-down-s-line text-xl text-gray-600"></i>
</button>
<div class="px-6 pb-4">
<p class="text-gray-600">After selecting your package, you'll be guided through our simple scheduling process. Choose your preferred date and time, complete the checkout process, and receive a confirmation email with all session details and preparation guidelines.</p>
</div>
</div>
<div class="bg-white rounded-lg shadow-sm">
<button class="w-full text-left px-6 py-4 focus:outline-none flex items-center justify-between">
<span class="font-medium">What is your cancellation policy?</span>
<i class="ri-arrow-down-s-line text-xl text-gray-600"></i>
</button>
<div class="px-6 pb-4">
<p class="text-gray-600">We understand that circumstances can change. You can reschedule or cancel your session up to 24 hours before the scheduled time. Late cancellations or no-shows may be subject to a fee.</p>
</div>
</div>
</div>
</div>
<div class="max-w-3xl mx-auto bg-white rounded-lg shadow-lg p-8">
<h2 class="font-['Playfair_Display'] text-2xl font-bold mb-6">Prepare for Your First Session</h2>
<div class="space-y-6">
<div class="flex items-start">
<div class="w-10 h-10 flex items-center justify-center bg-primary/10 rounded-full mr-4">
<i class="ri-file-list-line text-primary"></i>
</div>
<div>
<h3 class="font-medium mb-2">Complete Pre-Session Questionnaire</h3>
<p class="text-gray-600">You'll receive a brief questionnaire to help us understand your goals and current challenges.</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 flex items-center justify-center bg-primary/10 rounded-full mr-4">
<i class="ri-time-line text-primary"></i>
</div>
<div>
<h3 class="font-medium mb-2">Plan Your Time</h3>
<p class="text-gray-600">Choose a quiet space where you won't be interrupted during our session.</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 flex items-center justify-center bg-primary/10 rounded-full mr-4">
<i class="ri-computer-line text-primary"></i>
</div>
<div>
<h3 class="font-medium mb-2">Technical Setup</h3>
<p class="text-gray-600">Ensure you have a stable internet connection and your video conferencing software is updated.</p>
</div>
</div>
</div>
</div>
</div>
</main>
<div id="checkout-modal" class="hidden fixed inset-0 bg-black/50 flex items-center justify-center z-50">
<div class="bg-white rounded-lg p-8 max-w-md w-full mx-4">
<h3 class="font-['Playfair_Display'] text-2xl font-bold mb-6">Complete Your Purchase</h3>
<div id="checkout-summary" class="mb-6 p-4 bg-gray-50 rounded-lg">
</div>
<form id="payment-form" class="space-y-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-2">Card Information</label>
<input type="text" placeholder="Card number" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
</div>
<div class="grid grid-cols-2 gap-4">
<input type="text" placeholder="MM/YY" class="px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
<input type="text" placeholder="CVC" class="px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
</div>
<button type="submit" class="w-full bg-primary text-white px-6 py-3 !rounded-button hover:bg-opacity-90 transition-all whitespace-nowrap cursor-pointer">
Complete Purchase
</button>
</form>
<button id="close-modal" class="mt-4 w-full text-gray-600 hover:text-gray-900">Cancel</button>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const packageButtons = document.querySelectorAll('.select-package');
const calendarSection = document.getElementById('calendar-section');
const packageSummary = document.getElementById('package-summary');
const continueCheckout = document.getElementById('continue-checkout');
const checkoutModal = document.getElementById('checkout-modal');
const closeModal = document.getElementById('close-modal');
const paymentForm = document.getElementById('payment-form');
const checkoutSummary = document.getElementById('checkout-summary');
const packages = {
quick: {
name: 'Quick Clarity Session',
price: 90,
duration: '30 minutes'
},
transformational: {
name: 'Transformational Leadership',
price: 1800,
duration: '3 months'
},
elite: {
name: 'Elite Leadership',
price: 2800,
duration: '1 hour'
}
};
let selectedPackage = null;
let selectedDate = null;
packageButtons.forEach(button => {
button.addEventListener('click', () => {
const packageType = button.dataset.package;
selectedPackage = packages[packageType];
calendarSection.classList.remove('hidden');
updatePackageSummary();
calendarSection.scrollIntoView({ behavior: 'smooth' });
});
});
function updatePackageSummary() {
packageSummary.innerHTML = `
<div class="mb-4">
<div class="font-medium">${selectedPackage.name}</div>
<div class="text-gray-600">${selectedPackage.duration}</div>
</div>
<div class="text-2xl font-bold text-primary">$${selectedPackage.price}</div>
`;
}
function generateCalendar() {
const calendarDays = document.getElementById('calendar-days');
calendarDays.innerHTML = '';
const date = new Date(2025, 2, 1);
const firstDay = date.getDay();
const daysInMonth = new Date(2025, 3, 0).getDate();
for (let i = 0; i < firstDay; i++) {
calendarDays.appendChild(document.createElement('div'));
}
for (let day = 1; day <= daysInMonth; day++) {
const dayElement = document.createElement('div');
dayElement.className = 'calendar-day text-center p-2 rounded-lg';
dayElement.textContent = day;
if (day > 19) {
dayElement.classList.add('available');
dayElement.addEventListener('click', () => selectDate(day));
}
calendarDays.appendChild(dayElement);
}
}
function selectDate(day) {
const previousSelected = document.querySelector('.calendar-day.selected');
if (previousSelected) {
previousSelected.classList.remove('selected');
}
const selectedElement = document.querySelector(`.calendar-day:nth-child(n+${day + 7})`);
selectedElement.classList.add('selected');
selectedDate = `March ${day}, 2025`;
continueCheckout.disabled = false;
}
generateCalendar();
continueCheckout.addEventListener('click', () => {
checkoutModal.classList.remove('hidden');
checkoutSummary.innerHTML = `
<div class="space-y-2">
<div class="flex justify-between">
<span>Package:</span>
<span class="font-medium">${selectedPackage.name}</span>
</div>
<div class="flex justify-between">
<span>Date:</span>
<span class="font-medium">${selectedDate}</span>
</div>
<div class="flex justify-between text-lg font-bold mt-4">
<span>Total:</span>
<span>$${selectedPackage.price}</span>
</div>
</div>
`;
});
closeModal.addEventListener('click', () => {
checkoutModal.classList.add('hidden');
});
paymentForm.addEventListener('submit', (e) => {
e.preventDefault();
const notification = document.createElement('div');
notification.className = 'fixed bottom-4 right-4 bg-green-500 text-white px-6 py-3 rounded-lg shadow-lg';
notification.textContent = 'Payment successful! Check your email for confirmation.';
document.body.appendChild(notification);
checkoutModal.classList.add('hidden');
setTimeout(() => notification.remove(), 3000);
});
const faqButtons = document.querySelectorAll('.bg-white.rounded-lg button');
faqButtons.forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('ri-arrow-down-s-line');
icon.classList.toggle('ri-arrow-up-s-line');
});
});
});
</script>
</body>
</html>