בדיקה

תודה על ההרשמה! /* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { –gold: #D4AF37; –red: #940409; –black: #000000; –white: #FFFFFF; –light-gold: #F4E4C1; –dark-gold: #B8941F; –dark-bg: #0a0a0a; –gray: #888888; –success-green: #4CAF50; } body { font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(–white); background: linear-gradient(135deg, var(–black) 0%, #1a1a1a 50%, #2a1810 100%); min-height: 100vh; overflow-x: hidden; padding: 2rem 1rem; } /* Main Container */ .thank-you-container { max-width: 900px; margin: 0 auto; animation: fadeInUp 0.8s ease-out; } /* Success Icon */ .success-icon { width: 120px; height: 120px; margin: 0 auto 2rem; background: linear-gradient(135deg, var(–gold) 0%, var(–dark-gold) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); animation: checkmarkPop 0.4s ease-out; } .checkmark { font-size: 60px; color: var(–black); font-weight: bold; animation: checkmarkDraw 0.3s ease-out 0.2s both; } /* Main Message */ .main-message { background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(148, 4, 9, 0.08) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 20px; padding: 2.5rem 2rem; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); margin-bottom: 2rem; text-align: center; } h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; background: linear-gradient(135deg, var(–gold) 0%, var(–light-gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .subtitle { font-size: 1.5rem; color: var(–white); font-weight: 500; margin-bottom: 1rem; line-height: 1.5; } .email-confirmation { background: rgba(76, 175, 80, 0.1); border: 1px solid var(–success-green); border-radius: 10px; padding: 1rem; margin: 1.5rem 0; color: var(–white); font-size: 1.1rem; } .email-confirmation .email { color: var(–gold); font-weight: 600; } /* Event Details */ .event-details { background: rgba(255, 255, 255, 0.05); border-radius: 15px; padding: 2rem; margin: 2rem 0; border: 1px solid rgba(212, 175, 55, 0.2); } .event-details h2 { color: var(–gold); font-size: 1.8rem; margin-bottom: 1.5rem; text-align: center; } .detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; } .detail-item { display: flex; align-items: center; gap: 1rem; } .detail-icon { width: 40px; height: 40px; background: rgba(212, 175, 55, 0.1); border: 1px solid var(–gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; } .detail-text { flex: 1; } .detail-label { color: var(–gray); font-size: 0.9rem; margin-bottom: 0.2rem; } .detail-value { color: var(–white); font-size: 1.1rem; font-weight: 600; } /* Next Steps */ .next-steps { background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%); border-radius: 15px; padding: 2rem; margin: 2rem 0; } .next-steps h3 { color: var(–gold); font-size: 1.5rem; margin-bottom: 1.5rem; text-align: center; } .steps-timeline { position: relative; padding-right: 2rem; } .step { position: relative; padding-bottom: 2rem; padding-right: 2rem; opacity: 0; animation: fadeIn 0.5s ease-out forwards; } .step:nth-child(1) { animation-delay: 0.3s; } .step:nth-child(2) { animation-delay: 0.5s; } .step:nth-child(3) { animation-delay: 0.7s; } .step::before { content: "; position: absolute; right: 0; top: 8px; width: 12px; height: 12px; background: var(–gold); border-radius: 50%; box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); } .step::after { content: "; position: absolute; right: 5px; top: 20px; width: 2px; height: calc(100% – 10px); background: rgba(212, 175, 55, 0.3); } .step:last-child::after { display: none; } .step-title { color: var(–white); font-weight: 600; margin-bottom: 0.5rem; } .step-desc { color: var(–gray); font-size: 0.95rem; } /* CTA Buttons */ .cta-section { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0; } .cta-button { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; background: linear-gradient(135deg, var(–gold) 0%, var(–dark-gold) 100%); color: var(–black); text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem; } .cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); } .cta-button.secondary { background: transparent; border: 2px solid var(–gold); color: var(–gold); } /* Limited Spots */ .limited-spots { background: linear-gradient(135deg, rgba(148, 4, 9, 0.15) 0%, rgba(0, 0, 0, 0.3) 100%); border: 1px solid var(–red); border-radius: 15px; padding: 1.5rem; margin: 2rem 0; text-align: center; } .spots-count { display: inline-block; background: var(–gold); color: var(–black); padding: 0.3rem 1rem; border-radius: 25px; font-size: 1.5rem; font-weight: 700; margin: 0.5rem 0; } /* Support Section */ .support-section { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); } .support-text { color: var(–gray); margin-bottom: 1rem; } .support-link { color: var(–gold); text-decoration: none; font-weight: 600; transition: opacity 0.3s; } .support-link:hover { opacity: 0.8; } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes checkmarkPop { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } } @keyframes checkmarkDraw { from { transform: scale(0) rotate(-180deg); } to { transform: scale(1) rotate(0deg); } } /* Responsive */ @media (max-width: 768px) { h1 { font-size: 2rem; } .subtitle { font-size: 1.25rem; } .event-details h2 { font-size: 1.5rem; } .main-message { padding: 2rem 1.5rem; } .detail-grid { grid-template-columns: 1fr; } .cta-section { flex-direction: column; } .cta-button { width: 100%; justify-content: center; } } @media (max-width: 480px) { h1 { font-size: 1.75rem; } .subtitle { font-size: 1.1rem; } .success-icon { width: 100px; height: 100px; } .checkmark { font-size: 50px; } }

