/* =========================================================================
   מוסכניק — דף נחיתה שיווקי
   -------------------------------------------------------------------------
   מבנה הקובץ:
     1.  טוקנים ומשתני עיצוב
     2.  איפוס ובסיס
     3.  נגישות (skip link, focus, visually-hidden)
     4.  רכיבים משותפים (כפתורים, eyebrow, כותרות מקטע)
     5.  Header וניווט
     6.  Hero + תצוגת מוצר
     7.  רצועת אמון
     8.  מקטע הבעיה
     9.  יכולות המערכת
     10. איך מתחילים
     11. סרטון הסבר
     12. תמחור
     13. שאלות נפוצות
     14. טופס ניסיון
     15. יצירת קשר
     16. Footer + CTA צף
     17. Media queries (Mobile-first תמיכה: הדף נבנה מלמעלה ומצטמצם)
   ========================================================================= */

/* ============ 1. טוקנים ומשתני עיצוב ============ */
:root {
  /* צבעי מותג */
  --navy:        #102A43;  /* כחול כהה מוביל */
  --brand:       #1687C9;  /* כחול בהיר — הדגשות, אייקונים, אלמנטים גרפיים */
  --brand-fill:  #1274AF;  /* גוון מעט כהה יותר לכפתורים ולקישורי טקסט (יחס ניגודיות 5.1:1 מול לבן) */
  --brand-dark:  #0F6191;  /* מצב hover */
  --brand-soft:  #E4F1FA;  /* רקע עדין לאייקונים ולתגיות */
  --paper:       #F4F8FB;  /* רקע בהיר */
  /* אפור המותג הוא #6B7C8F, אך מול הרקע הלבן הוא מגיע ל-4.28:1 בלבד ואינו
     עומד בדרישת הנגישות לטקסט. הטוקן לטקסט משני הוא גוון מעט כהה יותר
     (5.5:1). הגוון המקורי נשמר לאלמנטים דקורטיביים שאינם טקסט. */
  --muted:       #5A6B7E;
  --white:       #FFFFFF;

  /* טקסט */
  --text:        #102A43;
  --text-2:      #55677B;  /* גוף טקסט — 5.9:1 מול לבן, 5.5:1 מול הרקע הבהיר */
  --on-dark:     #FFFFFF;
  --on-dark-2:   #C4D3E1;  /* טקסט משני על רקע כהה — 8.6:1 מול הכחול הכהה */

  /* גבולות וצללים */
  --line:        #DCE6EF;
  --line-strong: #C6D5E2;
  --shadow-sm:   0 2px 8px rgba(16, 42, 67, .06);
  --shadow-md:   0 14px 34px rgba(16, 42, 67, .10);
  --shadow-lg:   0 30px 66px rgba(16, 42, 67, .14);

  /* סמנטי */
  --green:       #14684B;
  --danger:      #B3261E;

  /* מידות */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --shell:       1180px;
  --header-h:    72px;
}

/* ============ 2. איפוס ובסיס ============ */
*, *::before, *::after { box-sizing: border-box; }

/* חייב לגבור על כל הצהרת display בקובץ, אחרת רכיבים שהוסתרו עם התכונה
   hidden (חלון האישור, שדות מותנים, הודעות שגיאה) ימשיכו להופיע. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  /* מרווח כדי שעוגנים לא ייחתכו מתחת להדר הדביק */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Heebo", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

.section-shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 84px 24px;
}

