/* מערכת עיצוב - הופמן מנהלי כספים - לפי איפיון-עיצוב.md */

@font-face { font-family:'OS Aran'; src:url('../fonts/OSAran400.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'OS Aran'; src:url('../fonts/OSAran500.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'OS Aran'; src:url('../fonts/OSAran700.woff2') format('woff2'); font-weight:700; font-display:swap; }
@font-face { font-family:'OS Aran'; src:url('../fonts/OSAran800.woff2') format('woff2'); font-weight:800; font-display:swap; }

:root {
  --ink: #14181B;
  --bg: #FFFFFF;
  --bg-alt: #F4F6F4;
  --green: #3dd400;
  --green-dark: #1E7D00;
  --border: #E3E7E3;
  --font-head: 'OS Aran', 'Heebo', sans-serif;  /* החלפת פונט: לשנות רק כאן */
  --font-body: 'Heebo', 'OS Aran', sans-serif;
  --container: 1140px;
  --narrow: 760px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: var(--narrow); }

/* ===== טיפוגרפיה ===== */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; }
h2 { font-size: clamp(24px, 2.8vw, 30px); font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
p { max-width: 720px; }
p + p { margin-top: 14px; }

/* ===== כפתורים ===== */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 8px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  font-family: var(--font-body); transition: filter .15s ease;
}
.btn-primary { background: var(--green); color: var(--ink); }
.btn-primary:hover { filter: brightness(.92); }

a { color: var(--green-dark); }
.arrow-link {
  display: inline-block; margin-top: 14px; font-weight: 500;
  color: var(--green-dark); text-decoration: none;
}
.arrow-link:hover { text-decoration: underline; }

/* ===== הדר ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }
.logo img { height: 34px; display: block; }
.site-nav { display: flex; gap: 22px; margin-inline-start: auto; }
.site-nav a { color: var(--ink); text-decoration: none; font-size: 15px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green-dark); }
.btn-header { padding: 9px 20px; font-size: 15px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset-inline-start: -140px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 2px solid var(--ink); opacity: .05;
  box-shadow: 0 0 0 40px rgba(20,24,27,.03), 0 0 0 80px rgba(20,24,27,.02);
  pointer-events: none;
}
.hero h1 { max-width: 800px; margin-bottom: 18px; }
.hero-sub { font-size: clamp(17px, 2vw, 19px); max-width: 720px; margin-bottom: 28px; color: #333; }

/* ===== רצועת עדויות ===== */
.quotes-strip { background: var(--bg-alt); padding: 48px 0; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.quote blockquote { font-size: 19px; font-weight: 500; line-height: 1.5; }
.quote figcaption { margin-top: 10px; font-size: 14px; color: #555; }

/* ===== סקשנים ===== */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }
.section-intro { margin-bottom: 32px; }
.section-footer { margin-top: 28px; }

/* ציטוט בגוף עמוד */
.section .quote {
  border-inline-start: 3px solid var(--green);
  background: var(--bg-alt); padding: 18px 22px; margin-top: 22px; border-radius: 0 8px 8px 0;
}
.section.alt .quote { background: var(--bg); }

/* ===== פיצ'רים ===== */
.features { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; }
.features.stacked { grid-template-columns: 1fr; max-width: 760px; }
.features h3 { display: flex; align-items: center; gap: 10px; }
.ring-bullet {
  flex: none; width: 14px; height: 14px; border-radius: 50%;
  border: 3px solid var(--green);
}

/* ===== כרטיסים ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  border: 1px solid var(--border); border-radius: 12px; padding: 32px;
  background: var(--bg); transition: border-color .15s ease;
}
.card:hover { border-color: var(--green); }

/* ===== טבעות ===== */
.rings-section { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
.rings-figure svg { width: 100%; height: auto; display: block; }
.rings-labels {
  display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none;
  counter-reset: ring; margin-bottom: 18px; font-weight: 700; font-family: var(--font-head);
}
.rings-labels li::before {
  counter-increment: ring; content: counter(ring);
  display: inline-block; width: 22px; height: 22px; line-height: 22px;
  border-radius: 50%; background: var(--ink); color: #fff;
  font-size: 12px; text-align: center; margin-inline-end: 6px;
}

/* ===== בלוק מודגש (MRI) ===== */
.highlight-box {
  border: 2px solid var(--ink); border-radius: 12px; padding: 40px;
  position: relative;
}
.highlight-box::after {
  content: ""; position: absolute; top: -12px; inset-inline-start: 32px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); border: 4px solid var(--bg);
}

/* ===== מסלולים ===== */
.tracks {
  list-style: none; display: flex; justify-content: space-between; gap: 12px;
  margin: 36px 0 0; position: relative; max-width: 900px;
}
.tracks::before {
  content: ""; position: absolute; top: 10px; inset-inline: 40px;
  height: 2px; background: var(--border);
}
.tracks li {
  position: relative; text-align: center; font-weight: 700;
  font-family: var(--font-head); flex: 1;
}
.track-dot {
  display: block; width: 20px; height: 20px; margin: 0 auto 10px;
  border-radius: 50%; border: 4px solid var(--green); background: var(--bg);
  position: relative; z-index: 1;
}

/* ===== רשימת קישורים ===== */
.link-list { list-style: none; columns: 2; column-gap: 48px; }
.link-list li { margin-bottom: 12px; break-inside: avoid; }
.link-list .arrow-link { margin-top: 0; }
.link-desc { color: #555; font-size: 15px; }

/* ===== FAQ אקורדיון ===== */
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0; padding-inline-end: 44px;
  position: relative; font-family: var(--font-head);
  font-weight: 700; font-size: 19px; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; inset-inline-end: 4px; top: 20px;
  font-size: 26px; font-weight: 400; line-height: 1;
  color: var(--green-dark);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-item summary:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 2px; border-radius: 4px; }
.faq-a { padding: 0 0 24px; }
.faq-a p { max-width: none; color: #333; }

/* ===== CTA סוגר ===== */
.closing-cta { background: var(--ink); color: #fff; padding: 96px 0; text-align: center; }
.closing-cta h2 { color: #fff; }
.closing-cta p { margin: 0 auto 8px; }
.closing-cta .btn { margin-top: 24px; }
.cta-contact { margin-top: 28px !important; font-size: 15px; }
.cta-contact a { color: #fff; text-decoration: none; }
.cta-contact a:hover { text-decoration: underline; }

/* ===== פוטר ===== */
.site-footer { background: var(--ink); color: #cfd4d1; border-top: 1px solid #2a2f33; padding: 48px 0; font-size: 14px; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 18px; margin: 18px 0; }
.footer-inner a { color: #cfd4d1; text-decoration: none; }
.footer-inner a:hover { color: #fff; }
.footer-logo { height: 28px; }
.footer-legal { margin-top: 12px; color: #9aa19d; }

/* ===== כפתור חיוג נייד ===== */
.mobile-call {
  display: none; position: fixed; bottom: