:root {
--primary-blue: #1a365d;
--primary-blue-dark: #0c1929;
--primary-blue-light: #2d4a6f;
--accent-gold: #f5b82e;
--accent-gold-dark: #d4a026;
--accent-gold-light: #ffd666;
--accent-orange: #ff6b35;
--text-dark: #1a1a2e;
--text-light: #4a5568;
--bg-light: #f7f9fc;
--white: #ffffff;
--success-green: #27ae60;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.8;
color: var(--text-dark);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Hero Section */
.hero-section {
background: var(--white);
border-radius: 20px;
padding: 50px 40px;
margin-bottom: 30px;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
text-align: center;
border-top: 5px solid var(--accent-gold);
position: relative;
overflow: hidden;
}
.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 200px;
background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(245, 184, 46, 0.05) 100%);
z-index: 0;
}
.hero-content {
position: relative;
z-index: 1;
}
.hero-title {
font-size: 2.5em;
font-weight: bold;
color: var(--primary-blue);
margin-bottom: 20px;
}
.hero-subtitle {
font-size: 1.3em;
color: var(--text-light);
margin-bottom: 30px;
font-weight: 300;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 40px;
margin: 30px 0;
flex-wrap: wrap;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2.5em;
font-weight: bold;
color: var(--accent-gold);
}
.stat-label {
color: var(--text-light);
font-size: 0.9em;
}
.hero-cta {
margin-top: 30px;
}
.primary-btn {
background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
color: var(--primary-blue-dark);
padding: 16px 40px;
border: none;
border-radius: 30px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.primary-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(245, 184, 46, 0.4);
}
/* Content Sections */
.content-section {
background: var(--white);
border-radius: 15px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.section-title {
font-size: 1.8em;
color: var(--primary-blue);
margin-bottom: 20px;
border-bottom: 3px solid var(--accent-gold);
padding-bottom: 10px;
}
/* Video Section */
.video-section {
background: var(--white);
border-radius: 15px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.video-container {
position: relative;
width: 100%;
max-width: 800px;
margin: 20px auto;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
background: #000;
border-radius: 10px;
}
.video-container iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}
.video-caption {
margin: 15px auto 0;
max-width: 800px;
text-align: center;
font-size: 0.95rem;
line-height: 1.6;
color: var(--text-light);
}
/* Highlight Box */
.highlight-box {
background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
color: var(--white);
padding: 30px;
border-radius: 15px;
margin: 25px 0;
}
.highlight-box h3 {
color: var(--accent-gold);
margin-bottom: 15px;
}
/* Process Grid */
.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin: 30px 0;
}
.process-card {
background: var(--bg-light);
padding: 30px;
border-radius: 12px;
border-right: 4px solid var(--accent-gold);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(26, 54, 93, 0.15);
}
.process-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--accent-gold);
color: var(--primary-blue-dark);
border-radius: 50%;
font-weight: bold;
margin-bottom: 15px;
}
.process-card h4 {
color: var(--primary-blue);
margin-bottom: 10px;
font-size: 1.1em;
}
/* Services List */
.services-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin: 25px 0;
}
.service-item {
background: var(--bg-light);
padding: 15px 20px;
border-radius: 8px;
display: flex;
align-items: center;
gap: 10px;
transition: background 0.3s ease;
}
.service-item:hover {
background: var(--accent-gold-light);
}
.service-icon {
width: 24px;
height: 24px;
color: var(--accent-gold-dark);
}
/* Quote Box */
.quote-box {
background: var(--bg-light);
border-right: 5px solid var(--accent-gold);
padding: 25px 30px;
margin: 25px 0;
border-radius: 10px;
}
.quote-text {
font-size: 1.2em;
color: var(--primary-blue);
font-style: italic;
margin-bottom: 10px;
}
/* Form Container */
.form-container {
background: var(--white);
padding: 40px;
border-radius: 15px;
margin: 30px 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-top: 5px solid var(--accent-gold);
}
.form-intro {
background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
border: 2px solid var(--success-green);
border-radius: 10px;
padding: 20px;
margin-bottom: 25px;
text-align: center;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: var(--primary-blue);
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 14px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 16px;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: var(--primary-blue);
box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}
.submit-btn {
background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
color: var(--primary-blue-dark);
padding: 16px 40px;
border: none;
border-radius: 25px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
}
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(245, 184, 46, 0.4);
}
.submit-btn:disabled {
opacity: 0.7;
cursor: not-allowed;
}
#form-result {
text-align: center;
margin-top: 15px;
padding: 10px;
border-radius: 8px;
font-weight: bold;
}
/* FAQ Section */
.faq-section {
background: var(--white);
border-radius: 15px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.faq-item {
border-bottom: 1px solid #e0e0e0;
padding: 20px 0;
}
.faq-item:last-child {
border-bottom: none;
}
.faq-question {
font-weight: bold;
color: var(--primary-blue);
margin-bottom: 10px;
font-size: 1.1em;
}
.faq-answer {
color: var(--text-light);
line-height: 1.8;
}
/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
color: var(--white);
padding: 50px 40px;
border-radius: 20px;
text-align: center;
margin: 30px 0;
}
.cta-section h2 {
color: var(--accent-gold);
margin-bottom: 20px;
}
.cta-button {
background: var(--accent-gold);
color: var(--primary-blue-dark);
padding: 15px 40px;
border: none;
border-radius: 50px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
margin: 15px 10px;
text-decoration: none;
display: inline-block;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(245, 184, 46, 0.3);
background: var(--accent-gold-light);
color: var(--primary-blue-dark);
}
/* Social Links */
.social-section {
background: var(--white);
padding: 30px;
border-radius: 15px;
text-align: center;
margin-top: 30px;
}
.social-section h3 {
color: var(--primary-blue);
margin-bottom: 20px;
}
.social-links {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 20px;
}
.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background: var(--primary-blue);
color: var(--white);
border-radius: 50%;
text-decoration: none;
font-size: 1.2em;
transition: all 0.3s ease;
}
.social-link:hover {
background: var(--accent-gold);
color: var(--primary-blue-dark);
transform: translateY(-3px);
}
.whatsapp-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: #25D366;
color: var(--white);
padding: 12px 25px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}
.whatsapp-btn:hover {
background: #128C7E;
transform: translateY(-2px);
}
/* Trust Section */
.trust-section {
background: var(--white);
padding: 30px;
border-radius: 15px;
text-align: center;
margin-top: 30px;
}
.trust-section h3 {
color: var(--primary-blue);
margin-bottom: 15px;
}
/* Hero Image */
.hero-image {
width: 100%;
max-width: 600px;
margin: 20px auto;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.hero-image img {
width: 100%;
height: auto;
display: block;
}
/* Responsive */
@media (max-width: 768px) {
.hero-title {
font-size: 1.8em;
}
.container {
padding: 10px;
}
.hero-section,
.content-section,
.form-container,
.faq-section,
.video-section {
padding: 25px 20px;
}
.process-grid {
grid-template-columns: 1fr;
}
.services-list {
grid-template-columns: 1fr;
}
.hero-stats {
gap: 20px;
}
.stat-number {
font-size: 2em;
}
.cta-button {
width: 100%;
margin: 10px 0;
display: block;
}
.social-link {
width: 45px;
height: 45px;
}
}
/* Hidden honeypot */
.hidden {
display: none !important;
}
{
"@context": "https://schema.org",
"@type": "WebPage",
"@id": "https://nirmako.com/livui-startups/#webpage",
"url": "https://nirmako.com/livui-startups",
"name": "ליווי סטארטאפים | אימון והכוונה מהרעיון ועד ה-EXIT | NIRMAKO",
"description": "ליווי מקצועי לסטארטאפים לאורך כל הדרך. אימון, בניית תכנית עסקית, גיוס משקיעים וליווי טכנולוגי.",
"inLanguage": "he",
"isPartOf": { "@id": "https://nirmako.com/#website" },
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": [".key-facts", ".workshop-summary"]
}
}
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://nirmako.com/#organization",
"name": "NIRMAKO",
"url": "https://nirmako.com",
"logo": {
"@type": "ImageObject",
"url": "https://nirmako.com/wp-content/uploads/2020/01/Logo140.webp",
"width": 140,
"height": 60
},
"image": "https://nirmako.com/wp-content/uploads/2020/01/Logo140.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "הסיבים 49",
"addressLocality": "פתח תקוה",
"postalCode": "4959504",
"addressCountry": "IL"
},
"sameAs": [
"https://facebook.com/NIRMAKOCOACH",
"https://instagram.com/NIRMAKO",
"https://twitter.com/NIRMAKO",
"https://linkedin.com/in/nirmakovsky",
"https://pinterest.com/NIRMAKO",
"https://youtube.com/@Highjump-TAB-Xcelerated"
]
}
{
"@context": "https://schema.org",
"@type": "Service",
"@id": "https://nirmako.com/livui-startups/#service",
"name": "ליווי סטארטאפים",
"description": "ליווי מקצועי לסטארטאפים מהרעיון ועד ה-EXIT, כולל בניית תכנית עסקית, גיוס משקיעים וליווי טכנולוגי",
"url": "https://nirmako.com/livui-startups",
"provider": { "@id": "https://nirmako.com/#organization" },
"areaServed": "IL",
"serviceType": "Business Consulting",
"inLanguage": "he"
}
{
"@context": "https://schema.org",
"@type": "VideoObject",
"@id": "https://nirmako.com/livui-startups/#video",
"name": "ליווי עיסקי לחברות וסטרטאפים - ניר מקובסקי | NIRMAKO",
"description": "סרטון על ליווי עיסקי לחברות וסטרטאפים, כולל סדנת קפיצה לגובה וסדנת THE STARTING POINT.",
"thumbnailUrl": [
"https://img.youtube.com/vi/EUg40-0dU_I/maxresdefault.jpg",
"https://img.youtube.com/vi/EUg40-0dU_I/hqdefault.jpg",
"https://img.youtube.com/vi/EUg40-0dU_I/sddefault.jpg"
],
"url": "https://www.youtube.com/watch?v=EUg40-0dU_I",
"embedUrl":"https://www.youtube.com/embed/EUg40-0dU_I",
"contentUrl": "https://www.youtube.com/watch?v=EUg40-0dU_I",
"uploadDate": "2019-11-04T00:00:00+02:00",
"inLanguage": "he",
"isPartOf": { "@id": "https://nirmako.com/livui-startups/#webpage" },
"publisher": {
"@type": "Organization",
"name": "NIRMAKO",
"url": "https://nirmako.com",
"logo": {
"@type": "ImageObject",
"url": "https://nirmako.com/wp-content/uploads/2020/01/Logo140.webp",
"width": 140,
"height": 60
}
},
"potentialAction": {
"@type": "WatchAction",
"target": "https://www.youtube.com/watch?v=EUg40-0dU_I"
}
}
{
"@context": "https://schema.org",
"@type": "VideoObject",
"@id": "https://nirmako.com/livui-startups/#video-2",
"name": "טיפים לסטארטאפים | NIRMAKO",
"description": "וידאו מתוך ערוץ NIRMAKO עם טיפים לסטארטאפים.",
"thumbnailUrl": [
"https://img.youtube.com/vi/PLv3FBk3LkM/maxresdefault.jpg",
"https://img.youtube.com/vi/PLv3FBk3LkM/hqdefault.jpg",
"https://img.youtube.com/vi/PLv3FBk3LkM/sddefault.jpg"
],
"url": "https://www.youtube.com/watch?v=PLv3FBk3LkM",
"embedUrl":"https://www.youtube.com/embed/PLv3FBk3LkM",
"contentUrl": "https://www.youtube.com/watch?v=PLv3FBk3LkM",
"uploadDate": "2019-11-04T04:04:00+02:00",
"inLanguage": "he",
"isPartOf": { "@id": "https://nirmako.com/livui-startups/#webpage" },
"publisher": {
"@type": "Organization",
"name": "NIRMAKO",
"url": "https://nirmako.com",
"logo": {
"@type": "ImageObject",
"url": "https://nirmako.com/wp-content/uploads/2020/01/Logo140.webp",
"width": 140,
"height": 60
}
},
"potentialAction": {
"@type": "WatchAction",
"target": "https://www.youtube.com/watch?v=PLv3FBk3LkM"
}
}
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "מה כולל תהליך ליווי סטארטאפים?",
"acceptedAnswer": {
"@type": "Answer",
"text": "תהליך הליווי כולל אפיון וליווי פיתוח, ייעוץ טכנולוגי, ליווי שיווק ומכירות, מיתוג UI/UX, בניית תכנית עסקית וליווי לגיוס משקיעים."
}
},
{
"@type": "Question",
"name": "למי מתאים ליווי סטארטאפים?",
"acceptedAnswer": {
"@type": "Answer",
"text": "הליווי מתאים ליזמים עם רעיון חדשני, סטארטאפים בשלבים מוקדמים, וחברות שרוצות לצמוח ולגייס משקיעים."
}
},
{
"@type": "Question",
"name": "כמה זמן לוקח תהליך ליווי סטארטאפים?",
"acceptedAnswer": {
"@type": "Answer",
"text": "משך התהליך משתנה בהתאם לשלב הסטארטאפ ולמטרות. תהליך טיפוסי נמשך בין 3 ל-12 חודשים, עם ליווי צמוד לאורך כל הדרך."
}
},
{
"@type": "Question",
"name": "מה מייחד את הליווי של NIRMAKO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "הליווי מבוסס על ניסיון אישי רב שנים בעולם היזמות והעסקים, עם גישה ישירה לפאנל משקיעים פוטנציאליים וליווי בבניית פרזנטציות מקצועיות."
}
}
]
}
ליווי סטארטאפים: צפו בסרטון ההסבר
סרטון: ליווי עיסקי לחברות וסטארטאפים – ניר מקובסקי | NIRMAKO
סרטון: ליווי עיסקי לחברות וסטארטאפים – ניר מקובסקי | NIRMAKO
ליווי סטארטאפים במדינת הסטארטאפ
במדינת הסטארטאפים, יש המון רעיונות עם פוטנציאל עסקי אדיר. עלית על רעיון מבריק? אתה מאמין שזה יכול להיות סטארטאפ? בנוסף, חשוב לדעת שבבסיסם של מיזמים מצליחים עומד ליווי מקצועי המעניק הכוונה וכלים לכל אורך הדרך.
למה הליווי הוא קריטי?
בעוד פחות מ-5% מהסטארטאפים מצליחים, אם אתם רוצים להיות בסטטיסטיקה של המצליחים, כדאי למדל ולבחון מה עבד. כמו כן, בבחינת סטארטאפים מצליחים רואים מספר סממנים משותפים - וכולם קשורים לליווי מקצועי.
"כי רק רעיון גדול – לא מספיק. צריך גם לנהל!"
הגישה שלי לליווי מיזמים
אני עוזר לסטארטאפים להתנהל כמו עסק מצליח. לכן, הקמתי את החברה כדי להעניק לך פתרון מעשי, המבוסס על ניסיון אישי בעולמות היזמות והעסקים. יתר על כן, הניסיון הרב שצברתי במשך השנים מאפשר לי להבין מהר מה חשוב ומה לא.
מכאן נובעת הגישה שלי: כמי שנמצא רבות בעולם הסטארטאפים, משלב ההגייה וחשיבה על הרעיון, מציאת הצורך והפתרון הטכנולוגי, כתיבת תכנית עסקית ויישומה דרך תכנית פעולה, יציאה לגיוס משקיעים ועד הגעה לשוק - זו האופציה היחידה לפרוץ את גבולות השוק ולהיות מבין הסטארטאפים שפורצים את תקרת הזכוכית.
תהליך הליווי: מה כולל?
תהליך הליווי שלנו מקיף ומותאם אישית. ראשית, נבדוק את המיזם שלכם ואת השוק אליו אתם פונים. שנית, נבנה יחד תכנית פעולה מפורטת שתוביל אתכם להצלחה.
1
בדיקת מיזם ושוק
נבדוק את המיזם שלכם ואת השוק אליו אתם פונים. בנוסף, נספק תמונת מצב מלאה ואובייקטיבית על מצב המיזם כבר בתחילת הדרך.
2
בדיקת כדאיות כלכלית
נבדוק ביחד את הכדאיות הכלכלית של המיזם. כמו כן, נזהה הזדמנויות ואיומים בשוק הרלוונטי.
3
בניית תכנית פעולה
בשלב זה, נבנה תכנית פעולה הכוללת שרטוט זון, הגדרת תפקידים, אפיון לקוחות ובניית מערכי שיווק ומכירות.
4
הצבת יעדים ובקרה
נציב יעדים ונקים מנגנון בדיקה ובקרת יעדים. יתר על כן, נלווה אתכם בשטח כדי ליישם את תכנית העבודה.
5
גיוס משקיעים
לאחר מכן, נפגיש אתכם עם פאנל של משקיעים פוטנציאליים ונלווה אתכם בתהליך בניית הפרזנטציה.
6
יציאה לשוק
לבסוף, נלווה אתכם עד לביצוע אקזיט או ביסוס החברה ויצירת מכירות, בהתאם ליעדי החברה ולשלב בו נמצא הסטארטאפ.
שירותי הליווי שלנו
תהליך הליווי שלנו כולל מגוון רחב של שירותים. לכן, תוכלו לקבל מענה מקיף לכל צורכי המיזם שלכם תחת קורת גג אחת.
אפיון וליווי פיתוח
ייעוץ וליווי טכנולוגי
ליווי שיווק ומכירות
ייעוץ אסטרטגי
מיתוג UI ו-UX
איתור ספקים ועובדים
חושבים על סטארטאפ? כדאי שתצפו
וידאו מתוך ערוץ NIRMAKO - טיפים לסטארטאפים
שאלות נפוצות על ליווי סטארטאפים
מה כולל תהליך ליווי סטארטאפים?
תהליך הליווי כולל אפיון וליווי פיתוח, ייעוץ טכנולוגי, ליווי שיווק ומכירות, מיתוג UI/UX, בניית תכנית עסקית וליווי לגיוס משקיעים. בנוסף, תקבלו תמיכה בכל שלב בדרך להצלחה.
למי מתאים ליווי סטארטאפים?
הליווי מתאים ליזמים עם רעיון חדשני, סטארטאפים בשלבים מוקדמים, וחברות שרוצות לצמוח ולגייס משקיעים. כמו כן, התהליך מותאם אישית לצרכים הספציפיים של כל מיזם.
כמה זמן לוקח תהליך ליווי סטארטאפים?
משך התהליך משתנה בהתאם לשלב הסטארטאפ ולמטרות. תהליך טיפוסי נמשך בין 3 ל-12 חודשים, עם ליווי צמוד לאורך כל הדרך. לכן, חשוב להתחיל מוקדם ככל האפשר.
מה מייחד את הליווי של NIRMAKO?
הליווי שלנו מבוסס על ניסיון אישי רב שנים בעולם היזמות והעסקים. יתר על כן, אנחנו מציעים גישה ישירה לפאנל משקיעים פוטנציאליים וליווי בבניית פרזנטציות מקצועיות.
8 מדדים לביצועים עסקיים של החברה
כלי ייחודי למדידת הביצועים העסקיים של הסטארטאפ שלכם. בנוסף, תקבלו תמונת מצב ברורה על חוזקות וחולשות המיזם.
ניהול זמן
תזרים מזומנים
צוות ומשאבי אנוש
מכירות והכנסות
שיווק וחשיפה
פיתוח מוצר
שירות לקוחות
אסטרטגיה וצמיחה
קריאה מומלצת
.reading-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 25px;
}
.reading-card {
background: linear-gradient(145deg, white 0%, #f9fafb 100%);
border: 1px solid #e5e7eb;
border-radius: 16px;
padding: 24px;
transition: all 0.3s ease;
text-decoration: none;
display: block;
position: relative;
overflow: hidden;
}
.reading-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #0f2744 0%, #2563eb 100%);
}
.reading-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
border-color: #3b82f6;
}
.reading-card.gold::before { background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%); }
.reading-card.gold:hover { border-color: #d4af37; }
.reading-card.teal::before { background: linear-gradient(135deg, #0d9488 0%, #2dd4bf 100%); }
.reading-card.teal:hover { border-color: #2dd4bf; }
.reading-card.coral::before { background: linear-gradient(135deg, #dc4f3c 0%, #ff7b5f 100%); }
.reading-card.coral:hover { border-color: #ff7b5f; }
.reading-card.purple::before { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.reading-card.purple:hover { border-color: #a78bfa; }
.reading-card.emerald::before { background: linear-gradient(135deg, #059669 0%, #34d399 100%); }
.reading-card.emerald:hover { border-color: #34d399; }
.reading-card-badge {
display: inline-block;
padding: 4px 12px;
font-size: 0.75rem;
font-weight: 700;
border-radius: 20px;
margin-bottom: 12px;
}
.badge-foundation { background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%); color: #0c1929; }
.badge-service { background: linear-gradient(135deg, #0d9488 0%, #2dd4bf 100%); color: white; }
.badge-program { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); color: white; }
.badge-article { background: linear-gradient(135deg, #dc4f3c 0%, #ff7b5f 100%); color: white; }
.badge-guide { background: linear-gradient(135deg, #059669 0%, #34d399 100%); color: white; }
.badge-english { background: linear-gradient(135deg, #0f2744 0%, #2563eb 100%); color: white; }
.reading-card h3 {
color: #1a365d;
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 10px;
line-height: 1.4;
}
.reading-card p {
color: #4b5563;
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 14px;
}
.reading-card .read-more {
display: inline-flex;
align-items: center;
gap: 8px;
color: #2563eb;
font-weight: 600;
font-size: 0.9rem;
}
.reading-card .read-more::after {
content: '←';
transition: transform 0.3s ease;
}
.reading-card:hover .read-more::after {
transform: translateX(-4px);
}
.reading-card.gold .read-more { color: #b8860b; }
.reading-card.teal .read-more { color: #0d9488; }
.reading-card.coral .read-more { color: #dc4f3c; }
.reading-card.purple .read-more { color: #7c3aed; }
.reading-card.emerald .read-more { color: #059669; }
הצטרפו למהפכת הסטארטאפים
עם ליווי מקצועי, גם אתם יכולים להיות חלק מה-5% שמצליחים
לכן, מלאו את הטופס למעלה ונתחיל יחד את המסע להצלחה!
const form = document.getElementById('startupForm');
const result = document.getElementById('form-result');
const submitBtn = document.getElementById('submitBtn');
form.addEventListener('submit', function(e) {
e.preventDefault();
const formData = new FormData(form);
const object = Object.fromEntries(formData);
const json = JSON.stringify(object);
result.innerHTML = "שולח... אנא המתן";
result.style.color = "#1a365d";
result.style.background = "#f7f9fc";
result.style.padding = "15px";
submitBtn.disabled = true;
fetch('https://api.web3forms.com/submit', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
},
body: json
})
.then(async (response) => {
let jsonResponse = await response.json();
if (response.status == 200) {
result.innerHTML = "✓ הטופס נשלח בהצלחה! ניצור איתכם קשר בהקדם לתיאום פגישת היכרות.";
result.style.color = "#27AE60";
result.style.background = "#e8f5e8";
form.reset();
} else {
console.log(response);
result.innerHTML = "שגיאה בשליחה. אנא נסו שנית.";
result.style.color = "#E74C3C";
result.style.background = "#fdeaea";
}
})
.catch(error => {
console.log(error);
result.innerHTML = "שגיאה בשליחה. אנא נסו שנית.";
result.style.color = "#E74C3C";
result.style.background = "#fdeaea";
})
.finally(() => {
submitBtn.disabled = false;
});
});
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});