/* ============ 3. נגישות ============ */
.skip-link {
  position: absolute;
  top: -100px;
  right: 16px;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* מצב focus אחיד וברור לכל רכיב אינטראקטיבי */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.trial a:focus-visible,
.trial button:focus-visible,
.feature-card.featured a:focus-visible {
  outline-color: var(--white);
}

/* ============ 4. רכיבים משותפים ============ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: 700 16px/1.2 "Heebo", Arial, sans-serif;
  text-align: center;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.button-lg    { min-height: 56px; padding: 15px 32px; font-size: 17px; }
.button-small { min-height: 42px; padding: 9px 18px; font-size: 15px; }
.button-block { width: 100%; }

.button-primary {
  background: var(--brand-fill);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(18, 116, 175, .22);
}
.button-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.button-primary:active { background: var(--brand-dark); transform: translateY(0); box-shadow: none; }

.button-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line-strong);
}
.button-outline:hover { border-color: var(--brand-fill); color: var(--brand-fill); background: var(--brand-soft); }
.button-outline:active { background: #D6E9F7; }

.button-light {
  background: var(--white);
  color: var(--navy);
}
.button-light:hover { background: var(--paper); transform: translateY(-2px); }

.text-link {
  font-weight: 700;
  color: var(--brand-fill);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.text-link span { margin-inline-start: 4px; display: inline-block; transition: transform .18s ease; }
.text-link:hover { border-bottom-color: currentColor; }
.text-link:hover span { transform: translateX(-4px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: #4A5B6E;
  letter-spacing: .02em;
}
.eyebrow span {
  width: 26px; height: 3px;
  background: var(--brand);
  border-radius: 3px;
  flex: none;
}
.eyebrow.light { color: var(--on-dark-2); }
.eyebrow.light span { background: var(--brand); }

.section-heading h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-heading > p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-2);
  max-width: 62ch;
}
.section-heading.center { text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center > p:not(.eyebrow) { margin-inline: auto; }

/* ============ 5. Header וניווט ============ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1280px;
  margin-inline: auto;
  min-height: var(--header-h);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* לוגו זמני — מקום מוכן להחלפה בקובץ לוגו סופי */
.brand { display: flex; align-items: center; gap: 10px; font-size: 23px; font-weight: 900; }
.brand-name { letter-spacing: -.02em; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 11px 11px 4px 11px;
  font-size: 21px;
  line-height: 1;
  overflow: hidden;
  flex: none;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset-inline: 7px;
  bottom: 5px;
  height: 4px;
  border-radius: 4px;
  background: var(--brand);
}
.brand-mark.small { width: 28px; height: 28px; border-radius: 8px 8px 3px 8px; font-size: 15px; }
.brand-mark.small::after { inset-inline: 5px; bottom: 3px; height: 3px; }

.site-nav {
  display: flex;
  gap: 26px;
  margin-inline-start: auto;
  font-weight: 600;
  color: #3E4E60;
}
.site-nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--brand-fill); border-bottom-color: var(--brand); }

.topbar-cta { flex: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 44px;
  margin-inline-start: auto;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after { content: ""; position: absolute; inset-inline: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ============ 6. Hero + תצוגת מוצר ============ */
.hero {
  max-width: 1280px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 88% 8%, rgba(22, 135, 201, .10) 0, transparent 42%),
    radial-gradient(circle at 6% 90%, rgba(22, 135, 201, .07) 0, transparent 36%);
}
.hero h1 {
  font-size: clamp(34px, 5.6vw, 60px);
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--brand-fill); }
.hero-lead { font-size: clamp(17px, 2vw, 20px); color: var(--text-2); max-width: 54ch; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}
.microcopy { font-size: 13.5px; color: var(--muted); margin: 0; }

