/* ==========================================================================
   Brandli - מערכת עיצוב (Design System)
   brandli.co.il | RTL | Hebrew-first
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. גופן מאוחסן מקומית
   Heebo Variable (400-900) ברישיון SIL OFL. ראו assets/fonts/OFL.txt
   אחסון מקומי חוסך שני חיבורים לדומיינים חיצוניים במסלול הקריטי.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/heebo-hebrew.woff2") format("woff2");
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/heebo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --brand:        #4F39F6;
  --brand-700:    #3D28D4;
  --brand-600:    #4429E0;
  --brand-400:    #7C6CF9;
  --brand-100:    #DDD8FE;
  --brand-50:     #EEF0FE;

  /* Ink / dark surfaces */
  --ink:          #1B1840;
  --ink-800:      #241F55;
  --ink-700:      #2E2870;

  /* Accents */
  --cyan:         #06B6D4;
  --cyan-400:     #22D3EE;
  --cyan-50:      #E6FBFF;
  --rose:         #F43F5E;
  --rose-50:      #FFF1F3;

  /* Neutrals */
  --text:         #1F2338;
  --muted:        #5B6079;
  --muted-2:      #8288A1;
  --line:         #E6E8F2;
  --line-soft:    #EFF1F8;
  --bg:           #FFFFFF;
  --bg-soft:      #F7F8FD;
  --bg-soft-2:    #F1F3FB;

  /* Typography */
  --font: "Heebo", "Assistant", "Segoe UI", system-ui, -apple-system, "Arial Hebrew", Arial, sans-serif;

  --fs-display: clamp(2.2rem, 1.35rem + 3.4vw, 3.75rem);
  --fs-h1:      clamp(2rem, 1.15rem + 3.4vw, 3.5rem);
  --fs-h2:      clamp(1.75rem, 1.1rem + 2.4vw, 2.85rem);
  --fs-h3:      clamp(1.25rem, 1.05rem + 0.8vw, 1.5rem);
  --fs-lead:    clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;

  /* Space */
  --sp-section: clamp(4rem, 2.5rem + 6vw, 7.5rem);
  --gutter:     clamp(1.15rem, 0.6rem + 2vw, 2rem);
  --container:  1240px;

  /* Radius */
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(27, 24, 64, .06);
  --sh-sm: 0 2px 8px rgba(27, 24, 64, .06), 0 1px 2px rgba(27, 24, 64, .04);
  --sh:    0 10px 30px -12px rgba(27, 24, 64, .16), 0 2px 8px rgba(27, 24, 64, .05);
  --sh-lg: 0 28px 60px -24px rgba(27, 24, 64, .28), 0 6px 18px rgba(27, 24, 64, .07);
  --sh-brand: 0 14px 32px -12px rgba(79, 57, 246, .5);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .35s;

  /* Layout metrics */
  --header-h: 78px;

  scroll-behavior: smooth;
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-700); }

img, svg, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.15em; padding-inline-start: 1.35em; }
li { margin-bottom: .4em; }

strong, b { font-weight: 700; color: var(--ink); }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--brand-100); color: var(--ink); }

/* Skip link */
.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 860px; }

.section { padding-block: var(--sp-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 3.5vw, 4.5rem); }
.section--soft { background: var(--bg-soft); }
.section--grid-bg { background: var(--bg); }

/* subtle blueprint grid, like a technical canvas */
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to left, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 35%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 35%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.grid-bg > * { position: relative; z-index: 1; }

.grid { display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
/* תווית מקטע - קו קצר + טקסט מרווח, במקום תגית גלולה */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  border-radius: 3px;
  background: currentColor;
  flex: none;
}
.eyebrow--onDark { color: var(--cyan-400); }

.lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
}

.section-head { max-width: 780px; margin-inline: auto; margin-bottom: clamp(2rem, 1.2rem + 2.4vw, 3.5rem); text-align: center; }
.section-head .lead { margin-inline: auto; }
.section-head--start { margin-inline: 0; text-align: start; }
.section-head--start .lead { margin-inline: 0; }

.text-brand { color: var(--brand); }
.text-rose  { color: var(--rose); }
.text-cyan  { color: var(--cyan); }
.text-muted { color: var(--muted); }

/* Highlighted words in headings */
.mark-brand {
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(-4px); }

.btn-primary { box-shadow: var(--sh-brand); }
.btn-primary:hover { --btn-bg: var(--brand-700); box-shadow: 0 18px 38px -12px rgba(79, 57, 246, .58); }

.btn-outline { --btn-bg: transparent; --btn-fg: var(--brand); --btn-bd: var(--brand-100); }
.btn-outline:hover { --btn-bd: var(--brand); --btn-bg: var(--brand-50); }

