/* ===================================================================
   מגן עוז אבטחה — ערכת עיצוב משותפת (מבוססת דף הנחיתה v4)
   =================================================================== */
:root {
  --white:  #ffffff;
  --bg:     #f7f9f7;
  --green:  #1a5c1a;
  --green2: #2d7a2d;
  --green3: #4a9c4a;
  --gold:   #e8a800;
  --gold-dark: #c79000;
  --dark:   #0d1a0d;
  --text:   #1a2a1a;
  --text2:  #4a6a4a;
  --text3:  #8aaa8a;
  --border: #deeede;
  /* כינויים לרכיבים משותפים */
  --muted: var(--text2);
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── ניווט ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}
.site-nav::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,168,0,0.55), transparent);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 900; color: var(--dark); white-space: nowrap; }
.nav-logo-shield { height: 38px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-shield {
  width: 36px; height: 36px;
  background: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.nav-links {
  display: flex; gap: 6px; align-items: center;
  font-size: 14.5px; font-weight: 600; color: var(--text2); list-style: none;
}
.nav-links a {
  position: relative; display: block;
  padding: 9px 16px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--green); background: #f0f7f0; }
.nav-links a.active {
  color: var(--green); font-weight: 800; background: #eaf5ea;
}
.nav-links a.active::after {
  content: ""; position: absolute; right: 16px; left: 16px; bottom: 3px; height: 2px;
  border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.nav-cta {
  background: var(--green); color: var(--white);
  font-size: 14px; font-weight: 700; margin-right: 8px;
  padding: 10px 22px; border-radius: 0;
  transition: all .3s cubic-bezier(.2,.8,.2,1); box-shadow: 0 4px 14px rgba(26,92,26,0.2);
}
.nav-cta:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,92,26,0.3); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--dark); cursor: pointer; }

/* ── כפתורים ── */
.btn-primary {
  background: var(--green); color: var(--white);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 0;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s cubic-bezier(.2,.8,.2,1); box-shadow: 0 6px 18px rgba(26,92,26,0.22);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--green2); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,92,26,0.32); }
.btn-secondary {
  background: transparent; color: var(--text);
  font-size: 15px; font-weight: 600;
  padding: 14px 24px; border-radius: 0; border: 1.5px solid var(--border);
  transition: all .3s cubic-bezier(.2,.8,.2,1); cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.btn-gold {
  background: var(--gold); color: var(--dark);
  font-size: 14px; font-weight: 800;
  padding: 14px 24px; border-radius: 0; border: none; cursor: pointer;
  font-family: inherit; display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s cubic-bezier(.2,.8,.2,1); box-shadow: 0 6px 18px rgba(232,168,0,0.22);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(232,168,0,0.35); }
.btn-block { width: 100%; justify-content: center; }

/* ── מקטעים וכותרות ── */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--green); margin-bottom: 10px;
}
.section-title { font-size: 44px; font-weight: 900; color: var(--dark); margin-bottom: 8px; line-height: 1.15; letter-spacing: -0.8px; }
.section-sub { font-size: 15px; color: var(--text2); margin-bottom: 40px; max-width: 500px; }

/* ── כרטיסיות כלליות + גריד ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1), border-color .35s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #cfe6cf; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* ── טפסים ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 700; font-size: 13px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: 'Heebo', sans-serif; font-size: 14px; background: #fff; color: var(--text);
  transition: border .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,92,26,.1);
}

/* ── טבלאות ── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; min-width: 540px; }
th, td { padding: 14px 16px; text-align: right; border-bottom: 1px solid var(--border); font-size: 14px; }
th { background: #f0f7f0; color: var(--green); font-weight: 800; }
tbody tr:hover { background: #f7f9f7; }
tbody tr:last-child td { border-bottom: none; }

/* ── תגיות ── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-green { background: #e8f5e8; color: var(--green); }
.badge-gold  { background: #fdf0d0; color: var(--gold-dark); }
.badge-red   { background: #fbe3e3; color: #b02525; }

/* ===================================================================
   רכיבי דף הנחיתה
   =================================================================== */