.product-stage { position: relative; }
.stage-glow {
  position: absolute;
  inset: 10% 4%;
  background: rgba(22, 135, 201, .28);
  filter: blur(64px);
  border-radius: 50%;
}
.app-window {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.app-header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #E8EEF4;
}
.mini-brand, .garage-name { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.garage-name { font-size: 12px; color: var(--text-2); }
.avatar {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.app-body { display: grid; grid-template-columns: 132px 1fr; min-height: 380px; }
.app-body aside {
  background: var(--navy);
  color: #9FB2C4;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 14px;
  font-size: 11px;
}
.app-body aside strong {
  background: var(--brand-fill);
  color: var(--white);
  padding: 9px;
  border-radius: 7px;
  text-align: center;
}
.dashboard { background: var(--paper); padding: 22px; }
.dash-title { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
/* ה"כותרת" בתצוגת ההדגמה אינה כותרת אמיתית — היא לא נכללת בהיררכיית הכותרות */
.dash-greeting { margin: 3px 0; font-size: 19px; font-weight: 800; line-height: 1.15; }
.dash-title small { color: var(--muted); }
.fake-button {
  background: var(--brand-fill);
  color: var(--white);
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.stats div { background: var(--white); border: 1px solid #E4EBF2; border-radius: 10px; padding: 12px; }
.stats b { display: block; font-size: 20px; }
.stats span { font-size: 9.5px; color: var(--muted); }
.schedule { background: var(--white); border: 1px solid #E4EBF2; border-radius: 10px; padding: 14px; }
.schedule-head { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 6px; }
.schedule-head span { color: var(--brand-fill); }
.job {
  display: grid;
  grid-template-columns: 38px 7px 1fr auto;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #EDF2F7;
  padding: 10px 0;
  font-size: 9.5px;
}
.job time { font-weight: 800; }
.job i { width: 6px; height: 28px; border-radius: 5px; }
.dot-blue  { background: var(--brand); }
.dot-brand { background: var(--navy); }
.dot-green { background: var(--green); }
.job div { display: flex; flex-direction: column; }
.job div span { color: var(--muted); }
.job mark { background: #E4F3ED; color: var(--green); padding: 4px 8px; border-radius: 12px; }
.job mark.outline { background: #EDF2F7; color: var(--text-2); }

.floating-note {
  position: absolute;
  inset-inline-start: -18px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px 15px;
}
.floating-note > span {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #E4F3ED;
  color: var(--green);
  font-weight: 900;
}
.floating-note div { display: flex; flex-direction: column; font-size: 12px; }
.floating-note small { color: var(--muted); }
.stage-disclaimer {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ============ 7. רצועת אמון ============ */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding: 26px 24px;
  text-align: center;
}
.trust-strip p { font-size: 13.5px; color: var(--text-2); margin-bottom: 12px; }
.trust-strip ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-weight: 800;
  color: var(--navy);
}

/* ============ 8. מקטע הבעיה ============ */
.problem { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.problem h2 { font-size: clamp(28px, 4vw, 44px); }
.pain-list { display: grid; gap: 14px; margin-bottom: 26px; }
.pain-list li {
  position: relative;
  padding-inline-start: 32px;
  color: var(--text-2);
  font-size: 17px;
}
.pain-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 16px; height: 16px;
  border-radius: 5px;
  background: var(--brand-soft);
  border: 2px solid var(--brand);
}
.pain-list b { color: var(--text); }
.problem-solution {
  background: var(--paper);
  border-inline-start: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 17px;
  color: var(--text-2);
}
.problem-solution strong { color: var(--text); }

/* ============ 9. יכולות המערכת ============ */
.features { background: var(--paper); max-width: none; }
.features > .section-heading,
.features > .feature-grid { max-width: var(--shell); margin-inline: auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feature-card h3 { font-size: 20px; margin: 16px 0 8px; }
.feature-card p { color: var(--text-2); margin: 0; }
.feature-card.featured {
  grid-row: span 2;
  background: var(--navy);
  color: var(--on-dark);
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
}
.feature-card.featured p { color: var(--on-dark-2); }
.feature-card.featured:hover { transform: translateY(-3px); }

.icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-fill);
  font-size: 21px;
  font-weight: 800;
}
.icon svg { width: 25px; height: 25px; display: block; }
.featured .icon { background: rgba(255, 255, 255, .12); color: var(--white); }

.calendar-mini {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  margin-top: auto;
  padding: 16px;
}
.calendar-head { display: flex; justify-content: space-between; font-size: 14px; font-weight: 800; }
.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 14px; }
.days i { font-style: normal; text-align: center; font-size: 11px; padding: 6px 2px; color: var(--text-2); }
.days i.active { background: var(--brand-fill); color: var(--white); border-radius: 6px; font-weight: 700; }

/* ============ 10. איך מתחילים ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.steps li { border-top: 3px solid var(--brand); padding-top: 22px; }
.steps b { color: var(--brand-fill); font-size: 14px; font-weight: 800; }
.steps h3 { font-size: 21px; margin: 6px 0 8px; }
.steps p { color: var(--text-2); margin: 0; }

/* ============ 11. סרטון הסבר ============ */
.video { background: var(--paper); max-width: none; }
.video > * { max-width: var(--shell); margin-inline: auto; }

.video-player { margin-top: 36px; }
.video-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-poster:hover { transform: translateY(-3px); }
.video-poster-art { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; }
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 86px; height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-fill);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(16, 42, 67, .38);
  transition: transform .2s ease, background-color .2s ease;
}
.video-poster:hover .video-play { transform: scale(1.06); background: var(--brand); }
/* משולש ההפעלה נשאר בכיוון המוכר מנגני הווידאו, גם בעמוד RTL */
.video-play svg { transform: translateX(2px); }
.video-badge {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-start: 18px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
}
.video-player iframe,
.video-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
.video-fallback {
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text-2);
  font-size: 15px;
  text-align: center;
}

.video-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.video-flow article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.video-flow h3 { font-size: 20px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.flow-tag {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}
.video-flow ol { counter-reset: flow; margin-top: 16px; display: grid; gap: 10px; }
.video-flow li {
  counter-increment: flow;
  position: relative;
  padding-inline-start: 36px;
  color: var(--text-2);
}
.video-flow li::before {
  content: counter(flow);
  position: absolute;
  inset-inline-start: 0;
  top: 2px;
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.video-disclaimer { margin-top: 20px; text-align: center; font-size: 13px; color: var(--muted); }

/* ============ 12. תמחור ============ */
.pricing { max-width: none; }
.pricing > .section-heading,
.pricing > .price-grid,
.pricing > .pricing-notes { max-width: var(--shell); margin-inline: auto; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.price-card.popular {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-md);
}
.popular-tag {
  position: absolute;
  top: -15px;
  inset-inline-end: 24px;
  margin: 0;
  background: var(--brand-fill);
  color: var(--white);
  border-radius: 999px;
  padding: 5px 15px;
  font-size: 12.5px;
  font-weight: 800;
}
.plan { font-weight: 800; color: var(--brand-fill); margin: 0 0 8px; }
.price { margin: 0 0 10px; font-size: 16px; color: var(--text-2); }
.price b { font-size: 44px; color: var(--text); letter-spacing: -.03em; }
.price small { font-size: 14px; color: var(--muted); }
.plan-desc { color: var(--text-2); min-height: 52px; margin: 0; }
.price-card ul {
  flex: 1;
  padding: 20px 0;
  margin: 18px 0 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
  align-content: start;
}
.price-card li { position: relative; padding-inline-start: 26px; color: var(--text-2); }
.price-card li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--green);
  font-weight: 900;
}
.pricing-notes {
  margin-top: 30px;
  text-align: center;
  color: var(--text-2);
  font-size: 13.5px;
}
.pricing-notes p { margin-bottom: 6px; max-width: 78ch; margin-inline: auto; }
.pricing-notes strong { color: var(--text); }

/* ============ 13. שאלות נפוצות ============ */
.faq { display: grid; grid-template-columns: .68fr 1.32fr; gap: 60px; align-items: start; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--brand-fill); }
.faq-list summary span {
  flex: none;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
  transition: transform .2s ease;
}
.faq-list summary span::before { content: "+"; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { color: var(--text-2); padding: 0 0 20px; margin: 0; max-width: 72ch; }

/* ============ 14. טופס ניסיון ============ */
.trial {
  max-width: 1120px;
  margin: 60px auto 90px;
  background: var(--navy);
  color: var(--on-dark);
  border-radius: var(--radius-xl);
  display: grid;
  gap: 34px;
  justify-items: center;
  padding: 56px 40px;
}
.trial h2 { font-size: clamp(28px, 4vw, 44px); }
.trial-copy { max-width: 700px; text-align: center; }
.trial-copy .eyebrow { justify-content: center; }
.trial-copy > p { font-size: 18px; color: var(--on-dark-2); margin-top: 16px; }
.trial-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-top: 22px; }
.trial-benefits li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--on-dark-2);
  font-size: 15px;
}
.trial-benefits li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--brand);
  font-weight: 900;
}

/* ---- טופס האפיון וההרשמה ---- */
.lead-form {
  width: min(100%, 800px);
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  gap: 22px;
  box-shadow: var(--shadow-lg);
  text-align: start;
}
.form-head h3 { font-size: 25px; margin-bottom: 8px; }
.form-head p { color: var(--text-2); font-size: 15px; margin: 0; }

/* מחוון התקדמות על שדות החובה */
.form-progress { display: grid; gap: 7px; }
.form-progress-track {
  height: 7px;
  border-radius: 999px;
  background: #E3EBF3;
  overflow: hidden;
}
.form-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--brand-fill);
  transition: width .25s ease;
}
.form-progress-text { font-size: 13px; color: var(--muted); margin: 0; }
.form-progress.is-complete .form-progress-bar { background: var(--green); }

/* מקטעי הטופס */
.form-group {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 22px 0 0;
  display: grid;
  gap: 18px;
}
.form-group > legend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.group-num {
  display: grid;
  place-items: center;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.group-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-wide { grid-column: 1 / -1; }

.field { display: grid; gap: 5px; align-content: start; }
.lead-form label { font-size: 13.5px; font-weight: 700; }
.req { color: var(--danger); }
.opt, .hint { font-weight: 500; color: var(--muted); }
.hint { font-size: 12.5px; }
.field-note { font-size: 12.5px; color: var(--muted); margin: 2px 0 0; line-height: 1.5; }

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form input[type="url"],
.lead-form input[type="number"],
.lead-form input[type="file"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: 500 16px "Heebo", Arial, sans-serif;
  color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.lead-form input[type="file"] { padding: 9px 12px; font-size: 14px; }
.lead-form input[type="file"]::file-selector-button {
  font: 700 14px "Heebo", Arial, sans-serif;
  margin-inline-end: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}
.lead-form input[type="file"]::file-selector-button:hover { border-color: var(--brand-fill); color: var(--brand-fill); }
.lead-form textarea { resize: vertical; min-height: 82px; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #5F7185; }
.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover { border-color: var(--muted); }

/* מיקוד בעכבר — הדגשה עדינה. מיקוד במקלדת שומר על מסגרת המיקוד הכללית. */
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand-fill);
  box-shadow: 0 0 0 3px rgba(22, 135, 201, .3);
}
.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  box-shadow: none;
}

/* בחירה מרובה כתגיות — קומפקטי יותר מרשימת תיבות סימון */
.chip-group { border: 0; margin: 0; padding: 0; }
.chip-group > legend {
  padding: 0;
  margin-bottom: 9px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { margin: 0; }
/* תיבת הסימון נשארת במקום ונגישה למקלדת — רק בלתי נראית */
.chip input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  margin: 0;
}
.chip span {
  display: inline-block;
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.chip span:hover { border-color: var(--brand-fill); color: var(--brand-fill); }
.chip input:checked + span {
  background: var(--brand-soft);
  border-color: var(--brand-fill);
  color: var(--brand-dark);
}
.chip input:checked + span::before { content: "✓ "; font-weight: 900; }
.chip input:focus-visible + span { outline: 3px solid var(--brand); outline-offset: 2px; }
.chips-plans span { font-weight: 700; }

/* סימון ברור כשמסלול נבחר אוטומטית מכרטיס התמחור */
.plan-selected {
  margin: 10px 0 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-dark);
}
/* outline ולא box-shadow — לא משפיע על הפריסה ולכן אין קפיצה */
#plan-group.is-highlighted .chips-plans {
  border-radius: var(--radius);
  outline: 3px solid var(--brand);
  outline-offset: 6px;
}