נרשמת בהצלחה! 🎯

את רשומה לוובינר המיוחד שישנה את הגישה שלך לחיים

פרטי הוובינר

📅
תאריך
יום שלישי, 5 בנובמבר 2024
🕐
שעה
20:00 בערב
💻
פלטפורמה
זום – הקישור יישלח במייל
⏱️
משך
כ-90 דקות של תוכן מעשיר

מה קורה עכשיו?

✓ עכשיו – אישור במייל
בדקי את תיבת הדואר שלך (כולל ספאם) לאישור ההרשמה
🔔 יום לפני – תזכורת
נשלח לך תזכורת עם כל הפרטים החשובים
🎯 30 דקות לפני – קישור כניסה
תקבלי קישור ישיר לחדר הזום והנחיות אחרונות
📅 הוסף ליומן 💬 שתף עם חברה 👥 הצטרף לקבוצת הטלגרם
⚡ כדאי להיכנס בזמן
מספר המקומות מוגבל ל-
50 משתתפות
הכניסה לפי סדר הגעה
לא קיבלת מייל? יש בעיה?
צור קשר עם התמיכה
// Personalize email if available function setUserEmail() { // In real implementation, get from URL params or session const urlParams = new URLSearchParams(window.location.search); const email = urlParams.get(’email'); if (email) { document.querySelector('.email').textContent = email; } } // Add to calendar functionality function addToCalendar() { const event = { title: 'וובינר מיוחד – שינוי חיים', start: '20241105T200000', end: '20241105T213000', details: 'וובינר מעשיר ומעצים עם כלים פרקטיים לשינוי', location: 'אונליין – זום' }; // Google Calendar URL const googleUrl = `https://calendar.google.com/calendar/render?action=TEMPLATE&text=${encodeURIComponent(event.title)}&dates=${event.start}/${event.end}&details=${encodeURIComponent(event.details)}&location=${encodeURIComponent(event.location)}`; window.open(googleUrl, '_blank'); } // Share functionality function shareWithFriend() { const shareText = 'הצטרפתי לוובינר מדהים! בואי גם את 💪'; const shareUrl = window.location.origin + '/register'; if (navigator.share) { navigator.share({ title: 'וובינר מיוחד', text: shareText, url: shareUrl }); } else { // Fallback to WhatsApp const whatsappUrl = `https://wa.me/?text=${encodeURIComponent(shareText + ' ' + shareUrl)}`; window.open(whatsappUrl, '_blank'); } } // Initialize window.addEventListener('load', () => { setUserEmail(); });