:root {
--nirmako-blue: #1e3a5f;
--nirmako-blue-light: #2a5082;
--nirmako-blue-dark: #152a45;
--nirmako-gold: #c9a227;
--nirmako-gold-light: #d4b84a;
--nirmako-gold-dark: #a88920;
--text-dark: #2c3e50;
--text-light: #555;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
direction: rtl;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Section */
.hero-section {
background: linear-gradient(135deg, var(--nirmako-blue) 0%, var(--nirmako-blue-light) 100%);
color: white;
padding: 60px 0;
text-align: center;
position: relative;
}
.hero-section::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, var(--nirmako-gold), var(--nirmako-gold-light), var(--nirmako-gold));
}
.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap;
}
.hero-text {
flex: 1;
min-width: 300px;
text-align: right;
}
.hero-image {
flex: 1;
min-width: 300px;
}
.hero-image img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
border: 3px solid var(--nirmako-gold);
}
.hero-title {
font-size: 3rem;
margin-bottom: 20px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 30px;
opacity: 0.9;
}
.cta-button {
display: inline-block;
background: var(--nirmako-gold);
color: var(--nirmako-blue-dark);
padding: 15px 30px;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1rem;
margin: 10px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(201, 162, 39, 0.4);
}
.cta-button:hover {
background: var(--nirmako-gold-light);
transform: translateY(-2px);
box-shadow: 0 7px 20px rgba(201, 162, 39, 0.6);
}
.cta-button.secondary {
background: var(--bg-white);
color: var(--nirmako-blue);
box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}
.cta-button.secondary:hover {
background: var(--bg-light);
box-shadow: 0 7px 20px rgba(255,255,255,0.5);
}
/* Content Sections */
.content-section {
padding: 60px 0;
background: var(--bg-white);
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
color: var(--nirmako-blue);
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: var(--nirmako-gold);
margin: 15px auto 0;
border-radius: 2px;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
margin-bottom: 60px;
}
.service-card {
background: var(--bg-white);
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease;
border-top: 4px solid var(--nirmako-gold);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.service-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 20px;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--nirmako-blue);
}
.service-card p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 20px;
}
/* Strategy DNA Section */
.strategy-dna-section {
padding: 60px 0;
background: var(--bg-white);
}
.section-intro {
text-align: center;
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 40px;
margin-top: -30px;
}
.internal-links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}
.internal-link-card {
display: block;
background: var(--bg-light);
padding: 25px;
border-radius: 12px;
text-decoration: none;
color: var(--text-dark);
transition: all 0.3s ease;
border: 2px solid transparent;
position: relative;
}
.internal-link-card:hover {
transform: translateY(-5px);
border-color: var(--nirmako-gold);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.internal-link-card.cornerstone {
background: linear-gradient(135deg, var(--nirmako-blue) 0%, var(--nirmako-blue-light) 100%);
color: white;
grid-column: span 2;
}
.internal-link-card.cornerstone:hover {
border-color: var(--nirmako-gold);
}
.internal-link-card.cornerstone h3 {
color: white;
}
.internal-link-card.cornerstone p {
color: rgba(255,255,255,0.9);
}
.link-badge {
display: inline-block;
background: var(--nirmako-gold);
color: var(--nirmako-blue-dark);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
margin-bottom: 10px;
}
.internal-link-card h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--nirmako-blue);
}
.internal-link-card p {
font-size: 0.95rem;
color: var(--text-light);
margin: 0;
line-height: 1.5;
}
/* StratPro Section */
.stratpro-section {
background: var(--bg-light);
padding: 60px 0;
}
.stratpro-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.stratpro-text h2 {
font-size: 2.2rem;
margin-bottom: 20px;
color: var(--nirmako-blue);
}
.stratpro-text p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-light);
margin-bottom: 30px;
}
.stratpro-image {
text-align: center;
}
.stratpro-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
border: 3px solid var(--nirmako-gold);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* Video Section */
.video-section {
padding: 60px 0;
background: var(--bg-white);
}
.video-wrapper {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
border: 3px solid var(--nirmako-gold);
max-width: 860px;
margin: 0 auto;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.video-caption {
text-align: center;
margin-top: 16px;
color: var(--text-light);
font-size: 1rem;
}
/* Team Section */
.team-section {
padding: 60px 0;
background: var(--bg-white);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}
.team-member {
text-align: center;
background: var(--bg-light);
padding: 30px;
border-radius: 15px;
transition: transform 0.3s ease;
}
.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.team-member img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
border: 5px solid var(--nirmako-blue);
}
.team-member h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--nirmako-blue);
}
.team-member p {
color: var(--text-light);
font-size: 0.9rem;
line-height: 1.6;
}
/* Resources Section */
.resources-section {
background: linear-gradient(135deg, var(--nirmako-blue) 0%, var(--nirmako-blue-light) 100%);
color: white;
padding: 60px 0;
text-align: center;
}
.resources-section h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}
.resources-section > .container > p {
font-size: 1.2rem;
opacity: 0.9;
}
.resources-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-top: 40px;
}
.resource-item {
background: rgba(255,255,255,0.1);
padding: 30px;
border-radius: 10px;
backdrop-filter: blur(10px);
border: 1px solid rgba(201, 162, 39, 0.3);
transition: all 0.3s ease;
}
.resource-item:hover {
background: rgba(255,255,255,0.15);
border-color: var(--nirmako-gold);
}
.resource-item h3 {
margin-bottom: 15px;
font-size: 1.2rem;
color: var(--nirmako-gold);
}
.resource-item p {
margin-bottom: 20px;
opacity: 0.9;
}
/* Footer */
.footer {
background: var(--nirmako-blue-dark);
color: white;
text-align: center;
padding: 40px 0;
}
.footer p {
margin: 10px 0;
opacity: 0.9;
}
.footer-brand {
color: var(--nirmako-gold);
font-weight: bold;
font-size: 1.2rem;
}
.footer-contact {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-contact a {
color: var(--nirmako-gold);
text-decoration: none;
margin: 0 15px;
}
.footer-contact a:hover {
text-decoration: underline;
}
.footer-social {
margin-top: 15px;
}
.footer-social a {
color: var(--nirmako-gold);
text-decoration: none;
margin: 0 10px;
font-size: 0.95rem;
}
.footer-social a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
.hero-content { flex-direction: column; }
.hero-text { text-align: center; }
.hero-title { font-size: 2rem; }
.stratpro-content { grid-template-columns: 1fr; text-align: center; }
.team-grid { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: 1fr; }
.section-title { font-size: 2rem; }
.internal-links-grid { grid-template-columns: 1fr; }
.internal-link-card.cornerstone { grid-column: span 1; }
}
{
"@context": "https://schema.org",
"@type": "VideoObject",
"@id": "https://nirmako.com/להבעיר-את-כח-הצוות-stratpro/#video",
"name": "ייעוץ אירגוני | ניר מקובסקי | אימון מנכלים | פיתוח הנהלה | מה תקבלו מ STRATPRO",
"description": "ייעוץ אירגוני | ניר מקובסקי | אימון מנכלים | פיתוח הנהלה | מה תקבלו מ STRATPRO\nhttps://nirmako.com/%d7%9c%d7%94%d7%91%d7%a2%d7%99%d7%a8-%d7%90%d7%aa-%d7%9b%d7%97-%d7%94%d7%a6%d7%95%d7%95%d7%aa-stratpro/\nייעוץ אירגוני | ניר מקובסקי | אימון מנכלים | פיתוח הנהלה | מה תקבלו מ STRATPRO\n\nלרשימת כתבות בנושא ייעוץ עסקי , צמיחה בעידן פוסט קורונה והתמודדות עם משברים\nhttps://www.funder.co.il/article/107878\nhttps://www.web-mine.co.il/economics-and-business/business-crises-tips/\nhttps://tlvtimes.co.il/%d7%98%d7%95%d7%a8%d7%99%d7%9d/%d7%9e%d7%93%d7%95%d7%a2-%d7%a6%d7%9e%d7%93-%d7%94%d7%9e%d7%99%d7%9c%d7%99%d7%9d-%d7%99%d7%a6%d7%99%d7%90%d7%94-%d7%9e%d7%9e%d7%a9%d7%91%d7%a8-%d7%94%d7%95%d7%a4%d7%9a-%d7%90%d7%aa-%d7%94%d7%9e/\nhttps://www.mako.co.il/study-career-career/articles/Article-26c9689de8b6271026.htm",
"thumbnailUrl": [
"https://i.ytimg.com/vi/wcCecwT3ORk/maxresdefault.jpg",
"https://i.ytimg.com/vi/wcCecwT3ORk/hqdefault.jpg",
"https://i.ytimg.com/vi/wcCecwT3ORk/mqdefault.jpg",
"https://img.youtube.com/vi/wcCecwT3ORk/sddefault.jpg"
],
"uploadDate": "2022-10-30T07:00:08Z",
"duration": "PT3M14S",
"embedUrl": "https://www.youtube.com/embed/wcCecwT3ORk",
"contentUrl": "https://www.youtube.com/watch?v=wcCecwT3ORk",
"url": "https://www.youtube.com/watch?v=wcCecwT3ORk",
"inLanguage": "he",
"isPartOf": {
"@type": "WebPage",
"@id": "https://nirmako.com/להבעיר-את-כח-הצוות-stratpro/"
},
"publisher": {
"@type": "Organization",
"name": "NIRMAKO – Nir Makovsky",
"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/"
},
"sameAs": [
"https://www.youtube.com/@Highjump-TAB-Xcelerated"
]
},
"potentialAction": {
"@type": "WatchAction",
"target": "https://www.youtube.com/watch?v=wcCecwT3ORk"
}
}
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "NIRMAKO",
"alternateName": ["נירמקו", "Nirmako Consulting", "TAB Israel"],
"description": "NIRMAKO היא חברת ייעוץ עסקי מובילה בישראל המתמחה בשירותי TAB (The Alternative Board), אימון מנהלים, תכנון אסטרטגי STRATPRO ופיתוח ארגוני.",
"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/2021/06/COACHING.jpg",
"telephone": "+972-52-254-9504",
"email": "
[email protected] ",
"address": {
"@type": "PostalAddress",
"streetAddress": "הסיבים 49",
"addressLocality": "פתח תקוה",
"postalCode": "4959504",
"addressCountry": "IL"
},
"sameAs": [
"https://www.facebook.com/NIRMAKOCOACH",
"https://www.instagram.com/NIRMAKO",
"https://twitter.com/NIRMAKO",
"https://www.pinterest.com/NIRMAKO",
"https://www.linkedin.com/company/nirmakovsky",
"https://www.youtube.com/@Highjump-TAB-Xcelerated"
]
}
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "מה זה TAB - The Alternative Board?",
"acceptedAnswer": {
"@type": "Answer",
"text": "TAB (The Alternative Board) הוא לוח ייעוץ עמיתים למנכלים ובעלי עסקים. בפגישות חודשיות, קבוצה של 8-12 בעלי עסקים שאינם מתחרים נפגשים לדון באתגרים עסקיים, לקבל משוב ולשתף בפתרונות. NIRMAKO היא נציגת TAB בישראל."
}
},
{
"@type": "Question",
"name": "מה זה STRATPRO ואיך זה עובד?",
"acceptedAnswer": {
"@type": "Answer",
"text": "STRATPRO היא מתודולוגיית תכנון אסטרטגי מתקדמת של NIRMAKO. התהליך כולל אבחון ארגוני מקיף, הגדרת חזון ויעדים, בניית תוכנית פעולה מפורטת עם KPIs, וליווי ביישום."
}
},
{
"@type": "Question",
"name": "למי מתאים אימון מנהלים של NIRMAKO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "אימון מנהלים מתאים למנכלים, בעלי עסקים ומנהלים בכירים שרוצים לשפר את יכולות ההנהגה שלהם, לקבל החלטות טובות יותר ולהוביל את הארגון לתוצאות."
}
},
{
"@type": "Question",
"name": "כמה זמן לוקח לראות תוצאות מתהליך ייעוץ עסקי?",
"acceptedAnswer": {
"@type": "Answer",
"text": "תוצאות ראשוניות ניתן לראות כבר לאחר 2-3 חודשים. תוצאות משמעותיות בביצועים העסקיים נראות בדרך כלל לאחר 6-12 חודשים."
}
},
{
"@type": "Question",
"name": "מה ההבדל בין יועץ עסקי לקואצ'ר למנהלים?",
"acceptedAnswer": {
"@type": "Answer",
"text": "יועץ עסקי מתמקד בפתרונות ארגוניים ותהליכיים. קואצ'ר למנהלים מתמקד בפיתוח אישי של המנהל. ב-NIRMAKO אנחנו משלבים את שתי הגישות."
}
}
]
}
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "NIRMAKO - הפעל את הכוח של הצוות שלך",
"description": "דף הבית של NIRMAKO - חברת ייעוץ עסקי ואימון מנהלים מובילה בישראל",
"url": "https://nirmako.com/להבעיר-את-כח-הצוות-stratpro/",
"isPartOf": {
"@type": "WebSite",
"name": "NIRMAKO",
"url": "https://nirmako.com"
},
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": [".hero-title", ".hero-subtitle", ".section-title"]
}
}
הפעל את הכוח של הצוות שלך
כך תהפוך חזון לתוצאות עם אסטרטגיות מותאמות אישית לצוות שלך
צפה בסרטון
שאלון אבחון
השירותים שלנו
אימון ארגוני מתקדם
אנחנו מתמקדים בפיתוח יכולות ניהוליות ומקצועיות לצוותים ועובדים פרטניים. כתוצאה מכך, תהליכי העבודה משתפרים ויעילות הארגון עולה במידה ניכרת.
מידע נוסף
ייעוץ אסטרטגי
אנחנו מפתחים אסטרטגיות עסקיות מותאמות לכל ארגון. בנוסף לכך, אנחנו מלווים את תהליך היישום עם תכנון ארוך טווח ותוכניות פעולה יעילות.
מקרה בוחן
כשאסטרטגיה ו-DNA ארגוני נפגשים
כאן תמצאו את המשאבים והכלים שיעזרו לכם לבנות ארגון חזק ויעיל. בנוסף, כל קישור מוביל לתוכן מעמיק שנבנה מניסיון של שנים בשטח.
STRATPRO - מתודולוגיה מתקדמת
מערכת STRATPRO היא מערכת ייעוץ חדשנית המשלבת כלים דיגיטליים מתקדמים עם ייעוץ אישי מותאם. יתר על כן, המתודולוגיה שלנו מבוססת על שנים של ניסיון ומחקר בתחום הפיתוח הארגוני.
לכן, STRATPRO מספקת פתרונות מותאמים אישית לכל ארגון, תוך התחשבות בתרבות הארגונית, האתגרים הייחודיים והיעדים העסקיים. בשל כך, הלקוחות שלנו רואים תוצאות מדידות כבר בשלבים הראשונים.
קרא פרק ראשון
מה תקבלו מ-STRATPRO
ניר מקובסקי מסביר מה תקבלו מ-STRATPRO — ייעוץ ארגוני, אימון מנהלים ופיתוח מנהיגות
הצוות המוביל שלנו
ניר מקובסקי
ניר הוא מייסד ומנכ״ל החברה. בנוסף, הוא מומחה בתחום הפיתוח הארגוני עם ניסיון של למעלה מ-20 שנה בייעוץ ואימון עסקי.
נגה גולסט
נגה היא יועצת ארגונית בכירה ומאמנת מקצועית. כמו כן, היא מתמחה בפיתוח מנהיגות ובניית צוותים חזקים ויעילים.
איציק מרשנד
איציק הוא יועץ אסטרטגי ומומחה בתחום השינוי הארגוני. לכן, הוא מוביל פרויקטים מורכבים של טרנספורמציה עסקית.
דורית חלפון
דורית היא מאמנת ארגונית ומומחית בפיתוח כישורי תקשורת. בנוסף לכך, היא מתמחה בשיפור יעילות הצוות ובניית תרבות ארגונית חיובית.
משאבים נוספים
לכן, גלה כלים ומשאבים שיעזרו לך להוביל את הצוות שלך להצלחה — ולאחר מכן יישם אותם מיד בעסק.
ספר באודיו
האזן לתובנות מהשטח וכך תרחיב את הידע שלך.
Spotify
מקרה בוחן
למד מפרויקטים מוצלחים ובכך קצר את עקומת הלמידה שלך.
קרא עוד
שאלון אבחון
ראשית זהה הזדמנויות לשיפור, ולאחר מכן בנה תוכנית פעולה ממוקדת.
התחל כעת
אימון ארגוני
כמו כן, כאן תמצא פרטים נוספים על שירותי האימון הארגוני שלנו.
למד עוד