.conditional { margin-top: -4px; }

.file-chosen {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}

/* הסכמה ושליחה */
.form-submit {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: grid;
  gap: 16px;
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  width: 20px; height: 20px;
  margin: 2px 0 0;
  accent-color: var(--brand-fill);
  cursor: pointer;
  flex: none;
}
.consent-field.invalid .consent span { color: var(--danger); }
.doc-pending { color: var(--muted); }

.submit-buttons { display: grid; gap: 10px; }
.submit-buttons .button svg { flex: none; }

.field-error { color: var(--danger); font-size: 13px; font-weight: 600; margin: 0; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--danger); }
.form-legal { font-size: 12.5px; color: var(--muted); text-align: center; margin: 0; line-height: 1.55; }

.form-status {
  max-width: 780px;
  margin: 18px auto 0;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 600;
}

/* ---- חלון האישור לפני המעבר ל-WhatsApp או לדוא״ל ---- */
/* כל עוד חלון האישור פתוח, הכפתורים הצפים מוסתרים כדי לא להתחרות בו */
body.modal-open .sticky-cta,
body.modal-open .wa-float { display: none; }

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 42, 67, .62);
  overflow-y: auto;
}
.confirm-panel {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  width: min(100%, 620px);
  max-height: 92vh;
  overflow-y: auto;
  text-align: start;
}
.confirm-panel h3 { font-size: 22px; margin-bottom: 10px; }
.confirm-intro { color: var(--text-2); font-size: 15px; }
.confirm-logo-note {
  background: #FFF6E5;
  border: 1px solid #F0D9A8;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #6B4C10;
}
.confirm-preview-label { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.confirm-panel pre {
  margin: 0 0 20px;
  max-height: 260px;
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  font: 500 13.5px/1.7 "Heebo", Arial, sans-serif;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-2);
}
.confirm-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.confirm-actions .button { flex: 1 1 200px; }