.hero {
  padding: 80px 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; max-width: 1100px; margin: 0 auto;
}
.hero-left { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e8f5e8; border: 1px solid #b0d8b0; color: var(--green);
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-title { font-size: 60px; font-weight: 900; line-height: 1.05; color: var(--dark); margin-bottom: 16px; letter-spacing: -1.2px; }
.hero-title .highlight { color: var(--green); position: relative; display: inline-block; }
.hero-title .highlight-gold { color: var(--gold); position: relative; }
.hero-sub { font-size: 16px; color: var(--text2); line-height: 1.8; max-width: 460px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-right { flex: 1; position: relative; min-height: 340px; }
.float-card {
  background: var(--white); border-radius: 18px; padding: 20px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08); position: absolute; border: 1px solid var(--border);
}
.fc-1 { top: 0; right: 0; width: 200px; }
.fc-2 { top: 80px; right: 180px; width: 180px; background: var(--green); color: #fff; border-color: var(--green); }
.fc-3 { bottom: 0; right: 40px; width: 220px; }
.fc-icon { font-size: 28px; margin-bottom: 8px; }
.fc-title { font-size: 14px; font-weight: 800; margin-bottom: 3px; }
.fc-desc { font-size: 12px; opacity: 0.65; }
.fc-price { font-size: 20px; font-weight: 900; color: var(--gold); margin-top: 6px; }
.fc-price-white { font-size: 20px; font-weight: 900; color: #fff; margin-top: 6px; }

.trust-bar {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text2); }
.trust-item .trust-icon { width: 19px; height: 19px; flex-shrink: 0; color: var(--green); display: block; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sc-wide { grid-column: span 2; }
.service-card { border-radius: 18px; padding: 28px 24px; position: relative; overflow: hidden; cursor: pointer; box-shadow: 0 6px 22px rgba(0,0,0,0.05); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.sc-green { background: var(--green); color: #fff; }
.sc-gold  { background: var(--gold); color: var(--dark); }
.sc-light { background: var(--white); border: 1.5px solid var(--border); color: var(--text); }
.sc-dark  { background: var(--dark); color: #fff; }
.sc-pale  { background: #f0f7f0; border: 1.5px solid var(--border); color: var(--text); }
.sc-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.sc-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.sc-desc { font-size: 13px; opacity: 0.75; line-height: 1.6; margin-bottom: 14px; }
.sc-price { font-size: 20px; font-weight: 900; display: inline-block; }
.sc-price-tag { font-size: 11px; font-weight: 600; opacity: 0.7; display: block; margin-top: 2px; }
.sc-arrow { position: absolute; top: 24px; left: 24px; font-size: 18px; opacity: 0.5; }

.process-section { background: var(--dark); padding: 80px 40px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.process-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px 20px; position: relative; }
.process-num { font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.06); position: absolute; top: 12px; left: 16px; line-height: 1; }
.process-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.process-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.process-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.exp-section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.exp-card { border-radius: 18px; padding: 28px 24px; display: flex; gap: 16px; align-items: flex-start; }
.exp-card-green { background: var(--green); color: #fff; }
.exp-card-pale { background: #fff; border: 1.5px solid var(--border); }
.exp-card-gold { background: var(--gold); color: var(--dark); }
.exp-card-dark { background: var(--dark); color: #fff; }
.exp-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.exp-icon-dark { background: rgba(255,255,255,0.08); }
.exp-icon-pale { background: #e8f5e8; }
.exp-title { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.exp-desc { font-size: 13px; opacity: 0.75; line-height: 1.6; }
.exp-meta { font-size: 11px; opacity: 0.5; margin-top: 6px; font-weight: 600; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-num { font-size: 40px; font-weight: 900; color: var(--green); }
.stat-label { font-size: 13px; color: var(--text2); margin-top: 4px; }

.faq-section { padding: 80px 40px; background: var(--white); }
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: all .2s; }
.faq-item.open { border-color: var(--green); }
.faq-q { padding: 18px 20px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: space-between; user-select: none; }
.faq-item.open .faq-q { color: var(--green); }
.faq-icon { font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--text2); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

.cta-section { padding: 80px 40px; background: var(--green); text-align: center; }
.cta-title { font-size: 40px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-form { display: flex; gap: 10px; justify-content: center; max-width: 480px; margin: 0 auto; }
.cta-input { flex: 1; padding: 14px 18px; border-radius: 12px; border: none; font-size: 14px; font-family: 'Heebo', sans-serif; outline: none; }
.cta-btn { background: var(--gold); color: var(--dark); font-size: 14px; font-weight: 800; padding: 14px 24px; border-radius: 0; border: none; cursor: pointer; white-space: nowrap; transition: all .2s; }
.cta-btn:hover { transform: translateY(-2px); }

/* ── כותרת תחתונה ── */
.site-footer { background: var(--dark); padding: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.6; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 800; color: #fff; }
.footer-links { display: flex; gap: 24px; list-style: none; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── עזרי כותרת לעמודי מערכת ── */
.page-head { padding: 40px 40px 0; max-width: 1100px; margin: 0 auto; }
.page-head h1 { font-size: 38px; font-weight: 900; color: var(--dark); letter-spacing: -0.6px; }
.page-head p { color: var(--text2); font-size: 15px; margin-top: 4px; }
.page-head::after { content: ""; display: block; height: 2px; width: 100%; margin-top: 20px; border-radius: 2px; background: linear-gradient(90deg, var(--gold), rgba(232,168,0,0)); opacity: 0.55; }

/* ── רספונסיב ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 64px; right: 0; left: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 14px 20px; gap: 16px; display: none;
  }
  .nav-links.open { display: flex; }
  .container, .section, .page-head { padding-left: 20px; padding-right: 20px; }
  .hero { flex-direction: column; padding: 40px 20px 32px; }
  .hero-title { font-size: 34px; }
  .section-title { font-size: 30px; }
  .page-head h1 { font-size: 28px; }
  .hero-right { display: none; }
  .section { padding: 48px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .sc-gold { height: auto; min-height: unset; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .process-section { padding: 48px 20px; }
  .faq-section { padding: 48px 20px; }
  .cta-section { padding: 48px 20px; }
  .cta-form { flex-direction: column; }
  .site-footer { padding: 24px 20px; }
  .footer-links { display: none; }
}
@media (max-width: 520px) {
  .services-grid, .process-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sc-wide { grid-column: auto; }
  .hero-title { font-size: 30px; }
}

/* ===================================================================
   סמלי לוגו (תמונות) + פוליש יוקרתי
   =================================================================== */
.shield-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 5px;
  background: #fff; border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  flex-shrink: 0;
}
.shield-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.shield-mark-xs { width: 24px; height: 24px; padding: 3px; border-radius: 7px; box-shadow: 0 2px 6px rgba(0,0,0,0.12); }
.shield-mark-lg { width: 64px; height: 64px; padding: 9px; border-radius: 16px; box-shadow: 0 8px 22px rgba(26,92,26,0.14); }

/* איקונים מונוכרום מקצועיים (מחליפים אמוג'ים) */
svg.icn {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em;
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}

/* בס"ד — פינה ימנית עליונה של מסמכי ההסכם */
.bsd { text-align: right; font-size: 13px; font-weight: 700; color: var(--text2); margin-bottom: 6px; letter-spacing: .5px; }

/* קו הפרדה זהב עדין בין סקציות */
.gold-divider {
  border: none; height: 2px; max-width: 1100px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* צללים עדינים על רכיבי מערכת משותפים (לוח בקרה / ניהול) */
.kpi    { box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.kpi:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.panel  { box-shadow: var(--shadow-sm); }
.quick a { box-shadow: var(--shadow-sm); }
