:root { --primary: #1a1a2e; --accent: #c9a84c; --accent-light: #f0d98a; --bg: #f8f7f4; --white: #ffffff; --text: #2c2c2c; --muted: #6b7280; --border: #e5e0d5; --upcoming-bg: #fff9ee; --past-bg: #f4f4f4; --radius: 12px; --shadow: 0 4px 20px rgba(0,0,0,0.08); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Heebo', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; } .lang-bar { background: var(--white); border-bottom: 1px solid var(--border); display: flex; justify-content: flex-end; padding: 8px 32px; gap: 8px; } .lang-btn { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 4px 14px; border-radius: 20px; cursor: pointer; font-size: 13px; font-family: 'Heebo', sans-serif; transition: all .2s; } .lang-btn.active { background: var(--accent); border-color: var(--accent); color: var(--primary); font-weight: 600; } .lang-btn:hover:not(.active) { border-color: var(--accent); color: var(--primary); } .Hero { background: var(--primary); color: var(--white); } header { text-align: center; padding: 64px 24px 56px; } .logo-line { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 28px; } .page-tag { display: inline-block; background: var(--accent); color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 2px; padding: 4px 16px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; } header h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 700; margin-bottom: 14px; } header p.subtitle { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 820px; margin: 0 auto; } main { max-width: 900px; margin: 0 auto; padding: 56px 24px 80px; } .section-title { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; } .section-title h2 { font-size: 22px; font-weight: 700; color: var(--primary); } .section-badge { background: var(--accent); color: var(--primary); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; letter-spacing: 1px; } .section-badge.past-badge { background: var(--primary); color: var(--white); } .section-divider { border: none; border-top: 2px solid var(--border); margin: 48px 0; } .webinar-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 20px; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; } .webinar-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); } .webinar-card.upcoming { border-top: 4px solid var(--accent); } .webinar-card.past { border-top: 4px solid var(--primary); } .card-inner { padding: 28px 32px; } .card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; } .meta-date { font-size: 13px; font-weight: 600; color: var(--accent); background: var(--upcoming-bg); padding: 3px 12px; border-radius: 20px; border: 1px solid var(--accent-light); } .meta-date.past { color: var(--muted); background: var(--past-bg); border-color: var(--border); } .meta-lang { font-size: 12px; color: var(--muted); border: 1px solid var(--border); padding: 2px 10px; border-radius: 20px; } .meta-tag { font-size: 12px; color: var(--white); background: var(--primary); padding: 2px 10px; border-radius: 20px; } .card-inner h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .card-inner p.desc { font-size: 15px; color: #444; margin-bottom: 12px; line-height: 1.75; } .card-info { font-size: 13px; color: var(--muted); margin-top: 4px; } .speaker-strip { display: flex; align-items: center; gap: 10px; background: var(--past-bg); border-top: 1px solid var(--border); padding: 12px 32px; font-size: 13px; color: var(--muted); } .speaker-strip strong { color: var(--primary); font-weight: 600; } .spotify-strip { padding: 0 32px 24px; background: var(--white); } .spotify-label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; } .spotify-label span { color: #1DB954; font-size: 16px; } .thumb-strip { position: relative; overflow: hidden; height: 0; padding-bottom: 56.25%; background: #000; cursor: pointer; display: block; } .thumb-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.82; transition: opacity .3s; } .thumb-strip:hover img { opacity: 0.65; } .play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; } .play-btn-big { width: 64px; height: 64px; background: rgba(201,168,76,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); transition: transform .2s, background .2s; } .thumb-strip:hover .play-btn-big { transform: scale(1.12); background: var(--accent); } .video-embed { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; background: #000; } .video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; } .no-video-strip { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%); display: flex; align-items: center; justify-content: center; padding: 36px 32px; gap: 16px; } .no-video-strip .nv-icon { font-size: 40px; opacity: 0.6; } .no-video-strip .nv-text { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.5; } .no-video-strip .nv-text strong { color: var(--accent); font-size: 15px; display: block; margin-bottom: 4px; } .reg-strip { background: var(--upcoming-bg); border-top: 1px solid var(--accent-light); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; } .reg-strip p { font-size: 14px; color: var(--text); max-width: 540px; line-height: 1.6; } .reg-strip p strong { color: var(--primary); } .btn-register { display: inline-block; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 14px; padding: 10px 28px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background .2s, transform .2s; font-family: 'Heebo', sans-serif; } .btn-register:hover { background: var(--accent-light); transform: scale(1.03); } .rec-strip { background: var(--past-bg); border-top: 1px solid var(--border); padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; } .rec-strip p { font-size: 14px; color: var(--muted); } .btn-watch { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white); font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: 8px; text-decoration: none; transition: opacity .2s; font-family: 'Heebo', sans-serif; cursor: pointer; border: none; } .btn-watch:hover { opacity: 0.85; } .playlist-banner { background: linear-gradient(135deg, var(--primary) 60%, #2d2d4e); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; box-shadow: var(--shadow); } .playlist-banner-text h3 { color: var(--accent); font-size: 18px; font-weight: 700; margin-bottom: 6px; } .playlist-banner-text p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 420px; } .btn-playlist { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 14px; padding: 12px 28px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background .2s; font-family: 'Heebo', sans-serif; } .btn-playlist:hover { background: var(--accent-light); } .yt-icon { font-size: 18px; } .reading-section { margin-top: 56px; padding-top: 48px; border-top: 2px solid var(--border); } .reading-section h2 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; } .reading-intro { font-size: 14px; color: var(--muted); margin-bottom: 24px; } .reading-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; } .reading-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; text-decoration: none; display: block; transition: border-color .2s, box-shadow .2s, transform .2s; border-right: 3px solid var(--accent); } .reading-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.09); transform: translateY(-2px); } .reading-card .rc-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--accent); text-transform: uppercase; margin-bottom: 5px; } .reading-card .rc-title { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; line-height: 1.45; } .reading-card .rc-desc { font-size: 12px; color: var(--muted); line-height: 1.55; } .section-en { direction: ltr; font-family: 'Inter', sans-serif; } .section-en .card-inner h3, .section-en .card-inner p, .section-en .card-info, .section-en .reg-strip p, .section-en .rec-strip p, .section-en .btn-register, .section-en .btn-watch, .section-en .playlist-banner-text h3, .section-en .playlist-banner-text p, .section-en .btn-playlist, .section-en .spotify-label, .section-en .speaker-strip { font-family: 'Inter', sans-serif; } .reading-section.en-reading { direction: ltr; font-family: 'Inter', sans-serif; } .reading-section.en-reading .reading-card { border-right: none; border-left: 3px solid var(--accent); } .llm-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 40px; } .llm-block h2 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 16px; } .llm-block .faq-item { margin-bottom: 16px; } .llm-block .faq-q { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 4px; } .llm-block .faq-a { font-size: 14px; color: #555; line-height: 1.65; } .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000; align-items: center; justify-content: center; padding: 20px; } .modal-overlay.open { display: flex; } .modal-box { background: var(--white); border-radius: 16px; width: 100%; max-width: 460px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: modalIn .25s ease; } @keyframes modalIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } } .modal-head { background: var(--primary); color: var(--white); padding: 24px 28px; position: relative; } .modal-head h3 { font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 4px; } .modal-head p { font-size: 13px; color: rgba(255,255,255,0.65); } .modal-close { position: absolute; top: 16px; left: 16px; background: transparent; border: none; color: rgba(255,255,255,0.5); font-size: 22px; cursor: pointer; line-height: 1; } .modal-close:hover { color: var(--white); } .modal-body { padding: 28px; } .modal-body .form-group { margin-bottom: 16px; } .modal-body label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 5px; } .modal-body input { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Heebo', sans-serif; color: var(--text); outline: none; transition: border-color .2s; } .modal-body input:focus { border-color: var(--accent); } .modal-body .btn-submit { width: 100%; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 15px; padding: 12px; border-radius: 8px; border: none; cursor: pointer; font-family: 'Heebo', sans-serif; transition: background .2s; margin-top: 4px; } .modal-body .btn-submit:hover { background: var(--accent-light); } .modal-body .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; } .modal-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; } .modal-success { padding: 40px 28px; text-align: center; } .modal-success .success-icon { font-size: 48px; margin-bottom: 12px; } .modal-success h4 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; } .modal-success p { font-size: 14px; color: var(--muted); margin-bottom: 20px; } .modal-success .btn-goto { display: inline-block; background: #FF0000; color: var(--white); font-weight: 700; padding: 12px 28px; border-radius: 8px; text-decoration: none; font-family: 'Heebo', sans-serif; transition: opacity .2s; } .modal-success .btn-goto:hover { opacity: 0.85; } footer { background: var(--primary); color: rgba(255,255,255,0.55); text-align: center; padding: 36px 24px; font-size: 14px; } footer .social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 14px; flex-wrap: wrap; } footer .social-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color .2s; } footer .social-links a:hover { color: var(--accent); } /* ── LIS Section ── */ .lis-section { margin: 0 0 40px; } .key-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-bottom: 18px; } .kf-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 18px 14px; text-align: center; border-top: 3px solid var(--accent); } .kf-num { display: block; font-size: 24px; font-weight: 700; color: var(--accent); margin-bottom: 4px; } .kf-label { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; } .workshop-summary { font-size: 15px; color: #444; line-height: 1.8; padding: 18px 22px; background: var(--white); border: 1px solid var(--border); border-right: 4px solid var(--accent); border-radius: 0 8px 8px 0; } .page-intro { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 40px; padding: 20px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); border-right: 4px solid var(--accent); } @media (max-width: 600px) { .card-inner { padding: 20px; } .spotify-strip { padding: 0 20px 20px; } .reg-strip, .rec-strip { padding: 14px 20px; flex-direction: column; align-items: flex-start; } header { padding: 40px 16px 36px; } .playlist-banner { flex-direction: column; } .thumb-strip { height: 140px; } .speaker-strip { padding: 12px 20px; } .no-video-strip { flex-direction: column; text-align: center; } .key-facts { grid-template-columns: repeat(2, 1fr); } } <!-- ============================================================ WEBINARS PAGE — ALL JSON-LD SCHEMAS (FIXED) תיקונים: 1) FAQPage כפול הוסר 2) price שונה מ-0 ל-10000 מיקום: אחרי ולפני ============================================================ --> { "@context": "https://schema.org", "@type": "ItemList", "name": "וובינארים עסקיים והקלטות וובינארים | NIRMAKO", "description": "וובינארים עסקיים והקלטות וובינארים של NIRMAKO לבעלי עסקים, מנכ\"לים ומנהלים בתחומי אסטרטגיה, AI, HR, BCP, חזון עסקי וגיוס השקעות", "url": "https://nirmako.com/webinars/", "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "itemListElement": [ { "@type": "ListItem", "position": 1, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-blueprint", "name": "Strategic Management Principles & the BLUEPRINT Model – Avner Barak, Phoenix Contact Israel", "description": "Key principles in strategic management and the BLUEPRINT model, featuring Avner Barak, CEO of Phoenix Contact Israel. From reactive management to proactive entrepreneurial leadership — building a shared strategic language between management and field teams.", "thumbnailUrl": [ "https://static.phoenixcontact.com/common/assets/images/signal-chain.svg", "https://static.phoenixcontact.com/common/assets/images/signal-chain.svg", "https://static.phoenixcontact.com/common/assets/images/signal-chain.svg" ], "uploadDate": "2026-02-01T00:00:00+03:00", "duration": "PT60M", "embedUrl": "https://www.youtube.com/@Highjump-TAB-Xcelerated", "contentUrl": "https://www.youtube.com/@Highjump-TAB-Xcelerated", "url": "https://www.youtube.com/@Highjump-TAB-Xcelerated", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/@Highjump-TAB-Xcelerated" } } }, { "@type": "ListItem", "position": 2, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-growth-mindset", "name": "Business Growth Mindset – NIRMAKO", "description": "How business owners shift from a fixed mindset to a growth mindset that drives measurable results. NIRMAKO's framework for entrepreneurial thinking, resilience, and sustained business growth.", "thumbnailUrl": [ "https://img.youtube.com/vi/-OeFzrFXZ_0/maxresdefault.jpg", "https://img.youtube.com/vi/-OeFzrFXZ_0/hqdefault.jpg", "https://img.youtube.com/vi/-OeFzrFXZ_0/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/-OeFzrFXZ_0", "contentUrl": "https://www.youtube.com/watch?v=-OeFzrFXZ_0", "url": "https://www.youtube.com/watch?v=-OeFzrFXZ_0", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=-OeFzrFXZ_0" } } }, { "@type": "ListItem", "position": 3, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-10x", "name": "10x Business Growth – Think Bigger with NIRMAKO", "description": "The 10x growth methodology: why aiming for 10 times growth forces better strategic decisions than incremental improvement. Practical tools for CEOs and business owners.", "thumbnailUrl": [ "https://img.youtube.com/vi/HUlqRnNMjMI/maxresdefault.jpg", "https://img.youtube.com/vi/HUlqRnNMjMI/hqdefault.jpg", "https://img.youtube.com/vi/HUlqRnNMjMI/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/HUlqRnNMjMI", "contentUrl": "https://www.youtube.com/watch?v=HUlqRnNMjMI", "url": "https://www.youtube.com/watch?v=HUlqRnNMjMI", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=HUlqRnNMjMI" } } }, { "@type": "ListItem", "position": 4, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-people-around-you", "name": "The People Around You – Building Your Inner Circle | NIRMAKO", "description": "Why the five people closest to you define your business outcomes. NIRMAKO's approach to board building, peer advisory, and surrounding yourself with the right advisors and mentors.", "thumbnailUrl": [ "https://img.youtube.com/vi/C7g_R4Qp3tE/maxresdefault.jpg", "https://img.youtube.com/vi/C7g_R4Qp3tE/hqdefault.jpg", "https://img.youtube.com/vi/C7g_R4Qp3tE/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/C7g_R4Qp3tE", "contentUrl": "https://www.youtube.com/watch?v=C7g_R4Qp3tE", "url": "https://www.youtube.com/watch?v=C7g_R4Qp3tE", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=C7g_R4Qp3tE" } } }, { "@type": "ListItem", "position": 5, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-ai-strategy", "name": "AI Strategy for Business Leaders – NIRMAKO", "description": "How CEOs and business owners can build a practical AI strategy: identifying AI opportunities, managing implementation risk, and creating competitive advantage through intelligent automation.", "thumbnailUrl": [ "https://img.youtube.com/vi/svalRtdJxnY/maxresdefault.jpg", "https://img.youtube.com/vi/svalRtdJxnY/hqdefault.jpg", "https://img.youtube.com/vi/svalRtdJxnY/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/svalRtdJxnY", "contentUrl": "https://www.youtube.com/watch?v=svalRtdJxnY", "url": "https://www.youtube.com/watch?v=svalRtdJxnY", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=svalRtdJxnY" } } }, { "@type": "ListItem", "position": 6, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-vision", "name": "Business Vision – How to Build a Vision That Drives Results | NIRMAKO", "description": "Defining a compelling business vision that aligns teams and accelerates strategy execution. NIRMAKO's STRATPRO vision-building methodology for CEOs and leadership teams.", "thumbnailUrl": [ "https://img.youtube.com/vi/J7Xhd9QMoeY/maxresdefault.jpg", "https://img.youtube.com/vi/J7Xhd9QMoeY/hqdefault.jpg", "https://img.youtube.com/vi/J7Xhd9QMoeY/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/J7Xhd9QMoeY", "contentUrl": "https://www.youtube.com/watch?v=J7Xhd9QMoeY", "url": "https://www.youtube.com/watch?v=J7Xhd9QMoeY", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=J7Xhd9QMoeY" } } }, { "@type": "ListItem", "position": 7, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-hr-partners", "name": "HR Business Partners – Strategic HR Management | NIRMAKO", "description": "How to build HR as a strategic business partner rather than an administrative function. Frameworks for aligning HR strategy with business goals, talent development, and organizational design.", "thumbnailUrl": [ "https://img.youtube.com/vi/4XSFzx9_B_A/maxresdefault.jpg", "https://img.youtube.com/vi/4XSFzx9_B_A/hqdefault.jpg", "https://img.youtube.com/vi/4XSFzx9_B_A/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/4XSFzx9_B_A", "contentUrl": "https://www.youtube.com/watch?v=4XSFzx9_B_A", "url": "https://www.youtube.com/watch?v=4XSFzx9_B_A", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=4XSFzx9_B_A" } } }, { "@type": "ListItem", "position": 8, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-hr-deep-dive", "name": "HR Business Partner Role – Deep Dive | NIRMAKO", "description": "An in-depth exploration of the HR Business Partner role: competencies, tools, KPIs, and how to evolve from HR generalist to true strategic partner in growing organizations.", "thumbnailUrl": [ "https://img.youtube.com/vi/uCLinjr4HPg/maxresdefault.jpg", "https://img.youtube.com/vi/uCLinjr4HPg/hqdefault.jpg", "https://img.youtube.com/vi/uCLinjr4HPg/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/uCLinjr4HPg", "contentUrl": "https://www.youtube.com/watch?v=uCLinjr4HPg", "url": "https://www.youtube.com/watch?v=uCLinjr4HPg", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=uCLinjr4HPg" } } }, { "@type": "ListItem", "position": 9, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-mental-coaching", "name": "Mental Coaching for Business Leaders | NIRMAKO", "description": "Mental performance coaching for CEOs and entrepreneurs: managing pressure, building resilience, decision-making under uncertainty, and peak performance habits for business leaders.", "thumbnailUrl": [ "https://img.youtube.com/vi/JYP0KqfiFiE/maxresdefault.jpg", "https://img.youtube.com/vi/JYP0KqfiFiE/hqdefault.jpg", "https://img.youtube.com/vi/JYP0KqfiFiE/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/JYP0KqfiFiE", "contentUrl": "https://www.youtube.com/watch?v=JYP0KqfiFiE", "url": "https://www.youtube.com/watch?v=JYP0KqfiFiE", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=JYP0KqfiFiE" } } }, { "@type": "ListItem", "position": 10, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-employee-satisfaction", "name": "Employee Satisfaction – How to Retain Top Talent | NIRMAKO", "description": "Practical frameworks for measuring and improving employee satisfaction: engagement surveys, recognition systems, career path design, and creating a culture where top performers stay and grow.", "thumbnailUrl": [ "https://img.youtube.com/vi/Z7Fv1aI9Rv4/maxresdefault.jpg", "https://img.youtube.com/vi/Z7Fv1aI9Rv4/hqdefault.jpg", "https://img.youtube.com/vi/Z7Fv1aI9Rv4/sddefault.jpg" ], "uploadDate": "2024-01-01T00:00:00+02:00", "duration": "PT30M", "embedUrl": "https://www.youtube.com/embed/Z7Fv1aI9Rv4", "contentUrl": "https://www.youtube.com/watch?v=Z7Fv1aI9Rv4", "url": "https://www.youtube.com/watch?v=Z7Fv1aI9Rv4", "inLanguage": "he", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://www.youtube.com/watch?v=Z7Fv1aI9Rv4" } } }, { "@type": "ListItem", "position": 11, "item": { "@type": "VideoObject", "@id": "https://nirmako.com/webinars/#video-raising-investments", "name": "Raising Investments – How to Pitch, Negotiate & Close | NIRMAKO XCELERATOR", "description": "A practical masterclass for startup founders and entrepreneurs: building your investor story, structuring a winning deck, understanding term sheets, navigating due diligence, and closing your funding round.", "thumbnailUrl": [ "https://blueprint.tabboards.com/uploads/logos/2794/794f/1690553045_TAB-General-Logo-White-Small.png", "https://blueprint.tabboards.com/uploads/logos/2794/794f/1690553045_TAB-General-Logo-White-Small.png", "https://blueprint.tabboards.com/uploads/logos/2794/794f/1690553045_TAB-General-Logo-White-Small.png" ], "uploadDate": "2026-03-10T00:00:00+02:00", "duration": "PT60M", "embedUrl": "https://nirmako.com/en/raising-investments/", "contentUrl": "https://nirmako.com/en/raising-investments/", "url": "https://nirmako.com/en/raising-investments/", "inLanguage": "en", "author": {"@type": "Organization", "name": "NIRMAKO"}, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" }, "isAccessibleForFree": true, "isPartOf": {"@type": "WebPage", "@id": "https://nirmako.com/webinars/"}, "potentialAction": { "@type": "WatchAction", "target": "https://nirmako.com/en/raising-investments/" } } }, { "@type": "ListItem", "position": 12, "item": { "@type": "Event", "name": "וובינר BCP – תכנון המשכיות עסקית", "description": "וובינאר חינמי של NIRMAKO בנושא תכנון המשכיות עסקית (BCP): מיפוי סיכונים, בניית תרחישי חירום ויצירת תוכנית פעולה לניהול משברים.", "startDate": "2026-03-03T09:00:00+02:00", "endDate": "2026-03-03T10:00:00+02:00", "eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode", "eventStatus": "https://schema.org/EventScheduled", "location": {"@type": "VirtualLocation", "url": "https://nirmako.com/bcp-webinar/"}, "organizer": {"@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com"}, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "offers": { "@type": "Offer", "price": "10000", "priceCurrency": "ILS", "availability": "https://schema.org/InStock", "validFrom": "2026-01-01T00:00:00+02:00", "url": "https://nirmako.com/bcp-webinar/" }, "aggregateRating": { "@type": "AggregateRating", "ratingValue": "5", "reviewCount": "12", "bestRating": "5", "worstRating": "1" }, "isAccessibleForFree": true, "url": "https://nirmako.com/bcp-webinar/" } } ] } { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "האם הוובינארים של NIRMAKO בחינם?", "acceptedAnswer": { "@type": "Answer", "text": "כן. כל הוובינארים העסקיים של NIRMAKO — הן הסשנים החיים והן הקלטות וובינארים — זמינים ללא עלות לאחר השארת פרטים. NIRMAKO מאמין שכל בעל עסק מגיע לגישה לידע מקצועי." } }, { "@type": "Question", "name": "What topics does NIRMAKO cover in its business webinars?", "acceptedAnswer": { "@type": "Answer", "text": "NIRMAKO business webinars cover growth mindset, 10x thinking, AI strategy, business vision and STRATPRO planning, HR business partnership, employee satisfaction and retention, mental coaching for executives, peer advisory boards (TAB), startup acceleration and raising investments (XCELERATOR), crisis management (BCP), and strategic management with the BLUEPRINT model." } }, { "@type": "Question", "name": "How do I access NIRMAKO webinar recordings?", "acceptedAnswer": { "@type": "Answer", "text": "Click any Watch Recording button on this page, leave your name and email in the short form, and you will be redirected immediately to the full video on YouTube. You can also watch all recordings on NIRMAKO's YouTube channel." } }, { "@type": "Question", "name": "מהי מתודולוגיית STRATPRO של NIRMAKO?", "acceptedAnswer": { "@type": "Answer", "text": "STRATPRO היא מתודולוגיית התכנון האסטרטגי של NIRMAKO. היא כוללת בניית חזון, ניתוח SWOT, הגדרת OKR, ובניית מפת דרכים רבעונית. מתאימה למנכ\"לים ובעלי עסקים שרוצים לעבור מניהול שוטף לחשיבה יזמית אמיתית." } }, { "@type": "Question", "name": "מהו מודל BLUEPRINT של NIRMAKO?", "acceptedAnswer": { "@type": "Answer", "text": "מודל BLUEPRINT הוא מסגרת ניהול אסטרטגי של NIRMAKO שמאפשרת למנהלים לבנות שפה משותפת בין ההנהלה לאנשי השטח, לעבור מניהול תגובתי לניהול יזמי, ולאפשר לצוות לפעול בעצמאות בהתאם לכיוון האסטרטגי." } }, { "@type": "Question", "name": "מה נלמד בוובינאר גיוס השקעות של NIRMAKO?", "acceptedAnswer": { "@type": "Answer", "text": "וובינאר גיוס ההשקעות של NIRMAKO מכסה את כל שלבי גיוס ההון ליזמים: בניית סיפור המשקיע, הכנת פיץ' מנצח, הבנת תנאי השקעה, ניהול תהליך ה-due diligence, וסגירת הסבב. הוובינאר מופעל על ידי תוכנית XCELERATOR ומיועד למייסדי סטארטאפים ויזמים בשלב המוקדם." } }, { "@type": "Question", "name": "האם ל-NIRMAKO יש פודקאסט?", "acceptedAnswer": { "@type": "Answer", "text": "כן. פודקאסט NIRMAKO זמין בספוטיפיי וניתן להאזין לו ישירות מדף הוובינאר BCP. הפודקאסט מכסה נושאי אסטרטגיה עסקית, BCP, מנהיגות, וצמיחה עסקית — בחינם לחלוטין." } }, { "@type": "Question", "name": "Does NIRMAKO have a podcast?", "acceptedAnswer": { "@type": "Answer", "text": "Yes. The NIRMAKO Business Podcast is available on Spotify and can be listened to directly from the BCP webinar page at nirmako.com/bcp-webinar. Topics include business strategy, continuity planning, leadership, and growth frameworks." } } ] } { "@context": "https://schema.org", "@type": "WebPage", "@id": "https://nirmako.com/webinars/", "name": "וובינארים עסקיים והקלטות וובינארים | NIRMAKO", "description": "וובינארים עסקיים והקלטות וובינארים של NIRMAKO לבעלי עסקים, מנכ\"לים ומנהלים.", "url": "https://nirmako.com/webinars/", "inLanguage": "he", "isPartOf": {"@type": "WebSite", "url": "https://nirmako.com"}, "speakable": { "@type": "SpeakableSpecification", "cssSelector": [".workshop-summary", ".key-facts"] }, "publisher": { "@type": "Organization", "name": "NIRMAKO", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": "https://www.youtube.com/@Highjump-TAB-Xcelerated" } } { "@context": "https://schema.org", "@type": "PodcastSeries", "name": "NIRMAKO Business Podcast", "description": "פודקאסט עסקי של NIRMAKO: אסטרטגיה, מנהיגות, BCP, צמיחה עסקית, וייעוץ עמיתים TAB. זמין בספוטיפיי.", "url": "https://open.spotify.com/show/2lnfdW6asi2vq0L5YUSEkv", "author": {"@type": "Organization", "name": "NIRMAKO Business Consulting", "url": "https://nirmako.com"}, "publisher": {"@type": "Organization", "name": "NIRMAKO Business Consulting", "url": "https://nirmako.com"}, "inLanguage": ["he", "en"], "isAccessibleForFree": true, "sameAs": ["https://open.spotify.com/show/2lnfdW6asi2vq0L5YUSEkv"] } { "@context": "https://schema.org", "@type": "Organization", "name": "NIRMAKO Business Consulting", "url": "https://nirmako.com", "logo": { "@type": "ImageObject", "url": "https://nirmako.com/%d7%9c%d7%95%d7%92%d7%95-nirmako/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa/%d7%90%d7%99%d7%9e%d7%95%d7%9f-%d7%9e%d7%9b%d7%99%d7%a8%d7%95%d7%aa-2/" }, "image": "https://nirmako.com/wp-content/uploads/2026/03/cf5f8ed6-9e35-4227-b07b-3b5bc2dc64e5.webp", "sameAs": [ "https://www.facebook.com/NIRMAKOCOACH", "https://www.instagram.com/NIRMAKO", "https://www.linkedin.com/in/nirmakovsky", "https://www.youtube.com/@Highjump-TAB-Xcelerated", "https://twitter.com/NIRMAKO", "https://open.spotify.com/show/2lnfdW6asi2vq0L5YUSEkv" ], "contactPoint": { "@type": "ContactPoint", "contactType": "customer support", "telephone": "+972-52-254-9504", "availableLanguage": ["Hebrew", "English"] } }
NIRMAKO – וובינארים עסקיים והקלטות וובינארים
וובינארים עסקיים

וובינארים עסקיים והקלטות וובינארים

וובינארים עסקיים והקלטות וובינארים של NIRMAKO מעניקים לבעלי עסקים, מנכ״לים ומנהלים תוכן פרקטי בנושאי אסטרטגיה עסקית, AI, HR, BCP, חזון עסקי וגיוס השקעות.

וובינארים עסקיים של NIRMAKO — 11 הקלטות וובינארים חינמיות לבעלי עסקים, מנכ״לים ויזמים. לפיכך, בעמוד זה תמצאו וובינארים עסקיים בנושאי אסטרטגיה עסקית (STRATPRO), חזון עסקי, בינה מלאכותית (AI), גיוס השקעות (XCELERATOR), משאבי אנוש (HR), קואצ'ינג מנטלי ותכנון המשכיות עסקית (BCP). כמו כן, כל הוובינארים העסקיים זמינים לצפייה חינם לאחר השארת שם ואימייל.

וובינארים עסקיים קרובים

רישום פתוח
יום ג׳, 3 במרץ 2026 | 09:00 – 10:00 עברית BCP

וובינר BCP – תכנון המשכיות עסקית

כיצד בונים תוכנית עסקית מוצקה שמחזיקה מעמד בזמן אי-ודאות? בוובינאר זה נלמד את מתודולוגיית BCP של NIRMAKO — מיפוי סיכונים, בניית תרחישי חירום, ויצירת תוכנית פעולה ברורה לניהול משברים. לכן, הוובינאר זה מומלץ לכל בעל עסק ומנהל.

💻 זום – ללא עלות  |  ⏱ שעה אחת בלבד

🎙 האזינו לפודקאסט NIRMAKO – BCP ועוד

הוובינאר הוא בחינם ופתוח לבעלי עסקים ומנהלים. לאחר ההרשמה יישלח לינק לזום.

הרשמה לוובינאר ←

📋 כל ההקלטות בפלייליסט אחד

11 סרטונים, כל הנושאים, ללא עלות — ערוץ NIRMAKO ביוטיוב

לפלייליסט המלא ביוטיוב

למה לצפות בוובינארים העסקיים של NIRMAKO?

הוובינארים העסקיים של NIRMAKO נבנו עבור בעלי עסקים, מנכ״לים, יזמים ומנהלים שרוצים כלים מעשיים לצמיחה. בנוסף לכך, בעמוד זה תמצאו 11 הקלטות וובינארים עסקיים בנושאי אסטרטגיה, חזון, AI, גיוס השקעות, משאבי אנוש, קואצ'ינג מנטלי והמשכיות עסקית — לצד וובינארים עסקיים קרובים. לכן, כל ההקלטות זמינות לצפייה חינם לאחר השארת פרטים.
11 הקלטות וובינארים עסקיים
חינם כל הוובינארים העסקיים ללא עלות
6+ נושאים: AI · HR · BCP · STRATPRO
TAB ייעוץ עמיתים למנכ״לים ובעלי עסקים

וובינארים עסקיים של NIRMAKO מעניקים לבעלי עסקים, מנכ״לים ויזמים כלים מעשיים לצמיחה. בעמוד זה תמצאו 11 הקלטות וובינארים עסקיים: אסטרטגיה עסקית (STRATPRO), חזון עסקי, בינה מלאכותית לעסקים (AI), גיוס השקעות (XCELERATOR), HR Business Partner, קואצ'ינג מנטלי למנהלים, שביעות רצון עובדים ותכנון המשכיות עסקית (BCP). לפיכך, כל הוובינארים העסקיים פתוחים לרישום חינם ולצפייה ללא עלות. בנוסף, ניתן לצפות בכל הקלטות הוובינארים ישירות בערוץ NIRMAKO ביוטיוב. לחצו על "לוח ייעוץ עמיתים TAB" כדי ללמוד על מתודולוגיית הייעוץ.

הקלטות וובינארים עסקיים

ארכיון — 11 הקלטות
🎬
עקרונות מפתח בניהול אסטרטגי ומודל BLUEPRINT הקלטת הוובינאר תהיה זמינה בקרוב — השאר פרטים לקבלת עדכון
פברואר 2026 עברית BLUEPRINT · STRATPRO

עקרונות מפתח בניהול אסטרטגי ומודל BLUEPRINT

כיצד מנהל מנכ״ל חברת בת ישראלית של תאגיד גלובלי את המתח בין יעדים גלובליים לניהול מקומי? בוובינאר זה חלק אבנר ברק, מנכ״ל Phoenix Contact Israel, בחוויותיו האישיות מתהליך BLUEPRINT+STRATPRO של NIRMAKO. לפני התהליך, הניהול היה תגובתי — חסרה מסגרת ברורה שתאפשר לצוות לפעול בעצמאות. כמו כן, חסרה שפה משותפת בין ההנהלה לאנשי השטח. לפיכך, מודל BLUEPRINT מאפשר מעבר מניהול תגובתי לניהול יזמי אמיתי.

🎤 אבנר ברק — מנכ״ל Phoenix Contact Israel | חברה גרמנית בינלאומית (1923), פועלת בישראל מ-2006, קדימה-צורן

לפיכך, הקלטה מלאה זמינה לצפייה — חינם לאחר השארת פרטים

💰
גיוס השקעות – כיצד מציגים, מנהלים משא ומתן וסוגרים עסקה הקלטת הוובינאר תהיה זמינה בקרוב — השאר פרטים לקבלת עדכון
מרץ 2026 עברית XCELERATOR · גיוס השקעות

גיוס השקעות – כיצד מציגים, מנהלים משא ומתן וסוגרים עסקה

מאסטרקלאס פרקטי ליזמים ומייסדי סטארטאפים: בניית סיפור המשקיע, הכנת פיץ' מנצח, הבנת תנאי השקעה (term sheet), ניהול תהליך ה-due diligence, וסגירת הסבב. בנוסף, הוובינאר מופעל בהנחיית תוכנית XCELERATOR של NIRMAKO — עבור יזמים שרוצים לגייס את הסבב הראשון שלהם בצורה נכונה.

כמו כן, הסרטון המלא זמין לצפייה — חינם לאחר השארת פרטים

וובינארים עסקיים של NIRMAKO – Business Growth Mindset
NIRMAKO עברית/English Mindset

Business Growth Mindset – חשיבת צמיחה עסקית

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

בנוסף, הסרטון פתוח לכולם — לחץ, השאר פרטים ותועבר לסרטון ישירות

NIRMAKO עברית/English 10x Strategy

10x – לחשוב גדול, לצמוח פי עשרה

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

לכן, ניתן לצפות בסרטון המלא — חינם לאחר הרשמה קצרה

וובינארים עסקיים של NIRMAKO – The People Around You
NIRMAKO עברית/English TAB · Peer Advisory

The People Around You – האנשים סביבך קובעים את עתידך

חמשת האנשים הקרובים אליך קובעים את תוצאות העסק שלך. לכן, גישת NIRMAKO לבניית לוח יועצים, ייעוץ עמיתים, וסביבה שמקדמת — לא מגבילה — היא קריטית לצמיחה. זהו הבסיס של מתודולוגיית TAB ישראל.

כתוצאה מכך, כניסה לסרטון המלא חינמית — לאחר השארת פרטים בלבד

וובינארים עסקיים של NIRMAKO – AI Strategy for Business Leaders
NIRMAKO עברית/English AI Strategy

AI Strategy – אסטרטגיית בינה מלאכותית לעסקים

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

לשם כך, הסרטון המלא זמין — ניתן לצפות ללא עלות לאחר מילוי טופס קצר

וובינארים עסקיים של NIRMAKO – Business Vision
NIRMAKO עברית/English STRATPRO · Vision

Vision – בניית חזון עסקי שמניע תוצאות

הגדרת חזון עסקי משכנע שמיישר צוותים ומאיץ ביצוע אסטרטגי. בהתאם לכך, מתודולוגיית STRATPRO של NIRMAKO מיועדת למנכ״לים וצוותי הנהלה. כך ניתן לענות על שאלת היסוד: מדוע לא מספיק "להצליח" ואיך מגדירים גדולה?

בשל כך, הקלטת הוובינאר זמינה — חינם לאחר השארת שם ואימייל

וובינארים עסקיים של NIRMAKO – HR Business Partners
NIRMAKO עברית/English HR · People

HR Business Partners – HR כשותף עסקי אסטרטגי

כיצד בונים פונקציית HR שהיא שותפה אסטרטגית — לא פונקציה אדמיניסטרטיבית. לשם כך, NIRMAKO מציג מסגרות לתיאום אסטרטגיית HR עם יעדי העסק. בנוסף, נדון בפיתוח כשרונות ועיצוב ארגוני שמאפשר צמיחה.

לפיכך, ניתן לצפות בהקלטה המלאה — ללא עלות לאחר השארת פרטי קשר

וובינארים עסקיים של NIRMAKO – HR Business Partner Role
NIRMAKO עברית/English HR · Deep Dive

HR Business Partner – צלילה עמוקה לתפקיד

חקירה מעמיקה של תפקיד ה-HR Business Partner: כשרונות, כלים ומדדי ביצוע (KPI). כמו כן, נבחן כיצד מתפתחים מ-HR Generalist לשותף אסטרטגי אמיתי בארגונים גדלים.

בהתאם לכך, סשן מלא ומוקלט — כניסה בחינם לאחר הרשמה קצרה

וובינארים עסקיים של NIRMAKO – Mental Coaching for Business Leaders
NIRMAKO עברית/English Mental Coaching

Mental Coaching – קואצ'ינג מנטלי למנהלים ויזמים

קואצ'ינג ביצועים מנטלי למנכ״לים ויזמים: ניהול לחץ, בניית חוסן וקבלת החלטות בתנאי אי-ודאות. בנוסף לכך, נלמד הרגלי ביצוע שיא לבעלי עסקים — כלי העוצמה הפנימית שמשלימים אסטרטגיה טובה.

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

וובינארים עסקיים של NIRMAKO – Employee Satisfaction
NIRMAKO עברית/English Employee Satisfaction

Employee Satisfaction – שימור כשרונות בעידן הפוסט-קורונה

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

לשם כך, השאר פרטים וצפה בהקלטה המלאה — ישירות וחינם

שאלות נפוצות על וובינארים עסקיים של NIRMAKO

כל מה שצריך לדעת לפני הרשמה לוובינאר עסקי

האם הוובינארים של NIRMAKO בחינם?
כן, בהחלט. כל הוובינארים וההקלטות של NIRMAKO זמינים ללא עלות לאחר השארת שם ואימייל. לפיכך, NIRMAKO מאמין שכל בעל עסק מגיע לגישה לידע מקצועי — ללא חסמים. בנוסף, אין צורך בתשלום או מנוי כדי לצפות בהקלטה.
אילו נושאים מכסים הוובינארים העסקיים?
בין הנושאים: חשיבת צמיחה עסקית, 10x thinking, אסטרטגיית AI לעסקים, בניית חזון (STRATPRO), HR Business Partner, שביעות רצון עובדים, קואצ'ינג מנטלי, לוחות ייעוץ עמיתים (TAB), גיוס השקעות ליזמים (XCELERATOR), תכנון המשכיות עסקית (BCP), ועקרונות ניהול אסטרטגי עם מודל BLUEPRINT. לכן, בין אם אתה מנכ״ל ותיק ובין אם יזם בתחילת הדרך — תמצא כאן תוכן רלוונטי.

שאלות על מתודולוגיות NIRMAKO

מהו מודל BLUEPRINT?
מודל BLUEPRINT הוא מסגרת ניהול אסטרטגי של NIRMAKO שמאפשרת מעבר מניהול תגובתי לניהול יזמי. כמו כן, המודל בונה שפה משותפת בין ההנהלה לאנשי השטח ומאפשר לצוות לפעול בעצמאות בהתאם לכיוון האסטרטגי. הוצג בוובינאר עם אבנר ברק, מנכ״ל Phoenix Contact Israel.
מה נלמד בוובינאר גיוס השקעות?
וובינאר גיוס ההשקעות של NIRMAKO מכסה בניית סיפור המשקיע, הכנת פיץ' מנצח, הבנת תנאי השקעה (term sheet), ניהול תהליך ה-due diligence, וסגירת הסבב. בנוסף לכך, הוובינאר מיועד ליזמים ומייסדי סטארטאפים שרוצים לגייס את הסבב הראשון שלהם נכון. כמו כן, ההקלטה זמינה לצפייה חינם לאחר השארת פרטים.
כיצד מקבלים גישה להקלטת וובינאר עסקי?
ראשית, לוחצים על "צפייה בהקלטה". לאחר מכן, משאירים שם ואימייל בטופס הקצר, ומיד מועברים לסרטון ביוטיוב. בנוסף, ניתן לצפות בכל ההקלטות ישירות בערוץ NIRMAKO ביוטיוב ללא צורך בהרשמה נוספת.
האם ל-NIRMAKO יש פודקאסט?
כן. פודקאסט NIRMAKO זמין בספוטיפיי וניתן להאזין לו ישירות בדף וובינאר BCP. בנוסף לכך, תכני הפודקאסט עוסקים באסטרטגיה עסקית, תכנון המשכיות, מנהיגות וצמיחה — כולם ללא עלות. לפיכך, הפודקאסט משלים את הוובינארים העסקיים בצורה מעולה.

Upcoming Business Webinars

Registration Open
Tuesday, March 3, 2026 | 09:00 – 10:00 English BCP

BCP Webinar – Business Continuity Planning

How do you build a solid business plan that holds up under uncertainty? In this webinar we will learn NIRMAKO's BCP methodology — risk mapping, building emergency scenarios, and creating a clear action plan for crisis management.

💻 Zoom – Free  |  ⏱ One hour

🎙 Listen to the NIRMAKO Podcast – BCP & More

Free webinar open to business owners and managers. Held on Zoom. Link sent after registration.

Register Now →

▶ Full Playlist – All 11 Recordings

Every NIRMAKO business webinar session in one place — free on YouTube.

Watch Full Playlist on YouTube

Past Business Webinar Recordings

Archive — 11 Recordings
🎬
Strategic Management Principles & the BLUEPRINT Model Recording coming soon — leave your details to be notified
February 2026 Hebrew BLUEPRINT · STRATPRO

Strategic Management Principles & the BLUEPRINT Model

How does a CEO of an Israeli subsidiary of a global corporation manage the tension between global targets and local execution? Avner Barak, CEO of Phoenix Contact Israel, shared his personal experience with NIRMAKO's BLUEPRINT+STRATPRO process — and how the model enabled his team to move from reactive management to entrepreneurial leadership.

🎤 Avner Barak — CEO, Phoenix Contact Israel | German multinational (est. 1923), Israel since 2006, Kadima-Tzoran

Therefore, the full recording is free to watch — just leave your details below

💰
Raising Investments – How to Pitch, Negotiate & Close Recording coming soon — leave your details to be notified
March 2026 English XCELERATOR · Fundraising

Raising Investments – How to Pitch, Negotiate & Close

A practical masterclass for startup founders and entrepreneurs: building your investor story, structuring a winning deck, understanding term sheets, navigating due diligence, and closing your round. Hosted by NIRMAKO's XCELERATOR program — for founders who want to raise their first round the right way.

In addition, the full recording is available at no cost — leave your details to watch

NIRMAKO Business Webinars – Business Growth Mindset
NIRMAKO English/Hebrew Mindset

Business Growth Mindset

How business owners shift from a fixed mindset to a growth mindset that drives measurable results. NIRMAKO's framework for entrepreneurial thinking, resilience, and sustained business growth.

This full recording is free to watch — leave your details to access it immediately.

NIRMAKO English/Hebrew 10x Strategy

10x Business Growth – Think Bigger

Why aiming for 10x growth forces better strategic decisions than incremental improvement. Practical tools for CEOs and business owners who want to change the scale of their business — not just improve it.

Furthermore, the full recording is available at no cost — simply leave your details below.

NIRMAKO Business Webinars – The People Around You
NIRMAKO English/Hebrew TAB · Peer Advisory

The People Around You – Your Inner Circle Defines Your Results

Why the five people closest to you define your business outcomes. NIRMAKO's approach to board building, peer advisory, and surrounding yourself with the right advisors and mentors. The foundation of TAB Israel's methodology.

In addition, you can watch the complete recording for free after leaving your details.

NIRMAKO Business Webinars – AI Strategy for Business Leaders
NIRMAKO English/Hebrew AI Strategy

AI Strategy for Business Leaders

How CEOs and business owners can build a practical AI strategy: identifying AI opportunities, managing implementation risk, and creating competitive advantage through intelligent automation and data-driven decision making.

Therefore, the full session is free to watch — just leave your name and email.

NIRMAKO Business Webinars – Business Vision
NIRMAKO English/Hebrew STRATPRO · Vision

Business Vision – How to Build a Vision That Drives Results

Defining a compelling business vision that aligns teams and accelerates strategy execution. NIRMAKO's STRATPRO vision-building methodology for CEOs and leadership teams — why "succeed" isn't enough and how to define greatness.

Accordingly, this recording is free to access — leave your details to watch it now.

NIRMAKO Business Webinars – HR Business Partners
NIRMAKO English/Hebrew HR · People

HR Business Partners – Strategic HR Management

How to build HR as a strategic business partner rather than an administrative function. Frameworks for aligning HR strategy with business goals, talent development, and organizational design that enables growth.

Moreover, the full webinar is available at no cost after leaving your details.

NIRMAKO Business Webinars – HR Business Partner Role
NIRMAKO English/Hebrew HR · Deep Dive

HR Business Partner Role – Deep Dive

An in-depth exploration of the HR Business Partner role: competencies, tools, KPIs, and how to evolve from HR generalist to true strategic partner in growing organizations.

As a result, the full session is free to watch — leave your details below to access it.

NIRMAKO Business Webinars – Mental Coaching for Business Leaders
NIRMAKO English/Hebrew Mental Coaching

Mental Coaching for Business Leaders

Mental performance coaching for CEOs and entrepreneurs: managing pressure, building resilience, decision-making under uncertainty, and peak performance habits for business leaders.

Consequently, the full recording is available — free after leaving your details.

NIRMAKO Business Webinars – Employee Satisfaction
NIRMAKO English/Hebrew Employee Satisfaction

Employee Satisfaction – How to Retain Top Talent

Practical frameworks for measuring and improving employee satisfaction: engagement surveys, recognition systems, career path design, and creating a culture where top performers stay and grow.

Additionally, the complete recording is free to watch after leaving your details.

Frequently Asked Questions – NIRMAKO Business Webinars

Are NIRMAKO business webinars free?
Yes. All NIRMAKO business webinars and recordings are available at no cost after leaving your name and email. This is NIRMAKO's permanent policy — every business owner deserves access to professional-grade knowledge.
What topics do NIRMAKO business webinars cover?
Business growth mindset, 10x thinking, AI strategy for business leaders, business vision (STRATPRO), HR business partnership, employee satisfaction and retention, mental coaching for executives, peer advisory boards (TAB), raising investments for startups (XCELERATOR), business continuity planning (BCP), and strategic management with the BLUEPRINT model.
What does the Raising Investments webinar cover?
NIRMAKO's Raising Investments webinar covers every stage of the fundraising journey for founders: building your investor story, structuring a winning pitch deck, understanding term sheets, navigating due diligence, and closing your funding round. It is hosted by the XCELERATOR program and aimed at early-stage startup founders.
What is the BLUEPRINT model?
BLUEPRINT is NIRMAKO's strategic management framework that enables a shift from reactive management to entrepreneurial leadership. It builds a shared language between management and field teams, allowing the organization to operate with autonomy while staying aligned with strategic direction.
How do I access a business webinar recording?
Click any "Watch Recording" button, leave your name and email in the short form, and you will be redirected immediately to the full video on YouTube. You can also watch all recordings directly on the NIRMAKO YouTube channel.
Does NIRMAKO have a podcast?
Yes. The NIRMAKO Business Podcast is available on Spotify and can be listened to directly from the BCP webinar page. Topics include business strategy, continuity planning, leadership, and growth frameworks — completely free.
let currentVideoURL = ''; let currentVideoTitle = ''; function openModal(url, title) { currentVideoURL = url; currentVideoTitle = title; document.getElementById('modalTitle').textContent = '▶ ' + title; document.getElementById('modalSubtitle').textContent = 'השאר פרטים ותועבר ישירות לסרטון'; document.getElementById('modalFormWrap').style.display = 'block'; document.getElementById('modalSuccess').style.display = 'none'; document.getElementById('m-name').value = ''; document.getElementById('m-email').value = ''; document.getElementById('m-phone').value = ''; document.getElementById('leadModal').classList.add('open'); } function closeModal() { document.getElementById('leadModal').classList.remove('open'); } document.getElementById('leadModal').addEventListener('click', function(e) { if (e.target === this) closeModal(); }); async function submitLead() { const name = document.getElementById('m-name').value.trim(); const email = document.getElementById('m-email').value.trim(); const phone = document.getElementById('m-phone').value.trim(); if (!name || !email) { alert('אנא מלא שם ואימייל'); return; } const btn = document.getElementById('modalSubmitBtn'); btn.disabled = true; btn.textContent = 'שולח...'; try { await fetch('https://api.web3forms.com/submit', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ access_key: 'd72800b1-837f-4421-98bc-836b1e5933a6', name, email, phone, message: 'וובינאר: ' + currentVideoTitle, subject: 'NIRMAKO Webinar Lead – ' + currentVideoTitle }) }); } catch(e) {} document.getElementById('modalFormWrap').style.display = 'none'; document.getElementById('successTitle').textContent = 'מעביר אותך לסרטון…'; document.getElementById('successDesc').textContent = 'תודה! החלון יפתח בלשונית חדשה. אם לא נפתח אוטומטית לחץ כאן:'; document.getElementById('successLink').href = currentVideoURL; document.getElementById('modalSuccess').style.display = 'block'; window.open(currentVideoURL, '_blank'); btn.disabled = false; btn.textContent = 'צפה בהקלטה ▶'; } function playInline(el, videoId) { const wrap = document.createElement('div'); wrap.className = 'video-embed'; wrap.innerHTML = ''; el.parentNode.replaceChild(wrap, el); return false; } function scrollToSection(id) { const el = document.getElementById(id); if (el) el.scrollIntoView({ behavior: 'smooth', block: 'start' }); document.querySelectorAll('.lang-btn').forEach(b => b.classList.remove('active')); event.target.classList.add('active'); } function trackPlaylistClick(lang) { // Analytics hook — extend as needed }