/* ============ 15. יצירת קשר ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 880px;
  margin-inline: auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.contact-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  flex: none;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-fill);
}
.contact-whatsapp .contact-icon { background: #E3F5EA; color: #157A45; }
.contact-body { display: flex; flex-direction: column; }
.contact-body b { font-size: 17px; }
.contact-line { color: var(--brand-fill); font-weight: 700; word-break: break-word; }
.contact-body small { color: var(--muted); font-size: 13px; }

/* ============ 16. Footer + CTA צף ============ */
.site-footer { background: var(--navy); color: var(--on-dark-2); margin-top: 20px; }
.footer-inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 56px 24px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand .brand-mark { background: var(--white); color: var(--navy); }
.footer-brand .brand-mark::after { background: var(--brand); }
.footer-brand p { color: var(--on-dark-2); max-width: 38ch; font-size: 15px; }
.footer-nav h2 { font-size: 15px; color: var(--white); margin-bottom: 14px; }
.footer-nav ul { display: grid; gap: 10px; font-size: 15px; }
.footer-nav a { border-bottom: 1px solid transparent; padding-bottom: 1px; }
.footer-nav a:hover { color: var(--white); border-bottom-color: var(--brand); }
.footer-pending { color: #93A6B9; cursor: default; }
.footer-pending small { font-size: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 24px;
  max-width: var(--shell);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom p { margin: 0; }

.footer-contact { margin-top: 16px; display: grid; gap: 9px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 2px;
  word-break: break-all;
}
.footer-contact a:hover { border-bottom-color: var(--brand); color: var(--brand); }
.footer-contact svg { flex: none; }

.sticky-cta {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

/* ---- כפתור WhatsApp צף ----
   ירוק WhatsApp המקורי (#25D366) מגיע ליחס 2:1 מול הסמל הלבן ואינו עומד
   בדרישת 3:1 לרכיבי ממשק. הגוון כאן שומר על הזיהוי המיידי ומגיע ל-3.1:1.
   מיקום: הכפתור יושב בפינה התחתונה השמאלית — ב-RTL זהו inset-inline-end. */
.wa-float {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 22px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}
.wa-float-btn {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  flex: none;
  border-radius: 50%;
  background: #1DA851;
  color: var(--white);
  box-shadow: 0 10px 26px rgba(16, 42, 67, .3);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.wa-float-btn:hover { background: #17914A; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16, 42, 67, .36); }
.wa-float-btn:active { transform: translateY(0); }
.wa-float-label {
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

/* ============ 17. Media queries ============ */
@media (max-width: 1080px) {
  .site-nav { gap: 18px; font-size: 15px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.featured { grid-row: span 1; }
  .trial { grid-template-columns: 1fr 380px; gap: 36px; padding: 48px 36px; }
}

@media (max-width: 900px) {
  .section-shell { padding: 64px 20px; }

  /* ניווט מובייל — נפתח מתחת להדר */
  .nav-toggle { display: grid; place-items: center; }
  .topbar-cta { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }

  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 44px; padding-bottom: 64px; }
  .problem, .faq, .video-flow, .trial { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .pricing > .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .trial { margin-inline: 20px; padding: 40px 22px; }
  .submit-buttons { gap: 12px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* CTA צף מחליף את כפתור ההדר במסכים קטנים */
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }

  /* הכפתור הצף מתרומם מעל רצועת ה-CTA ומצטמצם לסמל בלבד */
  .wa-float { bottom: 86px; inset-inline-end: 14px; }
  .wa-float-label { display: none; }
  .wa-float-btn { width: 52px; height: 52px; }
  .wa-float-btn svg { width: 27px; height: 27px; }
}

@media (max-width: 620px) {
  .section-shell { padding: 56px 18px; }
  .topbar-inner { padding: 8px 16px; }
  .brand { font-size: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-actions .text-link { text-align: center; }
  .app-body { grid-template-columns: 1fr; }
  .app-body aside { display: none; }
  .dashboard { padding: 15px; }
  .job { grid-template-columns: 34px 6px 1fr; }
  .job mark { display: none; }
  .floating-note { inset-inline-start: 8px; bottom: 10px; padding: 9px 12px; }
  .floating-note div { font-size: 11px; }
  .group-fields { grid-template-columns: 1fr; }
  .lead-form { padding: 22px 18px; }
  .form-group > legend { font-size: 17px; }
  .confirm-panel { padding: 22px 18px; }
  .confirm-actions .button { flex: 1 1 100%; }
  .price-card, .feature-card, .video-flow article, .contact-card { padding: 22px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .video-play { width: 64px; height: 64px; }
  .video-badge { font-size: 12px; padding: 6px 11px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip ul { gap: 8px 20px; font-size: 14px; }
}

/* ============ העדפות משתמש ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .button:hover,
  .feature-card:hover,
  .contact-card:hover,
  .wa-float-btn:hover,
  .video-poster:hover { transform: none; }
}

@media (forced-colors: active) {
  .button, .feature-card, .price-card, .contact-card, .video-poster { border: 1px solid CanvasText; }
}

@media print {
  .topbar, .sticky-cta, .wa-float, .video-play, .stage-glow { display: none !important; }
  body { padding-bottom: 0; }
}
