:root {
    --primary: #0ea5e9; /* כחול שמיים עז */
    --dark: #0f172a;    /* כחול-שחור מודרני */
    --slate: #f1f5f9;
    --border: #e2e8f0;
    --text: #334155;
    --code-bg: #1e293b; /* רקע כהה לקוד */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    direction: rtl; 
    font-family: 'Assistant', sans-serif; 
    color: var(--text); 
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden; 
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar { 
    padding: 15px 0; 
    border-bottom: 1px solid var(--border); 
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 26px; font-weight: 800; color: var(--dark); }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 700; font-size: 15px; }
.nav-cta { background: var(--dark); color: #fff !important; padding: 10px 20px; border-radius: 6px; }

/* Hero - Split Layout */
.hero { padding: 120px 0 100px; background: var(--slate); border-bottom: 1px solid var(--border); }
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-text { max-width: 650px; }
h1 { font-size: clamp(2.5rem, 6vw, 3.8rem); font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 20px; }
.highlight { color: var(--primary); }
.hero p { font-size: 1.25rem; color: var(--text); margin-bottom: 40px; }
.btn-main { background: var(--primary); color: #fff; text-decoration: none; padding: 18px 35px; border-radius: 6px; font-weight: 800; display: inline-block; transition: 0.3s; }

/* Code Box Styling - Updated for New Palette */
.code-box { 
    background: var(--code-bg); 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1); 
    border: 1px solid #334155;
    direction: ltr; /* קוד תמיד משמאל לימין */
    font-family: monospace;
}
.code-header { 
    background: #0f172a; 
    padding: 12px 18px; 
    display: flex; 
    gap: 8px; 
    border-bottom: 1px solid #334155;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.code-content pre { padding: 25px; margin: 0; overflow-x: auto; }
.code-content code { color: #94a3b8; font-size: 14px; line-height: 1.5; }

/* Syntax Highlighting - Using Site Colors */
.code-content .keyword { color: var(--primary); font-weight: bold; } /* כחול שמיים */
.code-content .string { color: #f1f5f9; } /* Slate בהיר */
.code-content .function { color: #38bdf8; } /* תכלת בהיר */
.code-content .comment { color: #64748b; font-style: italic; } /* אפור דהוי */

/* Features */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-box { padding: 40px; border: 1px solid var(--border); border-radius: 8px; transition: 0.3s; background: #fff; }
.feature-box:hover { border-color: var(--primary); background: var(--slate); transform: translateY(-3px); }
.f-num { font-size: 45px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 15px; }
.feature-box h3 { font-weight: 800; color: var(--dark); margin-bottom: 12px; }

/* Pricing Table */
.pricing-minimal { padding: 100px 0; background: var(--dark); color: #fff; }
.title-bg { font-size: 36px; margin-bottom: 50px; font-weight: 800; text-align: center;}
.price-table { border: 1px solid #334155; border-radius: 12px; overflow: hidden; max-width: 900px; margin: 0 auto;}
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 30px 40px; border-bottom: 1px solid #334155; background: #1e293b; }
.price-item.popular { background: #0c4a6e; border-right: 6px solid var(--primary); }
.p-info h4 { font-size: 20px; font-weight: 800; }
.p-info span { font-size: 16px; color: #94a3b8; }
.p-action a { color: #fff; text-decoration: none; font-weight: 800; border: 2px solid #fff; padding: 10px 20px; border-radius: 6px; font-size: 14px; }

/* FAQ */
.faq-section { padding: 100px 0; }
.section-title { font-size: 36px; font-weight: 800; margin-bottom: 50px; text-align: center; color: var(--dark);}
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 900px; margin: 0 auto; }
.faq-item h4 { font-weight: 800; color: var(--dark); margin-bottom: 12px; font-size: 19px; border-right: 4px solid var(--primary); padding-right: 18px; }
.faq-item p { color: var(--text); padding-right: 22px; font-size: 1.05rem;}

/* Contact */
.contact-final { padding: 100px 0 140px; }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; background: var(--slate); padding: 70px; border-radius: 15px; align-items: center; border: 1px solid var(--border);}
.contact-text h2 { font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; color: var(--dark); }
.contact-text p { font-size: 1.2rem; color: var(--primary); font-weight: 700;}
.contact-form-side input, .contact-form-side textarea { width: 100%; padding: 18px; margin-bottom: 18px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 16px; background: #fff; }
.btn-submit { width: 100%; padding: 18px; background: var(--dark); color: #fff; border: none; font-weight: 800; border-radius: 8px; cursor: pointer; font-size: 18px; transition: 0.3s;}
.btn-submit:hover { background: var(--primary); }

/* Mobile Optimizations */
@media (max-width: 1000px) {
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { text-align: center; margin: 0 auto;}
    .hero p { margin-bottom: 30px;}
    .hero-btns { display: flex; justify-content: center;}
    .contact-box { grid-template-columns: 1fr; padding: 40px; text-align: center;}
    .contact-text h2 { font-size: 36px;}
}

@media (max-width: 850px) {
    .nav-links { display: none; }
    .price-item { flex-direction: column; text-align: center; gap: 20px; }
    h1 { font-size: 2.8rem; }
}