:root {
--primary-dark: #0f2744;
--primary-blue: #1a4a7a;
--accent-gold: #c9a227;
--accent-gold-light: #d4af37;
--light-cream: #faf8f5;
--warm-white: #ffffff;
--text-dark: #1a1a1a;
--text-medium: #4a5568;
--border-light: #e8e4df;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Heebo', -apple-system, sans-serif;
line-height: 1.8;
background: var(--warm-white);
color: var(--text-dark);
font-size: 17px;
}
/* NAV */
.nav {
background: var(--warm-white);
padding: 14px 40px;
border-bottom: 1px solid var(--border-light);
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 12px rgba(15,39,68,0.07);
}
.nav-inner {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1100px;
margin: 0 auto;
}
.nav-logo { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); text-decoration: none; }
.nav-logo span { color: var(--accent-gold); }
.nav-cta {
background: var(--accent-gold);
color: var(--primary-dark);
padding: 9px 24px;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--accent-gold-light); transform: translateY(-2px); }
/* WRAPPER */
.page-wrapper {
max-width: 1000px;
margin: 0 auto;
background: var(--warm-white);
box-shadow: 0 0 40px rgba(15,39,68,0.08);
}
/* HERO */
.hero {
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
color: white;
padding: 65px 40px 55px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 70% 20%, rgba(201,162,39,0.12) 0%, transparent 55%);
pointer-events: none;
}
.hero::after {
content: '';
position: absolute; bottom: 0; left: 0; right: 0;
height: 5px; background: var(--accent-gold);
}
.hero-badge {
display: inline-block;
background: rgba(201,162,39,0.2);
border: 1px solid var(--accent-gold);
color: var(--accent-gold);
padding: 7px 22px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 18px;
position: relative; z-index: 1;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.hero h1 {
font-size: 2.6rem;
line-height: 1.25;
margin-bottom: 18px;
position: relative; z-index: 1;
font-weight: 800;
}
.hero h1 span { color: var(--accent-gold); }
.hero-sub {
font-size: 1.15rem;
opacity: 0.88;
max-width: 580px;
margin: 0 auto;
position: relative; z-index: 1;
line-height: 1.7;
}
/* CONTENT AREA */
.content { padding: 50px 40px; }
/* HERO IMAGE */
.hero-img {
width: 100%;
max-width: 720px;
height: 360px;
object-fit: cover;
display: block;
margin: 0 auto 45px;
border: 3px solid var(--accent-gold);
box-shadow: 0 15px 40px rgba(15,39,68,0.14);
transition: transform 0.3s ease;
}
.hero-img:hover { transform: translateY(-4px); }
/* INTRO TEXT */
.intro-text {
font-size: 1.1rem;
line-height: 2;
padding: 30px 35px;
background: linear-gradient(135deg, var(--light-cream), #f0ede8);
border-left: 5px solid var(--accent-gold);
margin-bottom: 45px;
box-shadow: 0 5px 20px rgba(15,39,68,0.07);
}
/* LIS: KEY FACTS */
.key-facts {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin: 45px 0;
padding: 30px;
background: var(--primary-dark);
}
.kf-title {
grid-column: 1 / -1;
color: var(--accent-gold);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
padding-bottom: 12px;
border-bottom: 1px solid rgba(201,162,39,0.25);
margin-bottom: 4px;
}
.kf-item {
text-align: center;
padding: 20px 12px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(201,162,39,0.18);
}
.kf-number {
font-size: 1.7rem;
font-weight: 800;
color: var(--accent-gold);
line-height: 1;
margin-bottom: 8px;
}
.kf-label {
font-size: 0.8rem;
color: rgba(255,255,255,0.72);
line-height: 1.45;
}
/* SECTION HEADING */
.section-heading {
font-size: 1.65rem;
color: var(--primary-dark);
margin-bottom: 25px;
padding-bottom: 12px;
border-bottom: 3px solid var(--accent-gold);
display: inline-block;
}
/* BENEFITS GRID */
.benefits-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22px;
margin: 35px 0;
}
.benefit-card {
padding: 28px 25px;
background: var(--warm-white);
border-top: 4px solid var(--accent-gold);
box-shadow: 0 6px 20px rgba(15,39,68,0.09);
transition: all 0.3s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 14px 35px rgba(15,39,68,0.14); }
.benefit-card h3 {
color: var(--primary-dark);
font-size: 1.1rem;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 10px;
}
.benefit-card h3::before {
content: '';
width: 8px; height: 8px;
background: var(--accent-gold);
border-radius: 50%;
flex-shrink: 0;
}
.benefit-card p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.75; }
/* LIS: WORKSHOP SUMMARY */
.workshop-summary {
background: linear-gradient(135deg, #f5f2ec, #ede9e2);
border: 1px solid var(--border-light);
border-left: 5px solid var(--accent-gold);
padding: 30px 35px;
margin: 45px 0;
}
.workshop-summary h2 {
color: var(--primary-dark);
font-size: 1.2rem;
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 12px;
}
.workshop-summary h2::before {
content: '';
display: inline-block;
width: 20px; height: 3px;
background: var(--accent-gold);
flex-shrink: 0;
}
.workshop-summary p { color: var(--text-medium); font-size: 1rem; line-height: 1.9; }
/* LEAD FORM SECTION */
.form-section {
background: var(--primary-dark);
padding: 55px 40px;
margin-left: -40px;
margin-right: -40px;
position: relative;
}
.form-section::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 5px; background: var(--accent-gold);
}
.form-title {
text-align: center;
color: var(--warm-white);
font-size: 1.9rem;
margin-bottom: 10px;
}
.form-title span { color: var(--accent-gold); }
.form-subtitle {
text-align: center;
color: rgba(255,255,255,0.7);
margin-bottom: 35px;
font-size: 1rem;
}
.lead-form {
max-width: 560px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 16px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
width: 100%;
padding: 14px 18px;
border: 1px solid rgba(255,255,255,0.15);
background: rgba(255,255,255,0.07);
color: var(--warm-white);
font-family: 'Heebo', sans-serif;
font-size: 0.95rem;
outline: none;
transition: all 0.3s ease;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
border-color: var(--accent-gold);
background: rgba(255,255,255,0.1);
}
.lead-form select option { background: var(--primary-dark); color: var(--warm-white); }
.lead-form textarea { resize: vertical; min-height: 100px; }
.form-submit {
background: var(--accent-gold);
color: var(--primary-dark);
border: none;
padding: 16px 40px;
font-size: 1rem;
font-weight: 700;
font-family: 'Heebo', sans-serif;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
letter-spacing: 0.03em;
}
.form-submit:hover { background: var(--accent-gold-light); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-privacy {
text-align: center;
color: rgba(255,255,255,0.45);
font-size: 0.78rem;
margin-top: 4px;
}
#form-msg {
text-align: center;
padding: 14px;
font-weight: 600;
font-size: 0.95rem;
display: none;
}
#form-msg.success { background: rgba(201,162,39,0.15); color: var(--accent-gold); border: 1px solid var(--accent-gold); }
#form-msg.error { background: rgba(220,50,50,0.15); color: #ff6b6b; border: 1px solid #ff6b6b; }
/* ORPHAN LINKS */
.orphan-links { margin: 45px 0; }
.orphan-links h3 {
color: var(--primary-dark);
font-size: 1.15rem;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--border-light);
}
.orphan-links h3 span { color: var(--accent-gold); }
.orphan-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 11px;
}
.orphan-item {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 13px 15px;
background: var(--light-cream);
border: 1px solid var(--border-light);
text-decoration: none;
transition: all 0.3s ease;
}
.orphan-item:hover { border-color: var(--accent-gold); background: #f0ede8; transform: translateX(3px); }
.orphan-item::before {
content: '→';
color: var(--accent-gold);
font-size: 0.9rem;
flex-shrink: 0;
margin-top: 2px;
}
.orphan-item span { color: var(--primary-dark); font-size: 0.88rem; font-weight: 500; line-height: 1.4; }
/* RECOMMENDED READING */
.reading-section {
padding: 55px 40px;
background: var(--light-cream);
margin-left: -40px;
margin-right: -40px;
}
.reading-section h2 {
font-size: 1.9rem;
color: var(--primary-dark);
text-align: center;
margin-bottom: 35px;
}
.reading-section h2 span { color: var(--accent-gold); }
.reading-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
max-width: 900px;
margin: 0 auto;
}
.reading-card {
background: var(--warm-white);
padding: 22px 16px;
border: 1px solid var(--border-light);
text-align: center;
transition: all 0.3s ease;
text-decoration: none;
}
.reading-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(15,39,68,0.1); border-color: var(--accent-gold); }
.reading-icon {
width: 50px; height: 50px;
background: var(--primary-dark);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 12px;
}
.reading-icon svg { width: 24px; height: 24px; fill: var(--accent-gold); }
.reading-card h4 { color: var(--primary-dark); font-size: 0.85rem; margin-bottom: 6px; line-height: 1.4; }
.reading-card p { color: var(--text-medium); font-size: 0.75rem; line-height: 1.4; }
/* FOOTER */
.footer {
background: var(--primary-dark);
padding: 40px;
text-align: center;
border-top: 3px solid var(--accent-gold);
}
.footer-logo { font-size: 1.7rem; font-weight: 700; color: var(--warm-white); margin-bottom: 12px; }
.footer-logo span { color: var(--accent-gold); }
.footer p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 7px; }
.footer a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: var(--warm-white); }
.social-links { display: flex; justify-content: center; gap: 11px; margin-top: 22px; flex-wrap: wrap; }
.social-link {
width: 40px; height: 40px;
display: flex; align-items: center; justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
}
.social-link svg { width: 19px; height: 19px; fill: white; }
.social-link.linkedin { background: #0077b5; }
.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.twitter { background: #000; }
.social-link.youtube { background: #ff0000; }
.social-link.pinterest { background: #e60023; }
.social-link:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
/* RESPONSIVE */
@media (max-width: 768px) {
.nav { padding: 12px 20px; }
.hero { padding: 45px 20px 40px; }
.hero h1 { font-size: 1.9rem; }
.content { padding: 35px 20px; }
.benefits-grid, .form-row { grid-template-columns: 1fr; }
.key-facts { grid-template-columns: repeat(2, 1fr); }
.form-section { padding: 45px 20px; margin-left: -20px; margin-right: -20px; }
.reading-section { padding: 40px 20px; margin-left: -20px; margin-right: -20px; }
.reading-grid { grid-template-columns: repeat(2, 1fr); }
.orphan-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
.key-facts { grid-template-columns: 1fr; }
.reading-grid { grid-template-columns: 1fr; }
}
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebPage",
"@id": "https://nirmako.com/business-coaching-for-managers/#webpage",
"url": "https://nirmako.com/business-coaching-for-managers/",
"name": "Business Coaching for Managers | NIRMAKO",
"description": "Empower your leadership with expert business coaching for managers. Personalized guidance, strategic planning, and TAB peer advisory — NIRMAKO & The Alternative Board.",
"inLanguage": "en",
"isPartOf": { "@id": "https://nirmako.com/#website" },
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": [".key-facts", ".workshop-summary"]
},
"breadcrumb": { "@id": "https://nirmako.com/business-coaching-for-managers/#breadcrumb" }
},
{
"@type": "BreadcrumbList",
"@id": "https://nirmako.com/business-coaching-for-managers/#breadcrumb",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://nirmako.com/" },
{ "@type": "ListItem", "position": 2, "name": "Services", "item": "https://nirmako.com/services/" },
{ "@type": "ListItem", "position": 3, "name": "Business Coaching for Managers" }
]
},
{
"@type": "Service",
"@id": "https://nirmako.com/business-coaching-for-managers/#service",
"name": "Business Coaching for Managers",
"provider": {
"@type": "Organization",
"name": "NIRMAKO",
"url": "https://nirmako.com"
},
"description": "Expert business coaching and consulting for managers and executives. One-on-one sessions, strategic planning, TAB peer advisory boards, and the XCELERATOR methodology.",
"areaServed": "Israel",
"serviceType": "Business Coaching",
"inLanguage": "en"
},
{
"@type": "Organization",
"@id": "https://nirmako.com/#organization",
"name": "NIRMAKO",
"url": "https://nirmako.com",
"sameAs": [
"https://www.linkedin.com/in/nirmakovsky/",
"https://www.facebook.com/NIRMAKOCOACH",
"https://www.instagram.com/NIRMAKO/",
"https://twitter.com/NIRMAKO",
"https://www.youtube.com/@Highjump-TAB-Xcelerated",
"https://www.pinterest.com/NIRMAKO/"
]
}
]
}
NIRMAKO
href="https://en.nirmako.com/contact/" class="nav-cta">Contact Us
Executive Coaching
Business Coaching for Managers
Personalized guidance and strategic support to help leaders maximize their potential and drive teams to lasting success.
In today's rapidly evolving business landscape, the role of a manager has never been more central. Whether you lead a small team or a multinational operation, navigating complexity requires more than experience alone — it requires the right support system. Business coaching for managers provides insights, training, and strategies to help you maximize your potential and drive your team to extraordinary results.
Key Facts — Business Coaching for Managers
1:1
Personalized coaching sessions tailored to each manager's goals
TAB
The Alternative Board — peer advisory combined with executive coaching
STRATPRO
Strategic planning methodology for sustained organizational growth
HI-MAP
Management development program for high-performance teams
XCELERATOR
Startup acceleration coaching — from concept to traction
Nir Makovsky
CEO of NIRMAKO, certified TAB partner and business coach
What You Gain from Coaching
External Strategic Perspective
Consulting firms bring fresh, objective viewpoints that break through organizational bias and group thinking — revealing solutions your team may never have considered.
Specialized Knowledge On Demand
Access expertise in technology adoption, process optimization, and regulatory navigation without the cost of a full-time hire.
Leadership Empowerment
Through structured sessions, workshops, and exercises, coaching equips managers with the tools and confidence to thrive in a competitive environment.
Continuous Growth Culture
Coaching fosters a mindset of ongoing learning, helping leaders adapt to change, overcome obstacles, and drive innovation from within.
Summary: Business Coaching for Managers at NIRMAKO
NIRMAKO offers comprehensive business coaching for managers and executives through a unique combination of 1-on-1 sessions, the TAB peer advisory board model, and proven methodologies including STRATPRO and HI-MAP. Led by Nir Makovsky — certified TAB partner and experienced business consultant — the coaching focuses on strategic leadership, team performance, and organizational transformation. Whether you face a strategic crossroads, a period of change, or a growth plateau, NIRMAKO provides a tailored roadmap with clear, actionable steps toward measurable results.
Further Reading: Related Services & Articles
href="https://en.nirmako.com/tab-advisory-board/" class="orphan-item">
TAB Advisory Board — Peer coaching for CEOs & business owners
href="https://en.nirmako.com/stratpro/" class="orphan-item">
STRATPRO — Strategic planning for sustainable growth
href="https://en.nirmako.com/hi-map/" class="orphan-item">
HI-MAP — Management development program
href="https://en.nirmako.com/xcelerator/" class="orphan-item">
XCELERATOR — Startup and business acceleration
Effective Networking — Build a powerful business network
href="https://en.nirmako.com/the-biggest-exits-in-israel/" class="orphan-item">
Israel's Biggest Exits — Lessons from top founders
Recommended Reading
href="https://en.nirmako.com/oh-you-are-a-fountain-of-information-and-doesnt-get-a-gram-in-return/" class="reading-card">
Giving Without Receiving in Return?
Giving and receiving in business
href="https://en.nirmako.com/the-biggest-exits-in-israel/" class="reading-card">
Israel's Biggest Exits
Success stories & lessons
href="https://en.nirmako.com/10-ways-to-optimal-time-management/" class="reading-card">
10 Time Management Tips
Free guide to download
href="https://en.nirmako.com/creative-thinking/" class="reading-card">
Creative Thinking
Thinking outside the box
document.getElementById('coachingForm').addEventListener('submit', async function(e) {
e.preventDefault();
const btn = document.getElementById('submitBtn');
const msg = document.getElementById('form-msg');
btn.disabled = true;
btn.textContent = 'Sending...';
msg.style.display = 'none';
const formData = {};
new FormData(this).forEach((v, k) => { formData[k] = v; });
try {
const res = await fetch('https://api.web3forms.com/submit', {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' },
body: JSON.stringify(formData)
});
const data = await res.json();
if (data.success) {
msg.className = 'success';
msg.textContent = 'Thank you! We will be in touch shortly.';
msg.style.display = 'block';
this.reset();
setTimeout(() => {
window.location.href = 'https://nirmako.com/life-long-learning/';
}, 1800);
} else {
throw new Error(data.message || 'Submission failed');
}
} catch (err) {
msg.className = 'error';
msg.textContent = 'Something went wrong. Please try again or contact us directly.';
msg.style.display = 'block';
btn.disabled = false;
btn.textContent = 'Get Started — It\'s Free';
}
});