.btn-dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn-dark:hover { --btn-bg: var(--ink-700); }

.btn-white { --btn-bg: #fff; --btn-fg: var(--ink); box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .5); }
.btn-white:hover { --btn-bg: #fff; --btn-fg: var(--brand); }

.btn-ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.35); }
.btn-ghost-light:hover { --btn-bd: #fff; --btn-bg: rgba(255,255,255,.1); }

.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }
.btn-sm { padding: .7rem 1.15rem; font-size: var(--fs-xs); }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--brand);
}
.link-arrow .ico { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover .ico { transform: translateX(-5px); }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
          backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(27, 24, 64, .5);
  background: rgba(255, 255, 255, .94);
}

.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* לוגו - סמל מונוגרמה + שם המותג באנגלית, נעילה בכיוון LTR */
/* הלוגו הוא תמונה אחת, סמל ומילה יחד. הגובה קובע והרוחב נגזר ממנו,
   ומאפייני width/height ב-HTML שומרים על היחס כדי שלא תהיה קפיצת פריסה */
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: none;
  transition: opacity .25s var(--ease);
}
.brand-logo img { display: block; height: 38px; width: auto; }
.brand-logo:hover { opacity: .82; }

@media (max-width: 400px) {
  .brand-logo img { height: 34px; }
}

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.25rem, -.5rem + 1.6vw, 1.15rem);
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav li { margin: 0; }
.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .7rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover { color: var(--brand); background: var(--brand-50); }
.main-nav a[aria-current="page"] { color: var(--brand); }

/* dropdown */
.has-sub { position: relative; }
.has-sub > a .chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.has-sub:hover > a .chev, .has-sub.is-open > a .chev { transform: rotate(180deg); }

.subnav {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(8px);
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: .5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-sub:hover .subnav,
.has-sub:focus-within .subnav,
.has-sub.is-open .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}
.subnav li { margin: 0; }
.subnav a {
  display: block;
  padding: .65rem .8rem;
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.subnav a small { display: block; font-weight: 400; font-size: var(--fs-xs); color: var(--muted-2); margin-top: .1rem; }
.subnav a:hover { background: var(--brand-50); color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: .75rem; flex: none; }
.main-nav .btn { display: none; }
@media (max-width: 560px) { .header-actions > .btn { display: none; } }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--ink);
  direction: ltr;
}
.header-phone .ico { width: 17px; height: 17px; color: var(--brand); }
.header-phone:hover { color: var(--brand); }

/* קישור לפייסבוק. אותה שפה ויזואלית של האייקונים בפוטר, בגודל
   שמתאים לשורת הפעולות: עיגול בגוון brand-50 כמו כפתור ההמבורגר,
   שמתמלא בסגול מלא במעבר עכבר */
.header-social {
  width: 36px; height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-50);
  border: 1px solid var(--line);
  color: var(--brand);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.header-social .ico { width: 18px; height: 18px; }
.header-social:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* burger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--brand-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .28s var(--ease), top .28s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1120px) {
  .header-phone { display: none; }
}

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    padding: 1rem var(--gutter) 1.75rem;
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .main-nav > ul > li > a { padding: .85rem .5rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; justify-content: space-between; }
  .subnav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-inline-start: 2px solid var(--brand-100);
    border-radius: 0;
    margin: .25rem .5rem .75rem;
    padding: 0 .75rem;
    min-width: 0;
    display: none;
  }
  .has-sub.is-open .subnav { display: block; transform: none; }
  .main-nav .btn { display: inline-flex; margin-top: 1rem; width: 100%; }
}

/* Header offset for content */
.page-body { padding-top: var(--header-h); }

/* --------------------------------------------------------------------------
   7. Scroll progress indicator
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  height: 3px;
  z-index: 899;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0;
  border-start-end-radius: 3px;
  border-end-end-radius: 3px;
  background: linear-gradient(to left, var(--brand), var(--cyan));
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1rem + 6vw, 5.5rem) clamp(3rem, 1.5rem + 6vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 88% -8%, rgba(79, 57, 246, .10), transparent 62%),
    radial-gradient(760px 420px at 4% 10%, rgba(6, 182, 212, .09), transparent 60%),
    var(--bg);
}
/* פריסה ממורכזת: כותרת גדולה למעלה, לוח הבקרה ברוחב מלא מתחת */
.hero__inner { max-width: 900px; margin-inline: auto; text-align: center; }
.hero__title { font-size: var(--fs-display); margin-bottom: 1.1rem; }
.hero__lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 2rem;
}
.hero__inner .eyebrow { justify-content: center; }
.hero__inner .btn-row { justify-content: center; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}
.hero__trust li {
  display: flex; align-items: center; gap: .5rem;
  margin: 0;
  font-size: var(--fs-sm); font-weight: 600; color: var(--muted);
}
.hero__trust .ico { width: 19px; height: 19px; color: var(--cyan); flex: none; }

