ניהול בעידן ה-AI | מסלול לארגונים (טיוטה)

הרישיון הארגוני

זה לא "עוד קורס" שהעובדים יריצו פי 2 מהר ברקע. זה קורס דיגיטלי, שמורכב משיעורים כיפיים, קצרים
ופרקטיים שעוזרים למנהלים ביומיום.
רישיון גלובלי לארגון המכיל את כל תכני הקורס "ניהול בעידן ה-AI".

ללא מגבלת משתמשים

ללא מגבלת משתמשים

רישיון גלובלי פתוח לכל המנהלים.

ללא תפוגה

ללא תפוגה

שלכם לתמיד. גישה חופשית.

גמישות מלאה

גמישות מלאה

מאוחסן אצלכם ב-LMS הארגוני.

מחירון השקה 🚀

עד סוף מרץ 2026 - חתכנו את המחירים ב-50% כדי לאפשר לארגונים לרוץ על זה עכשיו.

חברות קטנות

50-150 מנהלים

8-12K
4,000-6,000 ₪

חברות בינוניות

150-400 מנהלים

12-16K
6,000-8,000 ₪

חברות גדולות

400+ מנהלים

24K
12,000 ₪

רוצים התנעה של התהליך?
The Human
Add-on

מכירים את זה שקונים קורס חדש ואף אחד לא נכנס אליו? כדי לעורר את השטח, אפשר
להוסיף
הרצאת Kickoff חיה שלי ב-Zoom לכלל המנהלים (כ-30-40 דקות) שתעשה קצת סדר ותכניס
את כולם לעניינים.

עלות התוספת:
3,500 ₪
(בלעדי לרוכשי הרישיון)

תכלס, רוצים שנדבר על זה?

תחזירו אימייל מתי נוח לכם, או תשאירו פרטים ואשלח לכם גם לינק להצצה.

דברו איתנו

לכו תדעו,

צוות אדפטיישן
(ולזורמות - איריס וניתאי)

© 2026 Adaptation - Lior Frenkel. All rights reserved.

`;

shadow.appendChild(font);
shadow.appendChild(style);
shadow.appendChild(content);

// Setup interactions using shadow instead of document
const observerOptions = { root: null, rootMargin: '0px', threshold: 0.15 };
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, observerOptions);

shadow.querySelectorAll('.fade-in-up').forEach(el => observer.observe(el));

const cursorGlow = shadow.querySelector('.cursor-glow');
if (window.matchMedia && window.matchMedia("(pointer: fine)").matches && cursorGlow) {
let mouseX = window.innerWidth / 2;
let mouseY = window.innerHeight / 2;
let glowX = mouseX;
let glowY = mouseY;

window.addEventListener('mousemove', (e) => {
mouseX = e.clientX;
mouseY = e.clientY;
});

shadow.querySelectorAll('a, button, .pricing-card').forEach(el => {
el.addEventListener('mouseenter', () => cursorGlow.style.transform = `translate(${glowX}px, ${glowY}px) scale(1.5)`);
el.addEventListener('mouseleave', () => cursorGlow.style.transform = `translate(${glowX}px, ${glowY}px) scale(1)`);
});

function animateGlow() {
glowX += (mouseX - glowX) * 0.12;
glowY += (mouseY - glowY) * 0.12;
const trans = cursorGlow.style.transform || '';
const match = trans.match(/scale\(([^)]+)\)/);
const scale = match ? match[1] : '1';
cursorGlow.style.transform = `translate(${glowX}px, ${glowY}px) scale(${scale})`;
requestAnimationFrame(animateGlow);
}
animateGlow();
} else if (cursorGlow) {
cursorGlow.style.display = 'none';
}

const tiltCards = shadow.querySelectorAll('.pricing-card, .feature-card, .video-container');
if (window.matchMedia && window.matchMedia("(pointer: fine)").matches) {
tiltCards.forEach(card => {
card.addEventListener('mousemove', (e) => {
const rect = card.getBoundingClientRect();
const x = e.clientX - rect.left - rect.width / 2;
const y = e.clientY - rect.top - rect.height / 2;
const rotateX = (y / rect.height) * -12;
const rotateY = (x / rect.width) * 12;
card.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) scale3d(1.02, 1.02, 1.02)`;
});
card.addEventListener('mouseleave', () => {
card.style.transform = card.classList.contains('popular') ? 'scale(1.05)' : 'perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1)';
card.style.transition = 'transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1)';
});
card.addEventListener('mouseenter', () => {
card.style.transition = 'transform 0.1s ease-out';
});
});
}

const shape1 = shadow.querySelector('.shape-1');
const shape2 = shadow.querySelector('.shape-2');
window.addEventListener('scroll', () => {
const scrolled = window.scrollY;
if (shape1) shape1.style.transform = `translateY(${scrolled * 0.15}px)`;
if (shape2) shape2.style.transform = `translateY(${scrolled * 0.1}px)`;
}, { passive: true });
})();