    :root {
      --blck: #0c1410;
      --wht: #fff;
      --g3: #fff;
      --accent: #4aaa1a;
      --accent-deep: #2e7d0f;
      --orange: #9a4f00;
      --orng-bg: rgba(245, 166, 35, 0.15);
      /* #f5a623;*/
      --text: #1c201d;
      --border: rgba(46, 125, 14, 0.2);
      --border2: rgba(46, 125, 14, 0.09);
      --font: 'IBM Plex Sans Hebrew', 'Cascadia Code', monospace;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font);
      direction: rtl;
      overflow-x: hidden
    }

    a {
      text-decoration: none;
      color: inherit
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--blck)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 2px
    }

    /* ── GRID OVERLAY ── */
    .grid-bg {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background-image:
        linear-gradient(var(--border2) 1px, transparent 1px),
        linear-gradient(90deg, var(--border2) 1px, transparent 1px); */
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    /* ── NAV ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 40px;
      background: #fff;
      border-bottom: 2px solid var(--border);
    }

    .logo {
      font-size: 20px;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0;
      font-family: "Shadows Into Light Two", cursive;
      color: var(--accent-deep);
    }

    .nav-links {
      display: flex;
      gap: 28px
    }

    .nav-links a {
      font-size: 16px;
      transition: color .2s;
    }

    .nav-links a:hover,
    .nav-links a:focus {
      color: var(--accent)
    }

    .nav-end {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .btn-outline {
      font-size: 13px;
      border: 1px solid var(--border);
      padding: 6px 16px;
      border-radius: 4px;
      color: var(--text);
      background: transparent;
      cursor: pointer;
      /* font-family: var(--mono); */
      transition: all .2s
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent)
    }

    .btn-primary {
      font-size: 13px;
      background: var(--accent);
      color: var(--blck);
      padding: 6px 18px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      font-weight: 700;
      /* font-family: var(--mono); */
      transition: all .2s;
      box-shadow: 0 0 16px rgba(46, 125, 14, 0.25)
    }

    .btn-primary:hover {
      box-shadow: 0 0 28px rgba(46, 125, 14, 0.5);
      transform: translateY(-1px)
    }

    /* ── ALERT ── */
    .alert-band {
      position: relative;
      z-index: 10;
      border-bottom: 1px solid rgba(245, 166, 35, 0.3);
      background: rgba(245, 166, 35, 0.2);
      padding: 9px 40px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .alert-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
      animation: pulse-dot 2s infinite
    }

    /* עיצוב הקישורים הכללי בתוך הניווט */
    .nav-mid a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      padding: 6px 12px;
      border-radius: 6px;
      transition: all 0.25s ease;
      position: relative;
    }

    .nav-mid a:first-child {
      color: #6495ed
    }

    /* אפקט ריחוף עכבר (Hover) עדין */
    .nav-mid a:hover {
      color: var(--accent-deep);
      background-color: rgba(46, 125, 14, 0.05);
    }

    /* הדגשה ייחודית לקישורי המערכות (תוכלי להוסיף להם קלאס מזהה ב-HTML, למשל class="nav-sys") */
    .nav-mid a.nav-sys {
      font-weight: 700;
      /* טקסט מעט עבה יותר כדי להבליט אותם */
      color: #1a1a1a;
    }

    /* יצירת קו הפרדה קטן בין המערכות לבין שאר עמודי האתר */
    .nav-mid a.nav-sys:last-of-type::after {
      content: "";
      position: absolute;
      left: -8px;
      /* ממקם את הקו משמאל למערכת האחרונה */
      top: 25%;
      height: 50%;
      width: 1px;
      background-color: var(--border2);
    }

    @keyframes pulse-dot {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6)
      }

      50% {
        box-shadow: 0 0 0 6px rgba(245, 166, 35, 0)
      }
    }

    .alert-text {
      font-size: 16px;
      color: var(--orange);
      /* font-family: var(--mono) */
    }

    .alert-text strong {
      font-weight: 700
    }

    .alert-cta {
      margin-right: auto;
      font-size: 16px;
      font-family: var(--font);
      background: rgba(245, 166, 35, 0.2);
      color: var(--orange);
      padding: 4px 14px;
      border-radius: 3px;
      border: 1px solid rgba(245, 166, 35, 0.4);
      cursor: pointer;
      /* font-family: var(--mono); */
      transition: all .2s;
      white-space: nowrap
    }

    .alert-cta:hover {
      background: rgba(245, 166, 35, 0.35)
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 92vh;
      padding: 50px 5% 70px;
      display: flex;
      align-items: center;
      gap: 60px;
      overflow: hidden;
      background: var(--wht);
    }

    .hero-left {
      flex: 1 1 50%;
      min-width: 0;
      position: relative;
      z-index: 2;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -200px;
      right: -200px;
      bottom: -200px;
      background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(46, 125, 14, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 400px 400px at 80% 20%, rgba(74, 170, 26, 0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.4;
    }

    .hero-eyebrow {
      /* font-family: var(--mono); */
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--accent-deep);
      text-transform: uppercase;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--accent)
    }

    .hero-h {
      font-size: clamp(38px, 5.2vw, 72px);
      font-weight: 900;
      line-height: 0.8;
      letter-spacing: -0.03em;
      margin-bottom: 32px;
      position: relative;
    }

    .hero-h .line1 {
      display: block;
      color: var(--accent)
    }

    .hero-h .line2 {
      display: block;
      margin-top: 10px;
      color: var(--blck);
    }

    .hero-h .line3 {
      display: block;
      color: var(--accent);
      font-weight: 300;
      font-size: 0.65em;
      letter-spacing: -0.02em;
      margin-top: 6px
    }

    .hero-bottom {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-top: 40px
    }

    .hero-lead {
      font-size: 19px;
      font-weight: 800;
      color: #161616;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .hero-desc {
      font-size: 16px;
      color: #4a4f57;
      line-height: 1.9;
      max-width: 520px;
      margin-bottom: 28px;
    }

    .hero-desc strong {
      color: #161616;
      font-weight: 700
    }

    .hero-highlight {
      /* color: #9a4f00;
      background: rgba(245, 166, 35, 0.15); */
      /* padding: 1px 6px;
      border-radius: 3px;
      font-weight: 700;
      white-space: nowrap */
    }

    .hero-ctas {
      display: flex;
      flex-direction: row;
      gap: 14px;
      align-items: center;
      flex-shrink: 0;
      margin-bottom: 36px;
    }

    .btn-hero {
      font-size: 18px;
      font-weight: 900;
      background: var(--accent);
      color: #fff;
      padding: 16px 36px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      letter-spacing: -0.01em;
      box-shadow: 0 4px 24px rgba(46, 125, 14, 0.35);
      transition: all .22s;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .btn-hero:hover {
      background: #256009;
      box-shadow: 0 8px 36px rgba(46, 125, 14, 0.5);
      transform: translateY(-2px)
    }

    .btn-ghost {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      background: #fff;
      border: 1.5px solid var(--border);
      padding: 15px 28px;
      border-radius: 6px;
      cursor: pointer;
      transition: all .22s;
      /* font-family: "IBM Plex Sans Hebrew", 'Heebo', sans-serif; */
      white-space: nowrap;
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(46, 125, 14, 0.04)
    }

    .hero-actions-row {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap
    }

    .iso-row-label {
      font-size: 12px;
      color: #8a8f98;
      letter-spacing: 0.02em;
      margin-bottom: 10px;
    }

    .iso-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center
    }

    .iso-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 16px;
      transition: box-shadow .2s, transform .2s, border-color .2s;
      cursor: default;
      background-color: var(--wht);
    }

    .iso-card:hover {
      box-shadow: 0 8px 24px rgba(46, 125, 14, 0.12);
      transform: translateY(-2px);
      border-color: var(--accent)
    }

    .iso-card img {
      width: 46px;
      height: 46px;
      object-fit: contain;
      border-radius: 4px;
      flex-shrink: 0
    }

    .iso-card-text {
      display: flex;
      flex-direction: column;
      gap: 2px
    }

    .iso-card-label {
      font-size: 13px;
      color: #161616;
      font-weight: 800;
      letter-spacing: 0.01em;
      white-space: nowrap
    }

    .iso-card-sub {
      font-size: 11px;
      color: #8a8f98;
      white-space: nowrap
    }

    /* ── HERO VISUAL ── */
    .hero-visual {
      position: relative;
      flex: 1 1 50%;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .hero-laptop {
      position: relative;
      width: 100%;
      max-width: 760px;
      z-index: 2;
    }

    .hero-laptop-frame {
      display: block;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    }

    .hero-laptop-screen-overlay {
      position: absolute;
      left: 17.4%;
      top: 28.2%;
      width: 64.6%;
      height: 42%;
      overflow: hidden;
      border-radius: 2px;
    }

    .hero-laptop-screen-overlay img,
    .hero-phone-screen-overlay img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .hero-phone-screen-overlay {
      position: absolute;
      left: 82.6%;
      top: 55.4%;
      width: 10.7%;
      height: 18.65%;
      overflow: hidden;
      border-radius: 2px;
    }

    .hero-blob {
      position: absolute;
      right: -10%;
      bottom: 13%;
      width: 45%;
      aspect-ratio: 1;
      background: var(--accent);
      border-radius: 50%;
      opacity: 0.9;
      z-index: -1;
    }

    /* ── FLOATING PARTICLES ── */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      overflow: hidden
    }

    .p-item {
      position: absolute;
      /* font-family: var(--mono); */
      font-size: 11px;
      color: rgba(46, 125, 14, 0.14);
      animation: float-up linear infinite;
      white-space: nowrap;
    }

    @keyframes float-up {
      from {
        transform: translateY(100vh) translateX(0);
        opacity: 0
      }

      10% {
        opacity: 1
      }

      90% {
        opacity: 1
      }

      to {
        transform: translateY(-200px) translateX(var(--drift));
        opacity: 0
      }
    }

    /* ── STATS ── */
    .stats-section {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--wht);
    }

    .stat-cell {
      padding: 36px 32px;
      border-left: 1px solid var(--border);
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .stat-cell:last-child {
      border-left: none
    }

    .stat-cell:hover {
      background: rgba(46, 125, 14, 0.04)
    }

    .stat-cell::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transform: scaleX(0);
      transition: transform .4s;
    }

    .stat-cell:hover::after {
      transform: scaleX(1)
    }

    .stat-n {
      font-size: 52px;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--accent);
      /* font-family: var(--mono); */
      text-shadow: 3px 3px 50px var(--accent);
    }

    .stat-l {
      font-size: 16px;
      color: var(--blck);
      margin-top: 6px;
      /* font-family: var(--mono) */
    }

    /* ── TICKER ── */
    .ticker {
      position: relative;
      z-index: 1;
      overflow: hidden;
      padding: 12px 0;
      background: var(--g3);
      border-bottom: 1px solid var(--border);
    }

    .ticker-inner {
      display: inline-flex;
      gap: 32px;
      animation: tick 30s linear infinite;
      white-space: nowrap
    }

    @keyframes tick {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .tick-item {
      font-size: 13px;
      color: var(--accent-deep);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      /* font-family: var(--mono) */
    }

    .tick-item .dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--accent);
      display: inline-block
    }

    /* ── SYSTEMS GRID ── */
    .systems-section {
      position: relative;
      z-index: 1;
      padding: 65px 40px
    }

    #section-about {
      background: var(--wht)
    }

    .section-header {
      margin-bottom: 48px
    }

    .section-tag {
      /* font-family: var(--mono); */
      font-size: 18px;
      color: var(--accent-deep);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .section-tag::before {
      content: '-'
    }

    .section-h {
      font-size: 42px;
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1
    }

    .section-h span {
      color: var(--accent)
    }

    /* ── ABOUT CONTENT ── */
    .about-content {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-width: 800px
    }

    .about-lead {
      font-size: 22px;
      font-weight: 800;
      color: var(--accent);
      line-height: 1.4
    }

    .about-text {
      font-size: 18px;
      line-height: 1.9;
      color: #161616
    }

    .about-highlight {
      color: var(--orange);
      background: var(--orng-bg);
      padding: 1px 6px;
      border-radius: 3px;
      font-weight: 700
    }

    .about-subhead {
      font-size: 19px;
      font-weight: 700;
      color: var(--accent);
      margin-top: 6px
    }

    .about-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 4px
    }

    .about-list .feat {
      font-size: 16px;
      color: #161616
    }

    .about-list .feat-check {
      color: var(--accent-deep)
    }

    /* עדכון ה-Grid שמכיל את הכרטיסים */
    .systems-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* יוצר 2 עמודות שוות בגודלן */
      gap: 24px;
      /* מרחק אסתטי בין הריבועים */
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* התאמת הכרטיס הבודד למבנה של ריבוע אנכי */
    .sys-row {
      display: flex;
      flex-direction: column;
      /* גורם לתוכן לזרום מלמעלה למטה ולא לרוחב */
      background: #ffffff;
      /* צבע רקע לבן נקי לכרטיס */
      border: 1px solid var(--border2);
      border-radius: 16px;
      /* פינות מעוגלות מודרניות */
      padding: 32px;
      /* ריווח פנימי עשיר */
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      /* צל עדין שנותן עומק */
      height: 100%;
      /* דואג שכל הריבועים בשורה יהיו בגובה אחיד */
    }

    /* אפקט ריחוף עכבר יפה ומזמין על הריבוע */
    .sys-row:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(46, 125, 14, 0.08);
      border-color: var(--accent);
    }

    /* סידור התוכן הפנימי בריבוע */
    .sys-content {
      display: flex;
      flex-direction: column;
      height: 100%;
      /* מאפשר שימוש ב-margin-top: auto לכפתור בתחתית */
      width: 100%;
    }

    /*.systems-grid {
      display: flex;
      flex-direction: column;
      gap: 24px
    }

    .sys-row {
      display: flex;
      align-items: stretch;
      gap: 32px;
      background: var(--wht);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .sys-row::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 3px;
      height: 0;
      background: var(--accent);
      transition: height .4s ease;
    }*/

    .sys-row:hover::before,
    .sys-row.haccp-card::before {
      height: 100%
    }

    /*.sys-content {
      flex: 1.1;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }*/

    .sys-media {
      position: relative;
      flex: 1;
      min-height: 280px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border);
      /* background: linear-gradient(135deg, rgba(46, 125, 14, 0.10), rgba(0, 0, 0, 0.6)); */
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .25s;
      display: none;
    }

    .sys-media:hover {
      border-color: var(--accent)
    }

    .media-play {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      transition: all .25s;
    }

    .sys-media:hover .media-play {
      /* background: var(--accent); */
      /* color: var(--blck); */
      transform: scale(1.08)
    }

    .media-label {
      position: absolute;
      bottom: 18px;
      font-size: 12px;
      letter-spacing: 0.1em;
      color: var(--accent);
      text-transform: uppercase
    }

    .card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 18px
    }

    .card-num {
      /* font-family: var(--mono); */
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 0.1em
    }

    .law-badge {
      /* font-family: var(--mono); */
      font-size: 11px;
      background: rgba(245, 166, 35, 0.15);
      border: 1px solid rgba(245, 166, 35, 0.4);
      color: var(--orange);
      padding: 3px 10px;
      border-radius: 3px;
      display: flex;
      align-items: center;
      gap: 6px;
      animation: badge-pulse 3s infinite;
    }

    @keyframes badge-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.3)
      }

      50% {
        box-shadow: 0 0 0 4px rgba(245, 166, 35, 0)
      }
    }

    .card-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .card-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.2;
      color: var(--accent)
    }

    .haccp-card .card-title {
      color: var(--accent);
      /* text-shadow: 0 0 20px rgba(46, 125, 14, 0.2) */
    }

    .card-lead {
      font-size: 16px;
      /* color: #fff; */
      line-height: 1.8;
      margin-bottom: 18px
    }

    .card-features {
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .feat {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      /* font-size: 16px; */
      /* color: #fff; */
      line-height: 1.5
    }

    .feat-check {
      color: var(--accent);
      flex-shrink: 0;
      /* font-family: var(--mono); */
      font-weight: 700
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      /* font-family: "IBM Plex Sans Hebrew", 'Heebo', sans-serif; */
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      text-decoration: none;
      padding: 10px 18px;
      border: 1.5px solid var(--accent);
      border-radius: 5px;
      background: rgba(46, 125, 14, 0.06);
      transition: all .22s;
      margin-top: 1em !important;
    }

    .card-link:hover {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 4px 16px rgba(46, 125, 14, 0.25);
      transform: translateY(-1px)
    }

    .card-cta {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      /* font-family: var(--mono); */
      color: var(--accent);
      padding: 8px 16px;
      border: 1px solid rgba(46, 125, 14, 0.25);
      border-radius: 3px;
      cursor: pointer;
      background: rgba(46, 125, 14, 0.05);
      transition: all .2s;
    }

    .card-cta:hover {
      background: rgba(46, 125, 14, 0.12);
      border-color: var(--accent)
    }

    /* ── CUSTOMERS ── */
    .customers-section {
      padding-top: 50px;
      padding-bottom: 50px;
      /* background: #f4f5f7; */
    }

    .customers-carousel {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .customers-marquee {
      position: relative;
      overflow: hidden;
      flex: 1;
      min-width: 0;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    }

    /* הגדרות שקובעות את אנימציית התזוזה של הלוגואים:
       - width: max-content -> הרצועה רחבה כרוחב כל הלוגואים (כפול, כי הם מוכפלים ב-PHP), כדי שהגלילה תהיה רציפה
       - animation: customers-scroll 50s linear infinite -> 50s = זמן למחזור גלילה שלם (קטן = מהיר יותר), linear = מהירות קבועה, infinite = חזרה ללא הפסקה
       - @keyframes customers-scroll (בהמשך הקובץ) -> from/to translateX קובעים את כיוון ומרחק התזוזה
       - .customers-marquee:hover .customers-track -> עוצר את האנימציה כשהעכבר מעל השורה */
    .customers-track {
      display: flex;
      align-items: center;
      gap: 32px;
      width: max-content;
      animation: customers-scroll 50s linear infinite;
      /* animation-play-state: paused; */
      /* זמני - לעצירת האנימציה כדי לראות את כל הלוגואים יחד */
    }

    .customers-marquee:hover .customers-track {
      animation-play-state: paused;
    }

    .customer-logo-circle {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--wht);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .customer-logo {
      height: 64px;
      width: 110px;
      object-fit: contain;
      flex-shrink: 0;
      /* filter: grayscale(1) opacity(0.8); */
      transition: filter .25s ease, opacity .25s ease;
    }

    .customer-logo:hover {
      filter: grayscale(0) opacity(1);
    }

    .customers-arrow {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: none;
      font-size: 26px;
      line-height: 1;
      color: var(--accent-deep);
      cursor: pointer;
      transition: color .2s;
    }

    .customers-arrow:hover {
      color: var(--blck);
    }

    @keyframes customers-scroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(50%)
      }
    }

    /* ── PROOF ── */
    .proof-section {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--border);
    }

    .quote-side {
      padding: 64px 80px;
      background: var(--wht);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .quote-side::before {
      content: '"';
      position: absolute;
      top: -20px;
      right: 32px;
      font-size: 200px;
      color: rgba(46, 125, 14, 0.06);
      font-family: Georgia, serif;
      line-height: 1;
      pointer-events: none;
    }

    .q-label {
      /* font-family: var(--mono); */
      font-size: 16px;
      color: var(--accent-deep);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 24px
    }

    .q-text {
      font-size: 20px;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 24px;
      font-weight: 300;
      max-width: 760px
    }

    .q-text strong {
      color: var(--accent);
      font-weight: 700
    }

    .q-by {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .av-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text)
    }

    .av-role {
      font-size: 12px;
      color: var(--accent-deep);
      /* font-family: var(--mono) */
    }

    /* ── CONTACT ── */
    .contact-side {
      padding: 64px 80px;
      background: var(--wht);
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .cs-h {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--blck);
    }

    .cs-h span {
      color: var(--accent)
    }

    .cs-sub {
      font-size: 16px;
      color: var(--accent);
      line-height: 1.8
    }

    .cf-wrapper {
      width: 100%;
      max-width: 540px
    }

    .cf {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .cf input,
    .cf textarea {
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 11px 14px;
      font-size: 16px;
      color: var(--text);
      font-family: var(--font);
      resize: none;
      width: 100%;
      transition: border-color .2s;
      direction: rtl;
    }

    .cf input::placeholder,
    .cf textarea::placeholder {
      color: var(--accent)
    }

    .cf input:focus,
    .cf textarea:focus {
      outline: none;
      border-color: var(--accent);
      /* background: rgba(46, 125, 14, 0.03) */
    }

    .cf textarea {
      height: 56px
    }

    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .cf-submit {
      align-self: flex-start;
      background: var(--accent);
      color: #fff;
      font-size: 18px;
      padding: 11px 24px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      box-shadow: 0 0 20px rgba(46, 125, 14, 0.25);
      transition: all .2s;
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      justify-content: center;
    }

    .cf-submit:hover {
      box-shadow: 0 0 35px rgba(46, 125, 14, 0.5);
      transform: translateY(-1px)
    }

    .cf-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap
    }

    .cf-mi {
      font-size: 12px;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 6px;
      /* font-family: var(--mono) */
    }

    /* ── FOOTER ── */
    .footer {
      position: relative;
      z-index: 1;
      background: var(--wht);
      border-top: 1px solid var(--border);
      padding: 64px 40px 0;
    }

    .ft-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
      max-width: 1400px;
      margin: 0 auto;
      padding-bottom: 48px;
    }

    .ft-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ft-logo {
      font-size: 32px;
      font-weight: 400;
      color: var(--accent);
      margin-bottom: 4px;
      font-family: "Shadows Into Light Two", cursive
    }

    .ft-desc {
      font-size: 16px;
      line-height: 1.8;
      color: #8a8f98;
      max-width: 360px;
      margin-bottom: 10px;
    }

    .ft-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ft-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: #161616;
      transition: color .2s;
    }

    .ft-contact-item svg {
      flex-shrink: 0;
      color: var(--accent);
    }

    .ft-contact-item:hover {
      color: var(--accent)
    }

    .ft-cta {
      align-self: flex-start;
      margin-top: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 700;
      font-family: var(--font);
      color: var(--accent-deep);
      border: 1px solid var(--border);
      background: rgba(74, 170, 26, 0.06);
      padding: 11px 22px;
      border-radius: 4px;
      cursor: pointer;
      transition: all .2s;
    }

    .ft-cta:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    .ft-col-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #8a8f98;
      margin-bottom: 6px;
    }

    .ft-col a {
      font-size: 16px;
      color: #161616;
      transition: color .2s;
    }

    .ft-col a:hover {
      color: var(--accent)
    }

    .ft-iso {
      display: flex;
      gap: 8px;
      margin-top: 8px;
    }

    .iso-tag {
      font-size: 11px;
      border: 1px solid rgba(46, 125, 14, 0.2);
      padding: 2px 8px;
      border-radius: 3px;
      color: var(--accent-deep);
      /* font-family: var(--mono) */
    }

    .ft-bottom {
      border-top: 1px solid var(--border);
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .ft-copy {
      font-size: 12px;
      color: #8a8f98;
    }

    .ft-bottom-links {
      display: flex;
      gap: 20px;
      font-size: 12px;
      color: #8a8f98;
    }

    .ft-bottom-links a:hover {
      color: var(--accent)
    }


    /* ── TESTIMONIAL CAROUSEL ── */
    .testimonial-carousel {
      position: relative;
      width: 100%
    }

    .tc-slides {
      position: relative;
      min-height: 160px
    }

    .tc-slide {
      display: none;
      animation: slide-in .4s ease
    }

    .tc-slide.active {
      display: block
    }

    @keyframes slide-in {
      from {
        opacity: 0;
        transform: translateX(20px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    .tc-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 28px
    }

    .tc-dots {
      display: flex;
      gap: 8px;
      align-items: center
    }

    .tc-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: all .2s;
      border: 1px solid var(--border)
    }

    .tc-dot.active {
      background: var(--accent);
      border-color: var(--accent);
      width: 22px;
      border-radius: 4px
    }

    .tc-arrows {
      display: flex;
      gap: 8px;
      align-items: center
    }

    .tc-arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text);
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .tc-arrow:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff
    }

    /* ── ANIMATIONS ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ── COUNTER ── */
    .count-up {
      display: inline-block
    }

    #NagishLiTrigger {
      left: calc(10px + (100vw - 100%));
      right: unset !important;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:768px) {
      .nav-links {
        display: none
      }

      .hero {
        padding: 60px 24px 40px;
        min-height: auto
      }

      .hero-h {
        font-size: 44px
      }

      .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
      }

      .stats-section {
        grid-template-columns: 1fr
      }

      .stat-cell {
        border-left: none;
        border-bottom: 1px solid var(--border);
        padding: 24px
      }

      .systems-section {
        padding: 48px 24px
      }

      .customer-logo-circle {
        width: 100px;
        height: 100px;
      }

      .customer-logo {
        height: 40px;
        width: 70px
      }

      .customers-track {
        gap: 20px
      }

      .customers-arrow {
        width: 28px;
        height: 28px;
        font-size: 20px;
      }

      .sys-row {
        flex-direction: column;
        gap: 20px;
        padding: 24px
      }

      .sys-media {
        min-height: 200px;
        order: -1
      }

      .proof-section {
        grid-template-columns: 1fr
      }

      .quote-side {
        padding: 40px 24px
      }

      .contact-side {
        padding: 40px 24px
      }

      .cf-row {
        grid-template-columns: 1fr 1fr
      }

      .cf-row2 {
        grid-template-columns: 1fr
      }

      .footer {
        padding: 48px 24px 0
      }

      .ft-top {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
      }

      .ft-cta {
        align-self: stretch;
        justify-content: center;
      }

      .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0 28px;
      }

      .alert-band {
        padding: 9px 24px
      }

      .nav {
        padding: 14px 24px
      }
    }

    /* ── HERO REDESIGN ── */
    .hero-right {
      position: relative;
    }

    .hero-mockup {
      position: relative;
      width: 100%;
      max-width: 480px;
    }

    .mockup-window {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(46, 125, 14, 0.08);
      overflow: hidden;
      position: relative;
      z-index: 2;
    }

    .mockup-titlebar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background: var(--wht);
      border-bottom: 1px solid var(--border);
    }

    .mock-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .mock-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 12px;
      border-radius: 6px;
      font-size: 12px;
      /* font-family: var(--mono); */
      transition: background .15s;
    }

    .mock-row.mock-ok {
      background: rgba(46, 125, 14, 0.05);
    }

    .mock-row.mock-warn {
      background: rgba(245, 166, 35, 0.08);
      border: 1px solid rgba(245, 166, 35, 0.2);
    }

    .mock-check {
      flex-shrink: 0;
      font-size: 13px;
      width: 18px;
    }

    .mock-row.mock-ok .mock-check {
      color: var(--accent);
    }

    .mock-row.mock-warn .mock-check {
      color: #d97706;
    }

    .mock-label {
      flex: 1;
      color: var(--text);
    }

    .mock-value {
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
    }

    .mock-time {
      font-size: 10px;
      color: var(--accent-deep);
      white-space: nowrap;
    }

    .mock-stat-card {
      position: absolute;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 14px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      z-index: 3;
      white-space: nowrap;
    }

    /* Decorative grid on right half */
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(46, 125, 14, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 125, 14, 0.06) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      opacity: 0.7;
    }

    /* Responsive */
    @media(max-width:768px) {
      .systems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .hero {
        flex-direction: column;
        gap: 40px;
      }

      .hero-left,
      .hero-visual {
        flex: 1 1 auto;
        width: 100%;
      }

      .hero-visual {
        order: -1;
      }
    }

    /* ── CONTACT FORM MESSAGES ── */
    .cf-msg {
      font-size: 13px;
      /* font-family: var(--mono); */
      padding: 10px 14px;
      border-radius: 4px;
      border: 1px solid;
    }

    .cf-msg-success {
      color: var(--accent);
      background: rgba(46, 125, 14, 0.08);
      border-color: var(--border);
    }

    .cf-msg-error {
      color: #b91c1c;
      background: rgba(185, 28, 28, 0.06);
      border-color: rgba(185, 28, 28, 0.3);
    }