/* במה רחבה ללוח הבקרה, עם דהייה לתחתית */
.hero__stage {
  position: relative;
  max-width: 1020px;
  margin: clamp(2.5rem, 1.5rem + 3vw, 4.25rem) auto 0;
}
.hero__stage .mock { padding: clamp(1.1rem, .8rem + 1vw, 1.75rem); }
.hero__stage .mock { position: relative; z-index: 1; }
.hero__stage::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 130px;
  z-index: 2;
  background: linear-gradient(to top, var(--bg) 12%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* פריסה פנימית רחבה: סטטיסטיקות + גרף מימין, יומן פעילות משמאל */
.mock--wide .mock__body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  align-items: start;
}
.mock--wide .mock__rows { margin-top: 0; }
.mock--wide .mock__bars { height: 128px; }

@media (max-width: 760px) {
  .mock--wide .mock__body { grid-template-columns: 1fr; }
}

/* Dashboard mock card in hero */
.mock {
  position: relative;
  background: linear-gradient(158deg, var(--ink) 0%, #2B2470 55%, #3B2FA0 100%);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--sh-lg);
  overflow: hidden;
  color: #fff;
}
.mock::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to bottom left, #000, transparent 65%);
          mask-image: linear-gradient(to bottom left, #000, transparent 65%);
  pointer-events: none;
}
.mock > * { position: relative; z-index: 1; }
.mock__bar {
  display: flex; align-items: center; gap: .5rem;
  padding-bottom: 1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mock__dots { display: flex; gap: 6px; }
.mock__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); }
.mock__dots i:first-child { background: var(--rose); }
.mock__dots i:nth-child(2) { background: #FBBF24; }
.mock__dots i:nth-child(3) { background: #34D399; }
.mock__url {
  margin-inline-start: auto;
  font-size: var(--fs-xs);
  direction: ltr;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-pill);
  padding: .3rem .85rem;
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: .35rem;
}
.mock__url .ico { width: 13px; height: 13px; color: #34D399; }

.mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-bottom: 1rem; }
.mock__stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: .8rem .75rem;
}
.mock__stat b { display: block; font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1.2; direction: ltr; }
.mock__stat span { font-size: var(--fs-xs); color: rgba(255,255,255,.65); }

.mock__chart {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 1rem;
}
/* כותרת מדומה בתוך לוח הבקרה. לא כותרת מסמך, כדי לא לשבור את היררכיית ה-H */
.mock__chart-title { color: #fff; font-size: var(--fs-sm); font-weight: 700; margin-bottom: .1rem; }
.mock__chart p { font-size: var(--fs-xs); color: rgba(255,255,255,.6); margin-bottom: .9rem; }
.mock__bars { display: flex; align-items: flex-end; gap: 8px; height: 92px; }
.mock__bars i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, var(--brand-400), var(--cyan-400));
  opacity: .9;
  transform-origin: bottom;
  animation: barIn .9s var(--ease) backwards;
}
@keyframes barIn { from { transform: scaleY(.05); opacity: 0; } }

