/* --- New Light SaaS Theme Variables --- */
:root {
    --bg-main: #F3F4F6; /* רקע אפור-בהיר נקי */
    --panel-bg: #FFFFFF; /* רקע לבן טהור לקופסאות */
    --text-main: #111827; /* טקסט אפור-כהה מאוד (כמעט שחור) לכותרות */
    --text-muted: #6B7280; /* אפור רך יותר לטקסט רץ */
    --accent: #3B82F6; /* כחול ויברנטי ומודרני */
    --accent-hover: #2563EB;
    
    /* מראה נקי עם צל */
    --panel-border: 1px solid #E5E7EB;
    --panel-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

html { scroll-padding-top: 100px; }

body {
    font-family: 'Inter', sans-serif; color: var(--text-main);
    background-color: var(--bg-main); line-height: 1.6; overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; color: var(--text-main); }
.highlight { color: var(--accent); }

/* Ambient Glow */
.ambient-glow {
    position: fixed; top: -20%; left: -10%; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(243, 244, 246, 0) 70%);
    border-radius: 50%; z-index: -1; pointer-events: none;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.max-width-p { max-width: 700px; margin: 0 auto 50px; color: var(--text-muted); font-size: 1.15rem; }

/* --- Clean White Panels --- */
.glass-panel {
    background: var(--panel-bg); 
    border: var(--panel-border); 
    box-shadow: var(--panel-shadow); 
    border-radius: 16px; 
    backdrop-filter: none; -webkit-backdrop-filter: none; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-panel:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

/* --- Header Fix --- */
header {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(243, 244, 246, 0.7); 
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    z-index: 100; border-bottom: none; 
    display: flex; align-items: center;
}
.nav-container {
    max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
}
/* פתרנו את מחיצת הלוגו - הוספנו width: auto ו-object-fit */
.logo { height: 40px; width: auto; object-fit: contain; transition: opacity 0.3s, transform 0.3s ease; }
.logo:hover { opacity: 0.9; transform: scale(1.05); }

/* --- Modern Soft UI Buttons (Inspired by your reference) --- */

/* הכפתור הכהה של ההדר (Partner With Us) */
.nav-btn {
    background: #18181b; /* שחור פחם יוקרתי */
    color: #ffffff !important; /* דורס את הצבע השקוף מההדר */
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* הצללה עמוקה שנותנת תחושת ריחוף, ופס אור עדין בחלק העליון */
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
}
.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -6px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* הכפתור הבהיר של סקשן 3 (Learn More) */
.modern-btn-light {
    background: #ffffff;
    color: #0f172a; /* כחול-שחור כהה לטקסט */
    padding: 16px 32px;
    border-radius: 16px; /* פינות קצת יותר רכות */
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* צל לבן עדין שמאיר את הכפתור על הרקע החשוך של סקשן 3 */
    box-shadow: 0 12px 24px -8px rgba(255, 255, 255, 0.15), inset 0 -2px 2px rgba(0, 0, 0, 0.05);
    border: none;
    display: inline-flex;
    align-items: center;
}
.modern-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -8px rgba(255, 255, 255, 0.25), inset 0 -2px 2px rgba(0, 0, 0, 0.05);
}
/* --- Hero (Restored Full-Screen Dark Cinematic) --- */
#hero {
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    position: relative; 
    padding: 100px 20px 0; 
    text-align: center; 
    margin: 0;
    max-width: 100%;
    overflow: hidden;
}

.hero-content { 
    max-width: 900px; 
    margin: 0 auto; 
    z-index: 2; 
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

/* התאמנו את צבע התגית שוב לרקע כהה */
#hero .badge {
    display: inline-block; padding: 6px 16px; 
    background: rgba(14, 165, 233, 0.15); 
    color: #38bdf8; border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 30px; font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}

/* הטקסט הפך ללבן כדי לבלוט על התמונה */
#hero h1 { font-size: 5rem; margin-bottom: 24px; color: #ffffff; line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
#hero p { font-size: 1.35rem; color: #e2e8f0; margin-bottom: 50px; font-weight: 400; max-width: 700px; margin-left: auto; margin-right: auto; }
.scroll-down { color: #94a3b8; text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; }
.scroll-down:hover { color: #ffffff; }

/* עוטף התמונה - ממלא את כל המסך ושם רקע כהה מאחור */
.hero-image-wrapper { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    z-index: 0; 
    background-color: #030712; 
}

/* התמונה ממלאת את המסך, עם שקיפות כדי שהטקסט יבלוט */
.hero-bg { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    object-position: center; 
    opacity: 0.55; 
    border-radius: 0;
}

/* מעבר חלק דמוי-עשן מהתמונה הכהה לרקע הבהיר של האתר */
.hero-fade-bottom { 
    display: block;
    position: absolute; 
    bottom: 0; left: 0; 
    width: 100%; height: 150px; 
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%); 
    z-index: 1;
}

/* התאמה למובייל */
@media (max-width: 992px) {
    #hero { padding-top: 130px; }
    #hero h1 { font-size: 3.2rem; }
    #hero p { font-size: 1.15rem; }
}

/* --- Header Magic (Transparent -> Glass) --- */
header {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: transparent; /* מתחיל שקוף לגמרי */
    backdrop-filter: none; -webkit-backdrop-filter: none;
    z-index: 100; border-bottom: none; 
    display: flex; align-items: center;
    transition: all 0.4s ease; /* אנימציה חלקה בזמן הגלילה */
}

/* המחלקה הזו תתווסף אוטומטית כשהמשתמש יגלול למטה */
header.scrolled {
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: rgba(255,255,255,0.8); /* טקסט לבן שקוף על הרקע הכהה של ההירו */
    text-decoration: none; font-weight: 500; font-size: 1.05rem; transition: color 0.3s;
}
.nav-link:hover { color: #ffffff; }

/* כשההדר הופך לבהיר, הטקסט הופך לאפור כהה כדי שיהיה קריא */
header.scrolled .nav-link { color: var(--text-muted); }
header.scrolled .nav-link:hover { color: var(--accent); }


/* --- Hero Buttons UI --- */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    background: var(--accent); color: #ffffff;
    padding: 16px 32px; border-radius: 12px;
    font-size: 1.1rem; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease; border: 1px solid transparent;
}
.btn-primary:hover {
    background: var(--accent-hover); transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1); color: #ffffff;
    padding: 16px 32px; border-radius: 12px;
    font-size: 1.1rem; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2); border-color: #ffffff;
    transform: translateY(-2px);
}

/* מובייל */
@media (max-width: 768px) {
    .hero-actions { flex-direction: column; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; }
}

/* --- Sections --- */
section { padding: 120px 0; position: relative; z-index: 2; }
h2 { font-size: 3.5rem; margin-bottom: 30px; color: var(--text-main); }

.split-section { display: flex; align-items: center; max-width: 1200px; margin: 0 auto; gap: 80px; padding: 0 20px; }
.split-section.reverse { flex-direction: row-reverse; }
.text-side { flex: 1; }
.text-side p { margin-bottom: 24px; font-size: 1.15rem; color: var(--text-muted); }
.image-side { flex: 1.2; position: relative; }
.image-side img { width: 100%; border-radius: 16px; position: relative; z-index: 2; border: var(--panel-border); box-shadow: var(--panel-shadow); }
.image-glow { display: none; }

/* --- Investor Hub & Stats Grid --- */
#investor-hub {
    padding: 80px 0 !important; /* מהדק את הרווח למעלה ולמטה כדי שייכנס במסך אחד */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#investor-hub h2 {
    font-size: 2.8rem; /* הקטנו את הכותרת הענקית */
    margin-bottom: 15px !important;
}

#investor-hub p.max-width-p {
    margin-bottom: 40px !important;
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; /* ריווח נקי וצר יותר בין הקלפים */
    margin-top: 20px; 
}

.stat-card { 
    padding: 35px 25px; /* הקטנו את הגובה המוגזם של הקלפים */
    text-align: left; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-title { 
    color: var(--accent); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; /* צופפנו מעט את האותיות */
    font-size: 0.75rem; /* הסוד! עכשיו זה ייכנס בשורה אחת חלקה */
    margin-bottom: 12px; 
}

.stat-card h3 { 
    font-size: 3.2rem; /* טיפה יותר אלגנטי מה-4rem הענק שהיה */
    color: var(--text-main); 
    margin-bottom: 8px; 
    line-height: 1;
}

.stat-card p:last-child { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    line-height: 1.5;
    margin: 0;
}

/* התאמה למובייל */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    #investor-hub h2 { font-size: 2.2rem; }
}

/* --- Founders --- */
.founders-grid { display: flex; justify-content: center; gap: 40px; margin-top: 60px; }
.founder-card { flex: 1; max-width: 400px; padding: 40px; text-align: center; }
.founder-card img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin-bottom: 25px; border: 3px solid white; box-shadow: var(--panel-shadow); filter: grayscale(0%); transition: 0.4s; }
.founder-card:hover img { transform: scale(1.05); border-color: var(--accent); }
.founder-card h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--text-main); }
.founder-card .title { color: var(--accent); font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;}
.founder-card .desc { font-size: 1rem; color: var(--text-muted); }

/* --- Contact Section --- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; }
.contact-info { text-align: left; display: flex; flex-direction: column; justify-content: center; }
.contact-info p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }
.contact-links { display: flex; flex-direction: column; gap: 20px; }
.contact-link-item { 
    display: flex; align-items: center; gap: 15px; text-decoration: none; 
    color: var(--text-main); font-weight: 500; font-size: 1.1rem; transition: 0.3s;
    padding: 15px 20px; border-radius: 12px; background: var(--panel-bg); border: var(--panel-border); box-shadow: var(--panel-shadow);
}
.contact-link-item:hover { border-color: var(--accent); transform: translateX(5px); color: var(--accent); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15); }

/* --- Forms --- */
form { padding: 40px; text-align: left; }
.input-group { display: flex; gap: 20px; margin-bottom: 20px; }
input, textarea, select {
    width: 100%; padding: 14px 16px; background: #F9FAFB;
    border: 1px solid #D1D5DB; border-radius: 8px;
    font-family: inherit; font-size: 1rem; color: var(--text-main); transition: 0.3s; margin-bottom: 20px;
}
select option { background: white; color: var(--text-main); }
input::placeholder, textarea::placeholder { color: #9CA3AF; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); background: white; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
textarea { margin-bottom: 20px; }
button[type="submit"] {
    width: 100%; background: var(--accent); color: white;
    padding: 14px; border: none; border-radius: 8px; font-size: 1.1rem;
    font-weight: 600; cursor: pointer; transition: all 0.3s ease;
}
button[type="submit"]:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25); }
.hidden { display: none; }
#form-status { margin-top: 20px; font-weight: 500; font-size: 1rem; text-align: center; }

