סודות האנרגיה הנשית – וובינר חינם /* 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; –darker-bg: #050505; } body { font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(–white); background-color: var(–black); overflow-x: hidden; } /* Typography */ h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(–white); } p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; color: var(–white); } /* Container */ .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; } /* Sections */ section { padding: 3rem 0; } /* Countdown Timer */ .countdown-container { position: relative; width: 100%; background: linear-gradient(135deg, rgba(148,4,9,0.95) 0%, rgba(0,0,0,0.95) 100%); backdrop-filter: blur(10px); padding: 0.5rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.5); border-bottom: 2px solid var(–gold); margin-bottom: 1rem; } .countdown-wrapper { text-align: center; max-width: 1200px; margin: 0 auto; padding: 0 1rem; } .countdown-title { color: var(–gold); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 1px; } .countdown-timer { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; } .time-block { position: relative; } .time-value { display: inline-block; background: linear-gradient(135deg, var(–gold) 0%, var(–dark-gold) 100%); color: var(–black); font-size: 1.8rem; font-weight: 800; padding: 0.3rem 0.8rem; border-radius: 8px; min-width: 60px; box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4); } .time-label { display: block; color: var(–white); font-size: 0.7rem; margin-top: 0.2rem; text-transform: uppercase; } .warning-message { color: #ff0000; font-size: 0.8rem; margin-top: 0.3rem; font-weight: 600; opacity: 0; transition: opacity 0.3s; } .warning-message.show { opacity: 1; } /* Hero Section */ .hero { background: linear-gradient(135deg, var(–black) 0%, #1a1a1a 100%); padding: 2rem 0 4rem; text-align: center; border-bottom: 1px solid var(–gold); } .hero-image-wrapper { margin-bottom: 1.5rem; text-align: center; } .hero-image-wrapper img { max-width: 900px; width: 95%; height: auto; display: inline-block; filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); } .main-title { font-size: 2rem; color: var(–white); margin-bottom: 1.5rem; font-weight: 800; } .subtitle { font-size: 1.25rem; color: var(–gold); font-weight: 600; margin-bottom: 2rem; } /* Webinar Info Section */ .webinar-info { background-color: var(–dark-bg); text-align: center; padding: 2rem 1rem; border-top: 3px solid var(–gold); border-bottom: 3px solid var(–gold); } .webinar-info h2 { font-size: 1.5rem; color: var(–white); margin-bottom: 1.5rem; } /* Story Section */ .story { background-color: #111111; padding: 3rem 0; } .story-title { font-size: 1.75rem; color: var(–red); text-align: center; margin-bottom: 2rem; } .story-content { max-width: 800px; margin: 0 auto; text-align: right; } .highlight-box { background-color: rgba(212, 175, 55, 0.1); padding: 1.5rem; border-radius: 10px; margin: 2rem 0; border: 1px solid var(–gold); } .quote { font-size: 1.5rem; color: var(–red); font-weight: 700; text-align: center; margin: 2rem 0; padding: 1rem; border-top: 2px solid var(–gold); border-bottom: 2px solid var(–gold); } /* Benefits Section */ .benefits { background-color: var(–black); padding: 3rem 0; } .benefits-list { max-width: 800px; margin: 0 auto; } .benefit-item { background-color: var(–dark-bg); padding: 1.5rem; margin-bottom: 1rem; border-radius: 8px; box-shadow: 0 2px 10px rgba(255,255,255,0.05); border-right: 4px solid var(–gold); transition: transform 0.3s ease; color: var(–white); } .benefit-item:hover { transform: translateX(-5px); box-shadow: 0 4px 20px rgba(212,175,55,0.2); } .benefit-item::before { content: "✓"; color: var(–gold); font-weight: bold; margin-left: 0.5rem; font-size: 1.2rem; } /* Bonus Section */ .bonus { background: linear-gradient(135deg, var(–red) 0%, var(–dark-gold) 100%); color: var(–white); padding: 3rem 0; text-align: center; } .bonus h2 { font-size: 2rem; margin-bottom: 1.5rem; color: var(–white); } .bonus-content { background-color: rgba(0,0,0,0.3); padding: 2rem; border-radius: 10px; max-width: 600px; margin: 0 auto; backdrop-filter: blur(10px); } /* Price Section */ .price-section { background-color: var(–dark-bg); padding: 3rem 0; text-align: center; } .price-box { background-color: rgba(212, 175, 55, 0.1); padding: 2rem; border-radius: 15px; max-width: 500px; margin: 2rem auto; box-shadow: 0 5px 20px rgba(212,175,55,0.2); border: 1px solid var(–gold); } /* Form Section */ .form-wrapper { background-color: #1a1a1a; padding: 2rem; border-radius: 15px; max-width: 500px; margin: 2rem auto; box-shadow: 0 5px 20px rgba(0,0,0,0.5); border: 1px solid var(–gold); } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(–white); } .form-group input { width: 100%; padding: 1rem; border: 2px solid var(–gold); border-radius: 8px; font-size: 1rem; font-family: 'Assistant', sans-serif; transition: border-color 0.3s ease; background-color: rgba(255,255,255,0.1); color: var(–white); } .form-group input:focus { outline: none; border-color: var(–red); background-color: rgba(255,255,255,0.15); } /* CTA Button */ .cta-button { display: block; background: linear-gradient(135deg, var(–gold) 0%, var(–dark-gold) 100%); color: var(–black); padding: 1.25rem 3rem; border-radius: 50px; font-size: 1.25rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); width: 100%; max-width: 400px; margin: 1rem auto; text-align: center; position: relative; overflow: hidden; } .cta-button:hover { transform: translateY(-2px); background: linear-gradient(135deg, var(–dark-gold) 0%, var(–gold) 100%); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); } /* FAQ Section */ .faq-section { background-color: var(–black); padding: 3rem 0; } .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { background-color: var(–dark-bg); margin-bottom: 1rem; border-radius: 10px; border: 1px solid rgba(148,4,9,0.3); overflow: hidden; cursor: pointer; transition: all 0.3s ease; } .faq-item:hover { border-color: var(–gold); box-shadow: 0 4px 20px rgba(212,175,55,0.2); } .faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; } .faq-question h3 { color: var(–gold); font-size: 1.25rem; margin: 0; } .faq-icon { font-size: 1.5rem; color: var(–gold); transition: transform 0.4s ease; display: inline-block; } .faq-item.active .faq-icon { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 1.5rem; } .faq-item.active .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem; } /* Final CTA */ .final-cta { background: linear-gradient(135deg, #1a1a1a 0%, var(–black) 100%); color: var(–white); padding: 4rem 0; text-align: center; border-top: 1px solid var(–gold); } /* Text highlights */ .highlight-gold { color: var(–gold); font-weight: 700; } .highlight-red { color: var(–red); font-weight: 700; } .underline-red { position: relative; display: inline-block; font-weight: 700; } .underline-red::after { content: "; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px; background: var(–red); } .underline-gold { position: relative; display: inline-block; font-weight: 700; } .underline-gold::after { content: "; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px; background: var(–gold); } /* Responsive Design */ @media (min-width: 768px) { .main-title { font-size: 2.5rem; } .subtitle { font-size: 1.5rem; } .story-title { font-size: 2rem; } section { padding: 4rem 0; } } @media (min-width: 1024px) { .main-title { font-size: 3rem; } .hero { padding: 3rem 0 5rem; } } @media (max-width: 640px) { .time-value { font-size: 1.5rem; min-width: 50px; padding: 0.2rem 0.5rem; } .countdown-title { font-size: 0.8rem; } .countdown-timer { gap: 0.3rem; } }

ההצעה מסתיימת בעוד:

00 ימים
00 שעות
00 דקות
00 שניות
מה נשים מצליחות יודעות על אנרגיה נקבית

סודות האנרגיה הנשית שימגנטו לחיים שלך אהבה, שפע ושקט פנימי- בלי לוותר על האמביציה שלך

בוובינר הזה תגלי את האמת על אנרגיה נקבית פצועה, איך מאזנים אותה, ואיך להשתמש בה כדי לזמן לחיים שלך אהבה, הצלחה וכל מה שתמיד רצית – בדרך שמרגישה טבעית, בלי משחקים ובלי לוותר על מי שאת.

לפני שנתיים הייתי בדיוק במקום שלך…

שנתיים חיפשתי אהבה באפליקציות. אינסוף שיחות, דייטים שלא הובילו לשום מקום, לילות של תסכול. חשבתי שאני עושה הכל נכון – ועדיין כלום לא זז.

עד שיום אחד, מול המראה, נשברתי:

"איך יכול להיות שאני אישה חזקה ומצליחה – ובכל זאת מרגישה לבד?"

ואז הבנתי: חייתי באנרגיה גברית 90% מהזמן. רק עשייה, שליטה, הוכחות. לא היה מקום לאנרגיה הנשית שלי – לזמן, לרוך, למשיכה טבעית.

מאותו רגע החלטתי לשנות. והכל התחיל מדברים קטנים.. כאלו שגם את יכולה לבצע כבר מחר

"זה לא קסם. זו נוסחה נשית ממגנטת – ואני הולכת ללמד אותך אותה".

מה תקבלי בוובינר הזה?

איך לזהות אם האנרגיה שלך פצועה – ומה זה עושה לזוגיות, קריירה וחיים
השיטה שלי להחזיר נשיות ואיזון לשגרה – גם אם אין לך רגע פנוי
הטכניקה המדויקת שבה זימנתי זוגיות אחרי שנתיים של כישלונות
3 טעויות שכנראה את עושה בלי לדעת – שמרחיקות ממך את מה שאת רוצה
מה הקשר בין אנרגיה נשית לשפע – ואיך לפתוח את השער הזה

🎁 בונוס מיוחד

כל מי שתישאר איתי עד הסוף תקבל מדריך אולטרה בונוס: "7 ימים של זימון נשי" – עם תרגילים יומיים ליישום מידי.

שווי הידע הזה? מאות שקלים.

כמה תשלמי? אפס.

כי המטרה שלי היא אחת: להחזיר לנשים את הכוח שלהן – ולהוכיח שזה אפשרי.

חינם לגמרי (כן, באמת).

שם מלא
כתובת מייל
מספר נייד
🔥 כן! אני בפנים »

שאלות נפוצות

אין לי זמן

+

זה וובינר ממוקד, קצר ועם תוצאות שתוכלי להרגיש מיד.

נשמע לי רוחני מדי

+

כל מה שאני מלמדת מבוסס על פסיכולוגיה, תודעה וכלים פרקטיים.

אני כבר בזוגיות, זה רלוונטי?

+

בטח! כי זה ישדרג את האנרגיה שלך בכל תחום- לא רק בזוגיות.

את מוכנה לשינוי?

הצטרפי עכשיו וגלי איך להפוך לאישה שמושכת אליה את כל מה שהיא רוצה.

הרשמי אותי עכשיו »
// Countdown Timer function startCountdown() { const targetDate = new Date(); targetDate.setDate(targetDate.getDate() + 1); targetDate.setHours(23, 59, 59, 999); const daysElement = document.getElementById('days'); const hoursElement = document.getElementById('hours'); const minutesElement = document.getElementById('minutes'); const secondsElement = document.getElementById('seconds'); const countdownContainer = document.getElementById('countdownContainer'); const warningMessage = document.getElementById('warningMessage'); function updateCountdown() { const now = new Date().getTime(); const distance = targetDate.getTime() – now; if (distance num.toString().padStart(2, '0'); daysElement.textContent = formatNumber(days); hoursElement.textContent = formatNumber(hours); minutesElement.textContent = formatNumber(minutes); secondsElement.textContent = formatNumber(seconds); const totalSeconds = Math.floor(distance / 1000); if (totalSeconds 600) { warningMessage.classList.add('show'); warningMessage.textContent = '⚡ נשארה פחות משעה! ⚡'; } if (totalSeconds 10) { warningMessage.textContent = '🔥 10 דקות אחרונות! 🔥'; } if (totalSeconds { if (item !== element && item.classList.contains('active')) { item.classList.remove('active'); } }); element.classList.toggle('active'); } // Form Submission document.querySelector('form').addEventListener('submit', function(e) { e.preventDefault(); // כאן תוסיף את הקוד לשליחת הטופס לשרת // לדוגמה: fetch API או webhook alert('תודה על ההרשמה! נשלח לך את הפרטים במייל.'); this.reset(); }); // Smooth Scroll document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); // Start countdown when page loads if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', startCountdown); } else { startCountdown(); }