.mock__rows { margin-top: 1rem; display: grid; gap: .5rem; }
.mock__row {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  padding: .6rem .8rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.85);
}
.mock__row .ico { width: 16px; height: 16px; flex: none; color: #34D399; }
.mock__row span:last-child { margin-inline-start: auto; color: rgba(255,255,255,.5); direction: ltr; }

/* floating badge */
.float-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: .75rem 1rem;
  display: flex; align-items: center; gap: .65rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink);
  animation: floaty 5s ease-in-out infinite;
}
.float-badge .dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.float-badge .dot .ico { width: 18px; height: 18px; }
.float-badge small { display: block; font-weight: 500; color: var(--muted-2); font-size: 11px; }
.float-badge--a { inset-inline-end: -22px; top: -26px; }
.float-badge--b { inset-inline-start: -22px; bottom: 13%; animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

@media (max-width: 1100px) {
  .float-badge--a { inset-inline-end: -8px; }
  .float-badge--b { inset-inline-start: -8px; }
}
@media (max-width: 640px) {
  .float-badge { padding: .55rem .75rem; font-size: 11px; }
  .float-badge .dot { width: 28px; height: 28px; }
  .float-badge--a { inset-inline-end: -4px; top: -20px; }
  .float-badge--b { display: none; }
}

/* --------------------------------------------------------------------------
   9. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-block: clamp(3rem, 1.6rem + 5vw, 5.5rem) clamp(2.5rem, 1.4rem + 4vw, 4.5rem);
  background:
    radial-gradient(900px 460px at 85% -20%, rgba(79, 57, 246, .12), transparent 62%),
    radial-gradient(700px 400px at 6% 0%, rgba(6, 182, 212, .10), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-hero__inner { max-width: 820px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { margin-bottom: 1.75rem; }

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 1.25rem; font-size: var(--fs-xs); color: var(--muted-2); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: .45rem; }
.breadcrumbs li + li::before { content: "‹"; color: var(--muted-2); }
.breadcrumbs a { color: var(--muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 700; }

/* --------------------------------------------------------------------------
   10. Dark stat band
   -------------------------------------------------------------------------- */
.stat-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--ink) 0%, #262056 55%, #372CA0 100%);
  padding-block: clamp(2.25rem, 1.6rem + 2vw, 3.25rem);
}
.stat-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to left, #000, transparent 72%);
          mask-image: linear-gradient(to left, #000, transparent 72%);
}
.stat-band > * { position: relative; z-index: 1; }
.stat-band .stat { padding-block: .25rem; }
.stat-band .stat b {
  background: linear-gradient(135deg, #fff 25%, var(--cyan-400));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-band .stat span { color: rgba(255, 255, 255, .65); }
.stat-band .stat + .stat { border-inline-start: 1px solid rgba(255, 255, 255, .14); }
@media (max-width: 700px) {
  .stat-band .stat:nth-child(odd) { border-inline-start: 0; }
}

/* Icon box */
.ico-box {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand);
  border: 1px solid var(--brand-100);
}
.ico-box .ico { width: 23px; height: 23px; }
.ico-box--cyan { background: var(--cyan-50); color: #0891B2; border-color: #BAF0FA; }
.ico-box--rose { background: var(--rose-50); color: var(--rose); border-color: #FFD9DF; }
.ico-box--lg { width: 56px; height: 56px; border-radius: 17px; }
.ico-box--lg .ico { width: 28px; height: 28px; }

/* --------------------------------------------------------------------------
   11. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.35rem, 1rem + 1vw, 1.9rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--brand-100); }
.card h3 { margin-top: 1.15rem; margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: var(--fs-sm); }
.card .link-arrow { margin-top: auto; padding-top: 1.15rem; }
.card--flat:hover { transform: none; }

/* full-card link overlay */
.card__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* ---- רשת bento לשירותים: כרטיס מוביל גדול + כרטיסים רגילים ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.2vw, 1.5rem);
}
.bento__wide { grid-column: span 2; }
.bento__full { grid-column: span 3; }

/* כרטיס אופקי לרוחב מלא */
.card--row { flex-direction: row; align-items: center; gap: clamp(1rem, .7rem + 1vw, 1.75rem); flex-wrap: wrap; }
.card--row .ico-box { flex: none; }
.card--row > div { flex: 1 1 300px; }
.card--row h3 { margin-top: 0; margin-bottom: .3rem; }
.card--row .link-arrow { margin-top: 0; padding-top: 0; margin-inline-start: auto; flex: none; }

.card--feature {
  background: linear-gradient(150deg, var(--ink) 0%, #2A2468 55%, #3B2FA4 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}
.card--feature::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 60% 90% at 85% 15%, #000, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 90% at 85% 15%, #000, transparent 70%);
  pointer-events: none;
}
.card--feature > * { position: relative; z-index: 1; }
.card--feature h3 { color: #fff; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.6rem); }
.card--feature p { color: rgba(255, 255, 255, .72); font-size: var(--fs-body); }
.card--feature .ico-box { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .2); color: var(--cyan-400); }
.card--feature .link-arrow { color: #fff; }
.card--feature:hover { box-shadow: var(--sh-lg); border-color: transparent; }
.card--feature .card-list li { color: rgba(255, 255, 255, .72); }
.card--feature .card-list .ico { color: var(--cyan-400); }
.card--feature .card-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.25rem; margin-top: 1.25rem; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento__wide, .bento__full { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: minmax(0, 1fr); }
  .bento__wide, .bento__full { grid-column: auto; }
  .card--feature .card-list { grid-template-columns: minmax(0, 1fr); }
  .card--row { flex-direction: column; align-items: flex-start; }
  .card--row .link-arrow { margin-inline-start: 0; }
}

.card-list { list-style: none; padding: 0; margin: .35rem 0 0; }
.card-list li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: var(--fs-sm); color: var(--muted);
  margin-bottom: .5rem;
}
.card-list .ico { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: .28rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, .6rem + 1.2vw, 2rem); }
.stat { text-align: center; padding: 1.25rem .5rem; }
.stat b {
  display: block;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  direction: ltr;
  margin-bottom: .35rem;
}
.stat span { font-size: var(--fs-sm); color: var(--muted); font-weight: 600; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   12. Before / after comparison
   -------------------------------------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.2vw, 1.75rem);
  align-items: start;
}
.compare__col {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
}
.compare__col--bad { background: var(--bg-soft-2); }
.compare__col--good {
  border-color: var(--brand-100);
  box-shadow: var(--sh-lg);
  background: linear-gradient(168deg, #fff 35%, var(--brand-50));
}
.compare__head {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.35rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.compare__head h3 { margin: 0; font-size: 1.125rem; }
.compare__head small { display: block; font-weight: 500; font-size: var(--fs-xs); color: var(--muted-2); margin-top: .1rem; }
.compare__tag {
  width: 40px; height: 40px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
}
.compare__tag .ico { width: 21px; height: 21px; }
.compare__col--bad .compare__tag { background: #F0F1F7; color: var(--muted-2); }
.compare__col--good .compare__tag { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }

.compare ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.compare li { display: flex; align-items: flex-start; gap: .65rem; margin: 0; font-size: var(--fs-sm); line-height: 1.65; }
.compare li .ico { width: 20px; height: 20px; flex: none; margin-top: .18rem; }
.compare__col--bad li { color: var(--muted); }
.compare__col--bad li .ico { color: #B9BFD6; }
.compare__col--good li { color: var(--text); }
.compare__col--good li .ico { color: #10B981; }
.compare__col--good li b { color: var(--ink); }

@media (max-width: 820px) { .compare { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   13. Process timeline
   -------------------------------------------------------------------------- */
/* ציר אנכי - כל שלב שורה, עם קו מקשר בין הריבועים */
.timeline {
  position: relative;
  list-style: none;
  margin: clamp(2rem, 1.4rem + 2vw, 3rem) auto 0;
  padding: 0;
  max-width: 780px;
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.4rem;
  padding-bottom: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
  margin: 0;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: "";
  position: absolute;
  top: 68px;
  bottom: 6px;
  inset-inline-start: 31px;
  width: 2px;
  border-radius: 2px;
  background: var(--line);
  transition: background .4s var(--ease);
}
.tl-step:last-child::before { display: none; }
.tl-step.is-on::before { background: linear-gradient(to bottom, var(--brand), var(--brand-100)); }

.tl-step__num {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  direction: ltr;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--muted-2);
  position: relative; z-index: 1;
  transition: all .35s var(--ease);
}
.tl-step.is-on .tl-step__num {
  background: linear-gradient(150deg, var(--brand), var(--brand-700));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-brand);
}
.tl-step__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-50);
  border-radius: var(--r-pill);
  padding: .2rem .7rem;
  margin-bottom: .5rem;
}
.tl-step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.tl-step p { font-size: var(--fs-sm); color: var(--muted); margin: 0; max-width: 62ch; }
.tl-step > div { padding-top: .35rem; }

@media (max-width: 560px) {
  .tl-step { grid-template-columns: 50px minmax(0, 1fr); gap: 1rem; }
  .tl-step::before { top: 54px; inset-inline-start: 24px; }
  .tl-step__num { width: 50px; height: 50px; border-radius: 16px; font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   13b. Founder
   -------------------------------------------------------------------------- */
.founder {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: start;
}
.founder__photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--ink) 0%, #2E2870 50%, var(--brand) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(3.5rem, 2rem + 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--sh-lg);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__name { margin-top: 1.1rem; }
.founder__name b { display: block; font-size: 1.125rem; font-weight: 800; color: var(--ink); }
.founder__name span { font-size: var(--fs-sm); color: var(--muted); }

.pullquote {
  margin: 2rem 0 0;
  padding: 1.35rem 1.6rem;
  border: 1px solid var(--brand-100);
  border-inline-start: 3px solid var(--brand);
  border-radius: var(--r);
  background: linear-gradient(160deg, var(--brand-50), #fff);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink);
}
.pullquote footer {
  margin-top: .85rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--muted);
}

@media (max-width: 720px) {
  .founder { grid-template-columns: minmax(0, 1fr); }
  .founder__photo { max-width: 190px; }
}

/* --------------------------------------------------------------------------
   13c. Byline (E-E-A-T: מי כתב, מה הרקע, מתי עודכן)
   -------------------------------------------------------------------------- */
.byline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 820px;
  margin-inline: auto;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-soft);
}
.byline__avatar {
  width: 48px; height: 48px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--ink), var(--brand));
  color: #fff; font-weight: 900; font-size: 1.35rem;
}
.byline p { margin: 0 0 .3rem; font-size: var(--fs-sm); color: var(--muted); line-height: 1.65; }
.byline p:last-child { margin-bottom: 0; }
.byline b { color: var(--ink); }
.byline time { font-size: var(--fs-xs); color: var(--muted-2); }