/* --- Tracker UI Specifics --- */
.tracker-container { max-width: 1000px; margin: 120px auto 50px; padding: 0 20px; }
.tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.tab-btn { background: white; border: var(--panel-border); color: var(--text-muted); padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 1rem; }
.tab-btn.active { background: var(--accent); color: white; border-color: var(--accent); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25); }
.tab-content { display: none; animation: fadeInTab 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeInTab { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tracker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.instructions-card { padding: 30px; }
.instructions-card h4 { color: var(--text-main); margin-bottom: 15px; font-size: 1.2rem; }
.instructions-card ul { list-style-position: inside; color: var(--text-muted); margin-bottom: 25px; line-height: 1.8; }
.pain-point { background: #FEF2F2; border-left: 3px solid #EF4444; padding: 15px; border-radius: 0 8px 8px 0; font-size: 0.95rem; color: #991B1B; }
.chart-container { background: white; padding: 30px; border-radius: 16px; border: var(--panel-border); box-shadow: var(--panel-shadow); margin-top: 40px; }
.result-box { text-align: center; margin-top: 20px; font-size: 1.2rem; font-weight: 600; color: var(--text-main); padding: 20px; border-radius: 12px; background: #F0F9FF; border: 1px solid #BAE6FD; }

/* --- Footer --- */
footer { text-align: center; padding: 40px; color: var(--text-muted); border-top: var(--panel-border); margin-top: 60px; background: white; }

/* --- Mobile Animations --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Storytelling Narrative Section --- */
.narrative-wrapper {
    transition: background-color 0.8s ease, color 0.8s ease;
    background-color: var(--bg-main);
}

.narrative-wrapper.is-dark {
    background-color: #030712; 
    color: #f8fafc;
}

.story-step { padding: 100px 0; }
.step-label {
    font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 15px; color: var(--text-muted);
}

.accent-color { color: var(--accent); }
.story-img {
    width: 100%; border-radius: 20px; object-fit: cover; height: 450px;
}

.narrative-wrapper.is-dark h2 { color: #ffffff; }
.narrative-wrapper.is-dark p { color: #9ca3af; }
.narrative-wrapper.is-dark .shadow-glow { box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15); border: 1px solid rgba(255,255,255,0.05); }

#investor-hub { background-color: #030712; }

/* --- Founders Philosophy Section --- */
.founders-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.philosophy-card {
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.founder-bw-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%); /* הופך את התמונה לשחור לבן יוקרתי */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.philosophy-card:hover .founder-bw-img {
    filter: grayscale(0%); /* טאצ' יפה: מחזיר את הצבע כשמרחפים עם העכבר! */
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.founder-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.15rem;
    color: var(--text-main);
}

.founder-info span {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.philosophy-title {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* התאמה למובייל */
@media (max-width: 768px) {
    .founders-philosophy-grid { grid-template-columns: 1fr; }
    .philosophy-card { padding: 30px; }
}

/* --- General Mobile Adjustments --- */
@media (max-width: 768px) {
    #hero h1 { font-size: 3rem; } h2 { font-size: 2.5rem; }
    .split-section, .split-section.reverse { flex-direction: column; gap: 40px; }
    .stats-grid, .roadmap-grid, .founders-grid, .contact-wrapper, .tracker-grid { grid-template-columns: 1fr; flex-direction: column; }
    .input-group { flex-direction: column; gap: 0; }
    .tabs { flex-wrap: wrap; }
    .beliefs-grid { grid-template-columns: 1fr; }
}

/* הכפתור הבהיר של סקשן 3 (Learn More) */
.modern-btn-light {
    background: #ffffff;
    color: #0f172a; /* כחול-שחור כהה לטקסט */
    padding: 16px 32px;
    border-radius: 16px; 
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 12px 24px -8px rgba(255, 255, 255, 0.15), inset 0 -2px 2px rgba(0, 0, 0, 0.05);
    border: none;
    display: inline-flex;
    align-items: center;
}

.modern-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -8px rgba(255, 255, 255, 0.25), inset 0 -2px 2px rgba(0, 0, 0, 0.05);
}

/* --- Founders Philosophy Section (Tight Layout) --- */
.founders-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; /* צמצום המרווח בין הכרטיסים */
}

.philosophy-card {
    padding: 30px 25px; /* צמצום הבאפר בתוך הכרטיס */
    display: flex;
    flex-direction: column;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.founder-bw-img {
    width: 65px; /* הקטנה קלה של התמונה כדי לחסוך מקום */
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.philosophy-card:hover .founder-bw-img {
    filter: grayscale(0%);
}

.philosophy-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* מבטיח שהאייקון והטקסט מתחילים מאותו קו עליון */
}

.philosophy-icon {
    width: 50px; /* גודל קבוע ומדויק לאייקונים */
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.philosophy-text {
    flex: 1;
}

.philosophy-title {
    color: var(--text-main);
    font-size: 1.25rem; /* הקטנה קלה של הכותרת */
    margin-bottom: 8px;
}

.philosophy-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem; /* הקטנה קלה של הטקסט כדי שייכנס במסך */
    margin: 0;
}

@media (max-width: 992px) {
    .founders-philosophy-grid { grid-template-columns: 1fr; }
    #core-beliefs h2 { font-size: 2rem; }
}

/* --- Professional Contact Section --- */
.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.method-card:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.method-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.method-text strong {
    font-size: 1rem;
    color: var(--text-main);
}

/* Form Styling */
.form-container-new {
    padding: 40px;
    background: #ffffff;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-field label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.input-field input, .input-field textarea {
    margin-bottom: 0; /* ביטול המרווח הישן */
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

/* מובייל */
@media (max-width: 992px) {
    .contact-wrapper-new { grid-template-columns: 1fr; }
    .input-row { grid-template-columns: 1fr; }
}

.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center; /* הסוד למרכוז הסימטרי! */
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: center; /* שומר על הקלפים במרכז הגובה של הטופס */
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px; /* צמצום קל כדי שיהיה מהודק */
    background: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.method-card:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

/* אפקט קטן למייל כשהוא מועתק */
.method-card.copied {
    border-color: #10b981;
    background: #f0fdf4;
}

/* --- Tightened Contact Section --- */
/* --- Optimized Contact Layout --- */
.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center; /* שומר על איזון גובה */
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 22px; /* הגדלת המרווח בין הקישורים כדי שימלאו את הגובה */
}

.method-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px; /* הגדלת ה-Padding של הקישורים לפרופורציה טובה יותר */
    background: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.method-card:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.method-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Compact Form Styles */
.form-container-new {
    padding: 30px 35px; /* מהודק יותר */
    background: #ffffff;
}

.input-field {
    margin-bottom: 12px;
}

.input-field label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.input-field input, .input-field textarea {
    padding: 10px 14px;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .contact-wrapper-new { grid-direction: column; gap: 30px; }
    .contact-methods { gap: 15px; }
}

/* ==========================================
   New Core Beliefs & Founders Layout 
   ========================================== */

.founders-profile-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 20px;
}

.founder-profile {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: var(--panel-shadow);
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.founder-profile:hover .founder-avatar {
    filter: grayscale(0%);
    transform: scale(1.05);
    border-color: var(--accent);
}

.founder-profile h4 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.founder-profile .founder-title {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
}

.founder-profile .founder-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Core Values Box */
.core-values-box {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Two columns separated by an auto sizing divider */
    gap: 40px;
    align-items: start;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-divider {
    width: 1px;
    height: 100%;
    background-color: #e5e7eb;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .founders-profile-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .core-values-box {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 30px;
        padding: 30px 20px;
    }
    
    .value-divider {
        width: 100%;
        height: 1px; /* Horizontal line on mobile */
    }
}