:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --brand:#b45309; /* amber */
  --brand2:#f59e0b;
  --card:#f9fafb;
  --border:#e5e7eb;
  --shadow:0 10px 20px rgba(0,0,0,.06);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans Hebrew",sans-serif;
  background:var(--bg);
  color:var(--text);
  direction:rtl;
}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:14px}
.brand{display:flex;align-items:center;gap:12px}
.logo{
  width:42px;height:42px;border-radius:14px;
  background:linear-gradient(135deg,var(--brand2),var(--brand));
  box-shadow:var(--shadow);
}
.brand h1{font-size:16px;margin:0;line-height:1.1}
.brand small{display:block;color:var(--muted);font-size:12px;margin-top:2px}
.menu{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:flex-start}
.menu a{
  font-size:14px;color:#111827;padding:8px 10px;border-radius:12px;
}
.menu a:hover{background:#f3f4f6}
.cta{
  background:linear-gradient(135deg,var(--brand2),var(--brand));
  color:white !important;
  padding:10px 14px !important;
  border-radius:14px;
  box-shadow:var(--shadow);
}
.hero{
  background:linear-gradient(180deg,#fffbeb 0%, #fff 70%);
  padding:56px 0 30px;
}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:22px;align-items:center}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr}}
.kicker{color:var(--brand);font-weight:700;letter-spacing:.2px}
.hero h2{font-size:42px;margin:8px 0 10px;line-height:1.1}
@media(max-width:520px){.hero h2{font-size:34px}}
.hero p{color:var(--muted);font-size:18px;line-height:1.65;margin:0 0 18px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:16px;
  border:1px solid var(--border);
  background:white;
  font-weight:700;font-size:15px;
}
.btn.primary{
  border:none;color:white;
  background:linear-gradient(135deg,var(--brand2),var(--brand));
  box-shadow:var(--shadow);
}
.btn:hover{transform:translateY(-1px)}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.badge{
  background:#fff;border:1px solid var(--border);
  padding:8px 10px;border-radius:999px;
  color:#111827;font-size:13px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.grid{display:grid;gap:16px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
@media(max-width:900px){.grid-3,.grid-2{grid-template-columns:1fr}}
.section{padding:46px 0}
.section h3{font-size:28px;margin:0 0 14px}
.section p.lead{color:var(--muted);font-size:16px;line-height:1.7;margin:0 0 18px}
.icon{font-size:22px}
.card h4{margin:8px 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted);line-height:1.65}
.video{
  width:100%;
  border-radius:16px;
  border:1px solid var(--border);
  background:#000;
}
.split{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:900px){.split{grid-template-columns:1fr}}
.quote{
  border-right:4px solid var(--brand2);
  padding-right:12px;
}
.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}
.whatsapp{
  position:fixed;left:18px;bottom:18px;z-index:80;
  background:#25D366;color:white;
  padding:12px 14px;border-radius:999px;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
  font-weight:800;
}
.small{font-size:13px;color:var(--muted)}
.kv{display:flex;gap:10px;flex-wrap:wrap}
.kv span{background:#fff;border:1px solid var(--border);padding:8px 10px;border-radius:14px}
.form{
  display:grid;gap:10px;max-width:520px;margin:0 auto;
}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  font-size:15px;
  font-family:inherit;
}
textarea{min-height:120px;resize:vertical}
.form .btn{width:100%}