@media (max-width: 520px) {
  .byline { flex-direction: column; gap: .85rem; padding: 1.15rem 1.15rem; }
}

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
/* רשת סטטית: ציטוט מוביל רחב + ארבעה רגילים */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.2vw, 1.5rem);
  align-items: start;
}
.quote--lead { grid-column: span 2; }
.quote--lead blockquote { font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem); line-height: 1.7; font-weight: 500; color: var(--ink); }
.quote--lead .quote__mark { width: 42px; height: 42px; color: var(--brand-100); }

@media (max-width: 980px) {
  .quotes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote--lead { grid-column: span 2; }
}
@media (max-width: 640px) {
  .quotes-grid { grid-template-columns: minmax(0, 1fr); }
  .quote--lead { grid-column: auto; }
}

.quote {
  background: linear-gradient(160deg, #fff, var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.quote__mark { width: 34px; height: 34px; color: var(--brand-100); margin-bottom: .5rem; }
.quote blockquote { margin: 0 0 1.25rem; font-size: var(--fs-sm); line-height: 1.8; color: var(--text); }
.quote figcaption { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .75rem; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  color: #fff; font-weight: 800; font-size: 1rem;
  flex: none;
}
.quote__who b { display: block; font-size: var(--fs-sm); color: var(--ink); }
.quote__who span { font-size: var(--fs-xs); color: var(--muted-2); }

/* --------------------------------------------------------------------------
   15. FAQ (accordion)
   -------------------------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: .75rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: var(--brand-100); box-shadow: var(--sh); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  display: grid; place-items: center;
  position: relative;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute;
  background: currentColor; border-radius: 2px;
}
.faq summary .plus::before { width: 13px; height: 2px; }
.faq summary .plus::after { width: 2px; height: 13px; transition: transform .3s var(--ease); }
.faq details[open] summary .plus { background: var(--brand); color: #fff; }
.faq details[open] summary .plus::after { transform: scaleY(0); }
.faq .faq__body { padding: 0 1.35rem 1.35rem; color: var(--muted); font-size: var(--fs-sm); }
.faq .faq__body > *:first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   16. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(140deg, var(--ink) 0%, #2B2470 45%, #4030A8 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 1.4rem + 3vw, 4rem);
  color: rgba(255,255,255,.82);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: -40%;
  background:
    radial-gradient(closest-side, rgba(6,182,212,.32), transparent),
    radial-gradient(closest-side, rgba(244,63,94,.22), transparent);
  background-position: 20% 30%, 82% 70%;
  background-size: 55% 55%, 50% 50%;
  background-repeat: no-repeat;
  filter: blur(10px);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band .lead { color: rgba(255,255,255,.75); margin-inline: auto; margin-bottom: 2rem; max-width: 58ch; }

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
  box-shadow: var(--sh);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); }
.field .req { color: var(--rose); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field select { cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-50);
}
.field .err { font-size: var(--fs-xs); color: var(--rose); font-weight: 600; min-height: 1em; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--rose); background: var(--rose-50); }

.check { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--fs-xs); color: var(--muted); }
.check input { width: 19px; height: 19px; flex: none; margin-top: .18rem; accent-color: var(--brand); }

.form-status {
  border-radius: var(--r-sm);
  padding: .95rem 1.15rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  display: none;
  gap: .55rem;
  align-items: center;
}
.form-status.is-ok { display: flex; background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.form-status.is-err { display: flex; background: var(--rose-50); color: #BE123C; border: 1px solid #FECDD3; }
.form-status .ico { width: 19px; height: 19px; flex: none; }

/* --------------------------------------------------------------------------
   18. Contact info cards
   -------------------------------------------------------------------------- */
.contact-tiles { display: grid; gap: .85rem; }
.contact-tile {
  display: flex; align-items: center; gap: .95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  transition: all .25s var(--ease);
}
.contact-tile:hover { border-color: var(--brand-100); box-shadow: var(--sh); transform: translateX(-4px); }
.contact-tile b { display: block; font-size: var(--fs-sm); color: var(--ink); }
.contact-tile span { font-size: var(--fs-sm); color: var(--muted); }
.contact-tile .ltr { direction: ltr; display: inline-block; }

/* --------------------------------------------------------------------------
   19. Pricing / plans
   -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, .6rem + 1.2vw, 1.75rem); align-items: stretch; }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.plan--featured { border-color: var(--brand); box-shadow: var(--sh-lg); }
.plan__tag {
  position: absolute; top: -13px; inset-inline-start: 50%; transform: translateX(50%);
  background: var(--brand); color: #fff;
  font-size: var(--fs-xs); font-weight: 700;
  padding: .3rem 1rem; border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.plan__desc { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 1.25rem; }
.plan__price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 1.5rem; direction: rtl; }
.plan__price b { font-size: 2.35rem; font-weight: 900; color: var(--ink); letter-spacing: -.02em; direction: ltr; }
.plan__price span { font-size: var(--fs-sm); color: var(--muted-2); }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .6rem; }
.plan li { display: flex; align-items: flex-start; gap: .55rem; font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.plan li .ico { width: 18px; height: 18px; color: #10B981; flex: none; margin-top: .28rem; }
.plan .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   20. Content pages (legal / prose)
   -------------------------------------------------------------------------- */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.35rem, 1.15rem + .9vw, 1.75rem); margin-top: 2.75rem; padding-top: .5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.125rem; margin-top: 1.75rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { padding-inline-start: 1.4rem; }
.prose li { margin-bottom: .55rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.callout {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-inline-start: 4px solid var(--brand);
  border-radius: var(--r-sm);
  padding: 1.15rem 1.35rem;
  margin: 1.75rem 0;
}
.callout p { color: var(--ink); font-size: var(--fs-sm); }
.callout--cyan { background: var(--cyan-50); border-color: #BAF0FA; border-inline-start-color: var(--cyan); }

.toc {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.toc h2 { font-size: 1rem !important; margin: 0 0 .75rem !important; }
.toc ol { margin: 0; padding-inline-start: 1.2rem; }
.toc li { margin-bottom: .3rem; font-size: var(--fs-sm); }

.updated { font-size: var(--fs-xs); color: var(--muted-2); margin-bottom: 2rem; }

/* Definition block - good for AI answer engines */
.definition {
  background: linear-gradient(160deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-lg);
  padding: clamp(1.35rem, 1rem + 1vw, 1.85rem);
  margin-bottom: 2rem;
}
.definition h2 { font-size: 1.0625rem !important; margin: 0 0 .5rem !important; color: var(--brand) !important; padding-top: 0 !important; }
.definition p { color: var(--ink); font-size: 1.03rem; line-height: 1.8; margin: 0; }

/* Comparison table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); margin: 1.75rem 0; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 520px; }
table.data th, table.data td { padding: .95rem 1.15rem; text-align: start; border-bottom: 1px solid var(--line-soft); }
table.data thead th { background: var(--bg-soft); color: var(--ink); font-weight: 700; white-space: nowrap; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--bg-soft); }
table.data td { color: var(--muted); }
table.data td:first-child { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   21. Logo / trust bar
   -------------------------------------------------------------------------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 1rem + 3vw, 4rem); }
.logos__item {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1.05rem; color: var(--muted-2);
  filter: grayscale(1); opacity: .72;
  transition: all .3s var(--ease);
}
.logos__item:hover { filter: none; opacity: 1; color: var(--ink); }
.logos__item .ico { width: 24px; height: 24px; }

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 0; }
/* חמש עמודות: כל 19 עמודי האתר נגישים מהפוטר */
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr 1.05fr 1fr;
  gap: clamp(1.5rem, .8rem + 2vw, 2.75rem);
}
@media (max-width: 1140px) { .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px)  { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 500px)  { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* פרטי הקשר יושבים עכשיו בעמודת המותג */
.footer-about .footer-contact { margin: 1.35rem 0 0; display: grid; gap: .6rem; }

.site-footer h3 { font-size: 1.0625rem; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--muted); font-size: var(--fs-sm); }
.site-footer a:hover { color: var(--brand); }
.footer-about p { font-size: var(--fs-sm); color: var(--muted); max-width: 34ch; }
.footer-about .brand-logo { margin-bottom: 1.1rem; }

.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--fs-sm); color: var(--muted); }
.footer-contact .ico { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: .28rem; }
.footer-contact .ltr { direction: ltr; }

.socials { display: flex; gap: .55rem; margin-top: 1.35rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand);
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-3px); }
.socials .ico { width: 19px; height: 19px; }

.footer-bottom {
  margin-top: clamp(2.5rem, 1.6rem + 2.5vw, 3.5rem);
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: var(--fs-xs); color: var(--muted-2);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.15rem; }
.footer-bottom a { font-size: var(--fs-xs); }

/* --------------------------------------------------------------------------
   23. Floating utilities (WhatsApp + accessibility)
   -------------------------------------------------------------------------- */
.fab-wa {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  z-index: 880;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, .7);
  transition: transform .25s var(--ease);
}
.fab-wa:hover { transform: scale(1.08); color: #fff; }
.fab-wa .ico { width: 28px; height: 28px; }

.a11y-btn {
  position: fixed;
  inset-inline-start: 20px;
  bottom: 20px;
  z-index: 890;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: 0;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--sh-brand);
  transition: transform .25s var(--ease);
}
.a11y-btn:hover { transform: scale(1.08); }
.a11y-btn .ico { width: 27px; height: 27px; }

.a11y-panel {
  position: fixed;
  inset-inline-start: 20px;
  bottom: 84px;
  z-index: 895;
  width: min(310px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 1.25rem;
  display: none;
}
.a11y-panel.is-open { display: block; animation: popIn .25s var(--ease); }
@keyframes popIn { from { opacity: 0; transform: translateY(10px) scale(.97); } }
.a11y-panel h2 { font-size: 1.0625rem; margin-bottom: .25rem; }
.a11y-panel > p { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 1rem; }
.a11y-opts { display: grid; gap: .4rem; }
.a11y-opt {
  display: flex; align-items: center; gap: .6rem;
  width: 100%;
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  padding: .65rem .85rem;
  cursor: pointer;
  text-align: start;
  transition: all .2s var(--ease);
}
.a11y-opt:hover { background: var(--brand-50); }
.a11y-opt[aria-pressed="true"] { background: var(--brand-50); border-color: var(--brand); color: var(--brand); }
.a11y-opt .ico { width: 19px; height: 19px; flex: none; }
.a11y-panel .a11y-foot { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.a11y-panel .a11y-foot a { font-size: var(--fs-xs); font-weight: 700; }
.a11y-reset { font: inherit; font-size: var(--fs-xs); font-weight: 700; color: var(--muted); background: none; border: 0; cursor: pointer; text-decoration: underline; }
.a11y-reset:hover { color: var(--rose); }

/* accessibility modes */
html.a11y-fs-1 body { font-size: 1.1875rem; }
html.a11y-fs-2 body { font-size: 1.3125rem; }
html.a11y-fs-1 { --fs-sm: 1.0625rem; --fs-xs: .9375rem; }
html.a11y-fs-2 { --fs-sm: 1.1875rem; --fs-xs: 1.0625rem; }

html.a11y-contrast, html.a11y-contrast body { background: #000 !important; color: #fff !important; }
html.a11y-contrast * { background-color: transparent !important; color: #fff !important; border-color: #FFEB3B !important; box-shadow: none !important; text-shadow: none !important; }
html.a11y-contrast a, html.a11y-contrast a * { color: #FFEB3B !important; }
html.a11y-contrast .btn { background: #FFEB3B !important; color: #000 !important; }
html.a11y-contrast .btn * { color: #000 !important; }
html.a11y-contrast img, html.a11y-contrast svg:not(.ico) { filter: grayscale(1) contrast(1.2); }
html.a11y-contrast .site-header, html.a11y-contrast .a11y-panel, html.a11y-contrast .main-nav { background: #000 !important; }

html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; font-weight: 700 !important; }
html.a11y-readable, html.a11y-readable body { font-family: Arial, "Arial Hebrew", sans-serif !important; letter-spacing: .02em; }
html.a11y-readable * { font-family: inherit !important; }

html.a11y-nomotion *, html.a11y-nomotion *::before, html.a11y-nomotion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
html.a11y-bigcursor, html.a11y-bigcursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath d='M5 2l14 9-6 1.5L10 20z' fill='%234F39F6' stroke='%23fff' stroke-width='1.4'/%3E%3C/svg%3E") 4 2, auto !important;
}

/* --------------------------------------------------------------------------
   24. Reveal animation
   -------------------------------------------------------------------------- */
/* אנימציית חשיפה פועלת רק כשיש JavaScript. בלעדיו התוכן פשוט מוצג,
   כדי שמקטע שלם לא ייעלם אם הסקריפט נחסם, נכשל או טרם רץ. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   25. Misc utilities
   -------------------------------------------------------------------------- */
.ltr { direction: ltr; unicode-bidi: isolate; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.nowrap { white-space: nowrap; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .7rem; }
.checklist li { display: flex; align-items: flex-start; gap: .65rem; font-size: var(--fs-body); color: var(--muted); margin: 0; }
.checklist .ico { width: 21px; height: 21px; color: #10B981; flex: none; margin-top: .3rem; }
.checklist b { color: var(--ink); }

.pill-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.pill-tags span {
  font-size: var(--fs-xs); font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--muted); padding: .4rem .9rem; border-radius: var(--r-pill);
}

/* print */
@media print {
  .site-header, .scroll-progress, .fab-wa, .a11y-btn, .a11y-panel, .site-footer, .cta-band { display: none !important; }
  body { font-size: 11pt; }
  .page-body { padding-top: 0; }
}
