/* דניאל מימוש זכויות רפואיות: עיצוב האתר */

:root {
  --ink: #0B1B3F;
  --ink-2: #13275A;
  --ink-deep: #071230;
  --blue: #1F4FE0;
  --blue-deep: #173CB0;
  --blue-soft: #9DB7FF;
  --sky: #EDF2FD;
  --sky-2: #D9E3F8;
  --paper: #F5F7FB;
  --line: #DCE3F0;
  --muted: #4B5875;
  --err: #C0392B;
  --shadow: 0 34px 64px -30px rgba(7, 18, 48, .6), 0 12px 26px -16px rgba(7, 18, 48, .32);
  --font-display: "Karantina", "IBM Plex Sans Hebrew", Arial, sans-serif;
  --font-body: "IBM Plex Sans Hebrew", "Assistant", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --header-h: 76px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  font-size: calc(100% * var(--scale, 1));
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
h1, h2 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: .95; letter-spacing: 0; text-wrap: balance; }
h3 { margin: 0; font-family: var(--font-body); font-weight: 600; line-height: 1.3; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
button { font: inherit; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.hero :focus-visible, .final :focus-visible, .fee :focus-visible, .ticker :focus-visible,
.site-footer :focus-visible, .thanks :focus-visible, .src-card.dark :focus-visible { outline-color: #fff; }
.lead-card :focus-visible { outline-color: var(--blue); }

.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.ic {
  width: 1.35em; height: 1.35em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* שכבת גרעין עדינה על משטחים כהים, כדי שלא ייראו שטוחים */
.grain { position: relative; isolation: isolate; }
.grain::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--grain); background-size: 180px; opacity: .07;
}

.skip {
  position: absolute; z-index: 100; top: -80px; inset-inline-start: 12px;
  padding: 10px 16px; border-radius: 8px;
  background: var(--blue); color: #fff; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; }

/* ---------- כפתורים ---------- */
.btn {
  --bg: var(--blue); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: .7em 1.4em;
  border: 2px solid transparent; border-radius: 12px;
  background: var(--bg); color: var(--fg);
  font: 600 1.08rem/1.2 var(--font-body); text-decoration: none; cursor: pointer;
  box-shadow: 0 14px 26px -14px rgba(23, 60, 176, .75);
  transition: transform .16s var(--ease-out), background-color .2s ease, box-shadow .2s ease;
}
.btn .ic { transition: transform .25s var(--ease-out); }
.btn:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { background: var(--blue-deep); }
  .btn:hover .ic { transform: translateX(-5px); }
  .btn-white:hover { background: var(--sky); }
  .btn-ghost:hover { background: var(--sky); }
}
.btn-sm { min-height: 44px; padding: .5em 1.1em; font-size: .98rem; border-radius: 10px; }
.btn-lg { min-height: 62px; padding: .8em 1.8em; font-size: 1.2rem; }
.btn-block { width: 100%; }
.btn-white { --bg: #fff; --fg: var(--blue); box-shadow: 0 18px 34px -16px rgba(7, 18, 48, .45); }
.btn-ghost { --bg: transparent; --fg: var(--blue); border-color: var(--blue); box-shadow: none; }
.btn[aria-busy="true"] { opacity: .75; cursor: progress; }

/* ---------- לוגו ---------- */
.brand { display: inline-flex; color: var(--ink); text-decoration: none; border-radius: 8px; }
.brand-logo { height: 58px; width: auto; direction: ltr; overflow: visible; }
.brand-logo .lg-fig { fill: none; stroke: var(--blue); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-logo .lg-solid { fill: var(--blue); stroke: none; }
.brand-logo .lg-line { fill: none; stroke: var(--blue); stroke-width: 6; stroke-linecap: round; }
.brand-logo .lg-dot { fill: #fff; stroke: var(--blue); stroke-width: 5; }
.brand-logo .lg-name { fill: var(--ink); font-family: "Karantina", "IBM Plex Sans Hebrew", sans-serif; font-weight: 700; font-size: 132px; }
.brand-logo .lg-sub { fill: var(--ink); font-family: "IBM Plex Sans Hebrew", sans-serif; font-weight: 600; font-size: 31px; }
.brand-logo .lg-walk { transition: transform .45s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .brand:hover .lg-walk { transform: translateX(-6px); }
}
.site-footer .brand-logo .lg-fig, .site-footer .brand-logo .lg-line, .site-footer .brand-logo .lg-dot { stroke: var(--blue-soft); }
.site-footer .brand-logo .lg-solid { fill: var(--blue-soft); }
.site-footer .brand-logo .lg-dot { fill: var(--ink-deep); }
.site-footer .brand-logo .lg-name, .site-footer .brand-logo .lg-sub { fill: #fff; }

/* ---------- כותרת עליונה ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }
.label-sm { display: none; }

@media (max-width: 520px) {
  :root { --header-h: 66px; }
  .brand-logo { height: 48px; }
  .site-header .btn-sm { min-height: 42px; padding: .45em .95em; font-size: .92rem; }
  .label-lg { display: none; }
  .label-sm { display: inline; }
}

/* ---------- הירו ---------- */
.hero {
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink) 0%, #0A1838 100%); color: #fff;
  padding-block: clamp(36px, 5.5vw, 80px) clamp(28px, 4vw, 48px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  grid-template-areas: "text form" "badges form";
  column-gap: clamp(32px, 6vw, 88px); row-gap: 34px;
}
.hero-text { grid-area: text; align-self: end; }
.hero-form { grid-area: form; align-self: center; }
.hero-badges { grid-area: badges; align-self: start; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 14px; border-radius: 6px;
  background: rgba(157, 183, 255, .12); color: #D6E2FF;
  font-size: .95rem; font-weight: 500;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; border: 2.5px solid var(--blue-soft); }

.hero h1 { margin-top: 18px; font-size: clamp(3rem, 12.5vw, 5.8rem); line-height: .9; }
.ln { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.ln:last-child { padding-bottom: .3em; margin-bottom: -.3em; }
.ln > span { display: inline-block; animation: lineUp .9s var(--ease-out) both; }
.ln:nth-child(1) > span { animation-delay: .04s; }
.ln:nth-child(2) > span { animation-delay: .12s; }
.ln:nth-child(3) > span { animation-delay: .2s; }
.hl { position: relative; white-space: nowrap; color: var(--blue-soft); }
.hl .swoosh {
  position: absolute; left: -2%; bottom: -.16em; width: 104%; height: .3em;
  fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: draw 1s .75s var(--ease-out) forwards;
}
.lede { margin-top: 22px; max-width: 32em; font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: #C4D0EC; animation: fadeUp .8s .3s var(--ease-out) both; }

.hero-badges { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 26px; }
.hero-badges li {
  display: flex; align-items: flex-start; gap: 12px; padding-top: 16px;
  border-top: 1px solid rgba(157, 183, 255, .22);
  animation: fadeUp .7s var(--ease-out) both;
}
.hero-badges li:nth-child(1) { animation-delay: .42s; }
.hero-badges li:nth-child(2) { animation-delay: .5s; }
.hero-badges li:nth-child(3) { animation-delay: .58s; }
.hero-badges li:nth-child(4) { animation-delay: .66s; }
.badge-ic { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 10px; background: rgba(157, 183, 255, .14); color: var(--blue-soft); }
.badge-ic .ic { width: 22px; height: 22px; }
.hero-badges b { display: block; font-size: 1.04rem; font-weight: 600; line-height: 1.3; color: #fff; }
.hero-badges .t { display: block; margin-top: 2px; font-size: .92rem; line-height: 1.4; color: #A9B8DD; }

/* המסלול: המבוגר עם ההליכון הולך לאורך הדרך, כמו בלוגו */
.hero-route { margin-top: clamp(26px, 4vw, 44px); }
.route { position: relative; height: 76px; }
.route-line {
  position: absolute; right: 8px; left: 2px; bottom: 10px; height: 5px; border-radius: 5px;
  background: var(--blue-soft); transform-origin: right center;
  animation: routeDraw 2.6s .55s var(--ease-in-out) both;
}
.route-dot {
  position: absolute; right: 0; bottom: 4px; z-index: 1; width: 17px; height: 17px; border-radius: 50%;
  border: 4.5px solid var(--blue-soft); background: #0A1838;
  animation: pop .45s .35s var(--ease-out) both;
}
.route-walker { position: absolute; inset: 0; animation: walk 2.6s .55s var(--ease-in-out) both; }
.route-walker svg {
  position: absolute; left: 0; bottom: 10px; width: 58px; height: 64px;
  color: var(--blue-soft); fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round;
  animation: step .325s .55s ease-in-out 8 alternate both;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "text" "form" "badges"; row-gap: 30px; }
}
@media (max-width: 460px) {
  .hero-badges { grid-template-columns: 1fr; gap: 14px; }
  .route { height: 62px; }
  .route-walker svg { width: 47px; height: 52px; }
}

@keyframes lineUp { from { transform: translateY(105%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes routeDraw { from { transform: scaleX(0); } }
@keyframes walk { from { transform: translateX(calc(100% - 58px)); } }
@keyframes step { to { transform: translateY(-3px); } }
@keyframes pop { from { opacity: 0; transform: scale(.6); } }

/* ---------- כרטיס טופס ---------- */
.lead-card {
  position: relative; background: #fff; color: var(--ink);
  border-radius: 22px; padding: clamp(26px, 3.2vw, 38px);
  box-shadow: var(--shadow);
}
.card-tag {
  position: absolute; top: 0; inset-inline-start: clamp(26px, 3.2vw, 38px); transform: translateY(-50%);
  padding: 5px 12px; border-radius: 6px;
  background: var(--blue); color: #fff; font-size: .88rem; font-weight: 600;
}
.card-title { font-size: clamp(2.6rem, 4vw, 3.2rem); }
.card-sub { margin-top: 6px; color: var(--muted); }

.lead-form { position: relative; margin-top: 22px; display: grid; gap: 16px; }
.field label { display: block; margin-bottom: 6px; font-size: 1rem; font-weight: 600; }
.field input {
  width: 100%; height: 60px; padding: 0 18px;
  border: 2px solid var(--line); border-radius: 12px; background: var(--paper);
  font: 500 1.18rem var(--font-body); color: var(--ink);
  transition: border-color .15s ease, box-shadow .2s ease, background-color .15s ease;
}
.field input[dir="ltr"] { text-align: right; }
.field input::placeholder { color: #98A3BD; }
.field input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(31, 79, 224, .16); }
.field input[aria-invalid="true"] { border-color: var(--err); background: #FFF6F5; animation: nudge .3s var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .field input:hover { border-color: #B8C6E4; } }
@keyframes nudge { 25% { transform: translateX(4px); } 75% { transform: translateX(-4px); } }
.err { margin-top: 6px; font-size: .94rem; color: var(--err); }
.err:empty, .form-msg:empty { display: none; }
.form-msg { font-weight: 500; color: var(--err); }
/* שדה מלכודת לבוטים: מוסתר במקום, בלי להזיז אותו הצידה (בדף מימין לשמאל זה יוצר גלילה לרוחב) */
.hp { position: absolute; top: 0; right: 0; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); opacity: 0; pointer-events: none; }
.fine { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; line-height: 1.5; color: var(--muted); }
.fine .ic { width: 1.1em; height: 1.1em; margin-top: .2em; }
.fine a { color: var(--blue); }

/* ---------- רצועה רצה ---------- */
.ticker { overflow: hidden; padding-block: 16px; background: var(--blue); color: #fff; }
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker ul { display: flex; align-items: center; flex: none; gap: 30px; margin: 0; padding: 0 0 0 30px; list-style: none; }
.ticker li {
  display: flex; align-items: center; gap: 30px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.4rem); line-height: 1;
}
.ticker li::after { content: ""; width: 12px; height: 12px; border-radius: 50%; border: 3px solid var(--blue-soft); }
@media (hover: hover) and (pointer: fine) { .ticker:hover .ticker-track { animation-play-state: paused; } }
@keyframes ticker { to { transform: translateX(50%); } }

/* ---------- סקשנים ---------- */
.section { padding-block: clamp(72px, 9vw, 124px) clamp(80px, 10vw, 136px); }
.section-sky { background: var(--paper); }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 600; color: var(--blue); }
.kicker::before { content: ""; width: 10px; height: 10px; border-radius: 50%; border: 2.5px solid currentColor; }
.kicker-light { color: #D6E2FF; }
.section h2 { margin-top: 12px; font-size: clamp(2.8rem, 6vw, 4.6rem); }
.section-lede { margin-top: 16px; max-width: 36em; font-size: 1.2rem; color: var(--muted); }

/* מקורות: גריד א-סימטרי */
.bento { margin-top: 48px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 18px; }
.src-card {
  position: relative; overflow: hidden; padding: 30px 28px;
  border-radius: 20px; background: var(--paper);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.src-card.dark { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; min-height: 440px; background: var(--ink); color: #fff; }
.src-card.dark p { color: #C4D0EC; }
.src-card.dark .src-ic { background: rgba(157, 183, 255, .14); color: var(--blue-soft); }
.src-card.dark .src-num { color: rgba(157, 183, 255, .16); font-size: clamp(9rem, 16vw, 13rem); }
@media (hover: hover) and (pointer: fine) {
  .src-card:hover { transform: translateY(-4px); box-shadow: 0 28px 48px -30px rgba(7, 18, 48, .45); }
}
.src-ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: #fff; color: var(--blue); }
.src-ic .ic { width: 28px; height: 28px; }
.src-num {
  position: absolute; top: 10px; left: 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 5.6rem; line-height: 1; color: var(--sky-2);
}
.src-card h3 { margin-top: 20px; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 3.2vw, 2.6rem); line-height: 1; }
.src-card.dark h3 { font-size: clamp(2.6rem, 4.4vw, 3.6rem); }
.src-card p { margin-top: 10px; color: var(--muted); }
.note-strip {
  margin-top: 18px; display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; border-radius: 14px; border: 2px dashed var(--sky-2); color: var(--ink); font-weight: 500;
}
.note-strip .ic { color: var(--blue); }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .src-card.dark { grid-row: auto; min-height: 340px; }
}

/* בדיקה עצמית */
.check-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.check-intro .body { margin-top: 16px; font-size: 1.15rem; color: var(--muted); }
.check-result {
  margin-top: 28px; padding: 24px; border-radius: 18px;
  border: 2px solid var(--line); background: #fff;
  transition: border-color .3s ease, box-shadow .4s var(--ease-out);
}
.check-result.good { border-color: var(--blue); box-shadow: 0 0 0 6px rgba(31, 79, 224, .1); }
.meter { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.meter span { height: 10px; border-radius: 3px; background: var(--sky-2); transform-origin: right center; }
.meter span.on { background: var(--blue); animation: seg .4s var(--ease-out); }
@keyframes seg { from { transform: scaleX(.2); } }
.meter span:nth-child(3) { box-shadow: -3px 0 0 #fff; }
.meter-count { margin-top: 12px; font-weight: 600; }
.meter-count b { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.check-msg { margin-top: 4px; color: var(--muted); }
.check-result.good .check-msg { color: var(--ink); font-weight: 500; }
.check-result .btn { margin-top: 18px; animation: fadeUp .4s var(--ease-out) both; }

.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.tile {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  min-height: 156px; padding: 20px 18px 18px;
  border: 2px solid var(--line); border-radius: 16px; background: #fff; color: var(--ink);
  text-align: right; cursor: pointer;
  transition: transform .16s var(--ease-out), border-color .2s ease, background-color .25s ease, box-shadow .3s var(--ease-out);
}
.tile:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) { .tile:hover { border-color: #AFC0E6; } }
.tile .ic { width: 36px; height: 36px; margin-bottom: auto; color: var(--blue); stroke-width: 1.6; transition: transform .35s var(--ease-out); }
.tile .tl { margin-top: 14px; font-size: 1.1rem; font-weight: 600; line-height: 1.25; }
.tile small { font-size: .9rem; line-height: 1.35; color: var(--muted); }
.tile::after {
  content: ""; position: absolute; top: 14px; left: 14px; width: 26px; height: 26px;
  border: 2px solid var(--line); border-radius: 50%; background: #fff no-repeat center / 14px;
  transition: border-color .2s ease, transform .3s var(--ease-out);
}
.tile[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 18px 32px -18px rgba(23, 60, 176, .8); }
.tile[aria-pressed="true"] .ic { color: #fff; transform: translateY(-3px); }
.tile[aria-pressed="true"] small { color: #D6E1FF; }
.tile[aria-pressed="true"]::after {
  border-color: #fff; transform: scale(1.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F4FE0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E");
}
.tile-wide { grid-column: 1 / -1; min-height: 0; flex-direction: row; align-items: center; gap: 16px; padding-inline-end: 56px; }
.tile-wide .ic { margin-bottom: 0; }
.tile-wide .tw { display: flex; flex-direction: column; }
.tile-wide .tl { margin-top: 0; }
.tile-wide::after { top: calc(50% - 13px); }
.disclaimer { margin-top: 30px; font-size: .9rem; color: var(--muted); }

@media (max-width: 900px) { .check-grid { grid-template-columns: 1fr; } .check-intro .check-result { display: none; } }
@media (min-width: 901px) { .check-result-mobile { display: none; } }
@media (max-width: 640px) {
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tile { min-height: 138px; padding: 16px 14px 14px; }
  .tile .ic { width: 30px; height: 30px; }
  .tile .tl { font-size: 1.02rem; }
  .tile small { font-size: .84rem; }
}

/* למה לא לבד */
.why-grid, .faq-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.why-grid .section-head > p, .faq-grid .section-head > p { margin-top: 18px; font-size: 1.15rem; color: var(--muted); }
.why-grid .section-head .btn, .faq-grid .section-head .btn { margin-top: 26px; }
.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding-block: 30px; border-top: 1px solid var(--line); }
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list .num {
  min-width: 1.2em; font-family: var(--font-display); font-weight: 700; font-size: 4.6rem; line-height: .8;
  color: transparent; -webkit-text-stroke: 1.5px var(--blue);
  transition: color .7s .25s var(--ease-out);
}
.why-list .in .num { color: var(--blue); }
.why-list h3 { font-size: 1.4rem; }
.why-list p { margin-top: 8px; color: var(--muted); }
@media (min-width: 901px) { .why-grid .section-head, .faq-grid .section-head { position: sticky; top: calc(var(--header-h) + 36px); } }
@media (max-width: 900px) { .why-grid, .faq-grid { grid-template-columns: 1fr; } }

/* איורים עם קו מדורג, שמצייר את עצמו כשהסקשן נכנס למסך */
.defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.art { fill: none; stroke: url(#g-ico); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.art .dot { fill: url(#g-ico); stroke: none; }
.js .draw-on .art path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.draw-on.in .art path { stroke-dashoffset: 0; transition: stroke-dashoffset 1.3s var(--ease-out) var(--d, 0s); }
.js .draw-on .art .dot { opacity: 0; }
.draw-on.in .art .dot { opacity: 1; transition: opacity .4s ease calc(var(--d, 0s) + .7s); }

/* איך זה עובד: שישה שלבים */
.section-head.center .section-lede { margin-inline: auto; }
.process { list-style: none; margin: 60px 0 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.process li { position: relative; text-align: center; }
.process li:nth-child(2) { --d: .18s; }
.process li:nth-child(3) { --d: .36s; }
.process li:nth-child(4) { --d: .54s; }
.process li:nth-child(5) { --d: .72s; }
.process li:nth-child(6) { --d: .9s; }
.p-art {
  position: relative; display: grid; place-items: center; width: 104px; height: 104px; margin: 0 auto;
  border-radius: 28px; background: #fff; box-shadow: 0 22px 38px -28px rgba(7, 18, 48, .5);
  transition: transform .45s var(--ease-out);
}
.p-art .art { width: 60px; height: 60px; }
.p-num {
  position: absolute; top: -10px; left: -10px; display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--blue); color: #fff; box-shadow: 0 0 0 4px var(--paper);
  font-family: var(--font-body); font-weight: 700; font-size: .95rem; line-height: 1;
  transition: transform .45s var(--ease-out) calc(var(--d, 0s) + .2s), opacity .3s ease calc(var(--d, 0s) + .2s);
}
.js .process:not(.in) .p-num { opacity: 0; transform: scale(.6); }
.process li:not(:last-child)::after {
  content: ""; position: absolute; top: 51px; right: calc(50% + 66px); width: calc(100% + 20px - 132px); height: 2px;
  background: repeating-linear-gradient(to left, var(--blue) 0 7px, transparent 7px 13px);
  transform-origin: right center;
  transition: transform .7s var(--ease-out) calc(var(--d, 0s) + .45s);
}
.js .process:not(.in) li:not(:last-child)::after { transform: scaleX(0); }
.process h3 { margin-top: 22px; font-size: 1.1rem; }
.process p { margin-top: 6px; font-size: .95rem; line-height: 1.5; color: var(--muted); }
@media (hover: hover) and (pointer: fine) { .process li:hover .p-art { transform: translateY(-5px) rotate(-3deg); } }
.process-cta { margin-top: 50px; text-align: center; }
@media (max-width: 1060px) {
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 44px; }
  .process li::after { display: none; }
}
@media (max-width: 600px) {
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 14px; }
  .p-art { width: 88px; height: 88px; border-radius: 24px; }
  .p-art .art { width: 52px; height: 52px; }
  .process h3 { margin-top: 18px; font-size: 1.02rem; }
  .process p { font-size: .9rem; }
}

/* רצועת טופס עם חותמת */
.band { padding-block: clamp(52px, 6vw, 76px); background: var(--blue); color: #fff; }
.band :focus-visible { outline-color: #fff; }
.band-grid { position: relative; display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; max-width: 1040px; }
.band-body { text-align: center; }
.band h2 { font-size: clamp(2.7rem, 5.4vw, 4.2rem); }
.band-sub { margin-top: 10px; font-size: 1.15rem; color: #DCE5FF; }
.band-form { position: relative; margin-top: 26px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; gap: 12px; align-items: start; text-align: right; }
.band .field input { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .12); color: #fff; }
.band .field input::placeholder { color: #DCE5FF; }
.band .field input:focus { border-color: #fff; background: #fff; color: var(--ink); box-shadow: 0 0 0 4px rgba(255, 255, 255, .28); }
.band .field input:focus::placeholder { color: #98A3BD; }
.band .field input[aria-invalid="true"] { border-color: #FFB9AE; background: rgba(255, 255, 255, .12); }
@media (hover: hover) and (pointer: fine) { .band .field input:hover { border-color: #fff; } }
.band .btn { min-height: 60px; white-space: nowrap; }
.band .err, .band .form-msg { color: #FFE3DE; }
.band-form .form-msg, .band-form .fine { grid-column: 1 / -1; }
.band .fine { justify-content: center; color: #DCE5FF; }
.band .fine a { color: #fff; }

.stamp { position: relative; width: 170px; aspect-ratio: 1; filter: drop-shadow(0 16px 22px rgba(7, 18, 48, .35)); transition: transform .9s var(--ease-out), opacity .4s ease; }
.js .band-grid:not(.in) .stamp { opacity: 0; transform: scale(.55) rotate(-70deg); }
.stamp-edge { width: 100%; height: 100%; animation: spin 50s linear infinite; }
.stamp-ring { fill: none; stroke: var(--blue); stroke-width: 2; stroke-dasharray: 4 5; }
.stamp-t {
  position: absolute; inset: 0; display: grid; place-content: center; gap: 2px; text-align: center; transform: rotate(-12deg);
  font-family: var(--font-display); font-weight: 700; font-size: 2.05rem; line-height: .95; color: var(--ink);
}
.stamp-t b:last-child { color: var(--blue); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 760px) {
  .band { padding-top: 72px; }
  .band-grid { grid-template-columns: 1fr; }
  .stamp { position: absolute; top: -124px; left: 0; width: 104px; }
  .stamp-t { font-size: 1.3rem; }
  .band-form { grid-template-columns: 1fr; }
  .band .btn { width: 100%; }
}

/* למה לבחור בנו */
.whyus-head { max-width: 920px; margin-inline: auto; text-align: center; }
.ribbon {
  display: inline-block; margin-top: 22px; padding: 10px 22px 12px;
  background: var(--blue); color: #fff; font-size: 1.2rem; font-weight: 500; line-height: 1.35;
  transform: rotate(-2.5deg); box-shadow: 0 16px 30px -18px rgba(23, 60, 176, .8);
  transition: transform .8s var(--ease-out) .3s, opacity .5s ease .3s;
}
.ribbon b { font-weight: 700; }
.js .whyus-head:not(.in) .ribbon { opacity: 0; transform: rotate(4deg) scale(.9); }
.whyus-lead { margin-top: 32px; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1; color: var(--blue); text-wrap: balance; }
.whyus-p { max-width: 40em; margin: 14px auto 0; font-size: 1.15rem; color: var(--muted); }
.why-tiles { list-style: none; margin: 52px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.why-tiles li {
  padding: 30px 16px 26px; border-radius: 20px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.why-tiles li:nth-child(even) { background: var(--sky); box-shadow: none; }
.why-tiles li:nth-child(2) { --d: .12s; }
.why-tiles li:nth-child(3) { --d: .24s; }
.why-tiles li:nth-child(4) { --d: .36s; }
.why-tiles li:nth-child(5) { --d: .48s; }
.t-art { display: grid; place-items: center; width: 96px; height: 96px; margin: 0 auto; border-radius: 50%; background: var(--sky); transition: transform .45s var(--ease-out); }
.why-tiles li:nth-child(even) .t-art { background: #fff; }
.t-art .art { width: 54px; height: 54px; }
.why-tiles h3 { margin-top: 18px; font-size: 1.08rem; }
.why-tiles p { margin-top: 4px; font-size: .92rem; line-height: 1.45; color: var(--muted); }
@media (hover: hover) and (pointer: fine) {
  .why-tiles li:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -30px rgba(7, 18, 48, .4); }
  .why-tiles li:hover .t-art { transform: scale(1.06) rotate(-5deg); }
}
@media (max-width: 980px) {
  .why-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-tiles li:last-child { grid-column: 1 / -1; }
}

/* שכר טרחה */
.fee { overflow: hidden; padding-block: clamp(72px, 9vw, 120px); background: var(--blue); color: #fff; }
.fee-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.fee h2 { margin-top: 12px; font-size: clamp(2.9rem, 6vw, 4.8rem); }
.fee-text > p { margin-top: 18px; max-width: 32em; font-size: 1.2rem; color: #E1E9FF; }
.fee .btn { margin-top: 30px; }
.zeros { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.zeros li { display: flex; align-items: center; gap: 22px; padding: 14px 24px; border-radius: 16px; background: rgba(7, 18, 48, .22); }
.zero { display: inline-flex; align-items: baseline; gap: .12em; min-width: 2.1em; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 7vw, 5.4rem); line-height: 1; }
.roll { display: inline-block; height: 1.05em; overflow: hidden; }
.roll-col { display: flex; flex-direction: column; transform: translateY(-80%); transition: transform 1.4s var(--ease-out); }
.roll-col span { display: block; height: 1.05em; line-height: 1.05; }
.js .zeros:not(.in) .roll-col { transform: none; }
.zeros li:nth-child(2) .roll-col { transition-delay: .15s; }
.zeros li:nth-child(3) .roll-col { transition-delay: .3s; }
.zero .cur { font-family: var(--font-body); font-size: .42em; font-weight: 600; }
.zeros li > span { font-size: 1.25rem; font-weight: 500; }
@media (max-width: 900px) { .fee-grid { grid-template-columns: 1fr; } }

/* שאלות ותשובות */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; list-style: none; cursor: pointer;
  font-size: 1.16rem; font-weight: 600; line-height: 1.4; transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
@media (hover: hover) and (pointer: fine) { .faq summary:hover { color: var(--blue); } }
.pm { display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--sky); color: var(--blue); transition: transform .35s var(--ease-out), background-color .25s ease, color .25s ease; }
.pm .ic { width: 20px; height: 20px; stroke-width: 2.2; }
.faq details[open] .pm { transform: rotate(45deg); background: var(--blue); color: #fff; }
.ans { max-width: 44em; padding: 0 4px 24px; color: var(--muted); }
.faq details::details-content { block-size: 0; overflow: hidden; transition: block-size .4s var(--ease-out), content-visibility .4s allow-discrete; }
.faq details[open]::details-content { block-size: auto; }

/* קריאה לפעולה אחרונה */
.final { overflow: hidden; padding-block: clamp(72px, 9vw, 120px); background: linear-gradient(180deg, var(--ink) 0%, #0A1838 100%); color: #fff; }
.final-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.final h2 { font-size: clamp(2.9rem, 6vw, 4.8rem); }
.final-text > p { margin-top: 18px; font-size: 1.2rem; color: #C4D0EC; }
.final-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.final-points li { display: flex; align-items: center; gap: 12px; font-size: 1.12rem; font-weight: 500; }
.final-points .ic { color: var(--blue-soft); }
@media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; } }

/* ---------- פוטר ---------- */
.site-footer { padding-block: 56px 40px; background: var(--ink-deep); color: #A9B6D6; font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.site-footer .brand { color: #fff; }
.foot-about { margin-top: 18px; max-width: 36em; }
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.foot-links a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .28); transition: border-color .2s ease; }
@media (hover: hover) and (pointer: fine) { .foot-links a:hover { border-color: #fff; } }
.foot-legal {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .86rem; color: #8492B5;
}
.foot-legal a { color: #fff; }
.foot-legal-solo { margin-top: 0; padding-top: 0; border-top: 0; }
@media (max-width: 900px) { .site-footer { padding-bottom: 110px; } }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } .foot-links { justify-content: flex-start; } }

/* ---------- כפתור דביק בנייד ---------- */
.sticky-cta {
  position: fixed; z-index: 45; inset-inline: 0; bottom: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -18px rgba(7, 18, 48, .45);
  transform: translateY(110%); transition: transform .4s var(--ease-out);
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn { min-height: 54px; }
@media (min-width: 901px) { .sticky-cta { display: none; } }

/* ---------- כפתור וואטסאפ ---------- */
.wa-btn {
  position: fixed; z-index: 46; right: 24px; bottom: 24px;
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  box-shadow: 0 14px 28px -12px rgba(7, 18, 48, .5);
  transition: transform .16s var(--ease-out), box-shadow .2s ease;
  animation: pop .5s 1.2s var(--ease-out) both;
}
.wa-btn svg { width: 32px; height: 32px; }
.wa-btn:active { transform: scale(.94); }
.wa-btn:focus-visible { outline-color: var(--ink); }
@media (hover: hover) and (pointer: fine) {
  .wa-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -14px rgba(7, 18, 48, .55); }
}
/* בנייד: בצד שמאל, מעל הכפתור הדביק, כדי לא להסתיר את תחילת השורות בטופס */
@media (max-width: 900px) {
  .wa-btn { right: auto; left: 14px; bottom: calc(84px + env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .wa-btn svg { width: 29px; height: 29px; }
}

/* ---------- חשיפה בגלילה ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.bento .reveal:nth-child(2), .why-list .reveal:nth-child(2) { transition-delay: .08s; }
.bento .reveal:nth-child(3), .why-list .reveal:nth-child(3) { transition-delay: .16s; }
.why-list .reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- עמוד תודה ו-404 ---------- */
.thanks { overflow: hidden; min-height: calc(100dvh - var(--header-h)); padding-block: clamp(56px, 9vw, 110px); background: linear-gradient(180deg, var(--ink) 0%, #0A1838 100%); color: #fff; }
.thanks-in { max-width: 720px; margin-inline: auto; text-align: center; }
.thanks-check {
  display: grid; place-items: center; width: 96px; height: 96px; margin: 0 auto;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 12px rgba(31, 79, 224, .28), 0 0 0 26px rgba(31, 79, 224, .12);
  animation: pop .6s var(--ease-out) both;
}
.thanks-check svg { width: 52px; height: 52px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.thanks-check path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw .5s .35s ease-out forwards; }
.thanks h1 { margin-top: 40px; font-size: clamp(3rem, 8vw, 5.2rem); }
.thanks .lede { margin-inline: auto; }
.prep { margin-top: 40px; padding: 28px; border-radius: 20px; background: #fff; color: var(--ink); text-align: right; animation: fadeUp .7s .45s var(--ease-out) both; }
.prep h2 { font-family: var(--font-body); font-weight: 600; font-size: 1.3rem; line-height: 1.4; }
.prep ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 12px; }
.prep li { display: flex; gap: 12px; }
.prep .ic { margin-top: .18em; color: var(--blue); }
.thanks .btn { margin-top: 32px; }
.nf-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(8rem, 26vw, 15rem); line-height: .8; color: var(--blue-soft); }

/* ---------- עמודים משפטיים ---------- */
.doc-hero { overflow: hidden; padding-block: 56px 48px; background: var(--ink); color: #fff; }
.doc-hero h1 { font-size: clamp(3rem, 7vw, 4.6rem); }
.doc-hero p { margin-top: 10px; color: #C4D0EC; }
.doc { padding-block: 48px 96px; }
.doc-body { max-width: 780px; }
.doc-body h2 { margin-top: 44px; font-size: 2.3rem; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body p, .doc-body li { color: #2A3858; }
.doc-body p { margin-top: 12px; }
.doc-body ul { margin: 12px 0 0; padding-inline-start: 1.3em; }
.doc-body li + li { margin-top: 6px; }
.doc-body a { color: var(--blue); }

/* ---------- תפריט נגישות ---------- */
.a11y-btn {
  position: fixed; z-index: 50; left: 18px; bottom: 18px;
  display: grid; place-items: center; width: 52px; height: 52px;
  border: 2px solid #fff; border-radius: 50%; background: var(--ink); color: #fff; cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(7, 18, 48, .6);
  transition: transform .16s var(--ease-out);
}
.a11y-btn:active { transform: scale(.94); }
.a11y-btn .ic { width: 28px; height: 28px; }
.a11y-panel {
  position: fixed; z-index: 50; left: 18px; bottom: 82px;
  width: min(310px, calc(100vw - 36px)); padding: 18px;
  border: 1px solid var(--line); border-radius: 16px; background: #fff; color: var(--ink);
  box-shadow: var(--shadow); transform-origin: left bottom; animation: panelIn .2s var(--ease-out);
}
@keyframes panelIn { from { opacity: 0; transform: scale(.96); } }
.a11y-panel h2 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.a11y-opts { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-opts button, .a11y-reset {
  padding: 11px 8px; border: 2px solid var(--line); border-radius: 10px;
  background: var(--paper); color: var(--ink); font-size: .95rem; font-weight: 500; line-height: 1.3; cursor: pointer;
}
.a11y-opts button[aria-pressed="true"] { border-color: var(--blue); background: var(--sky); color: var(--blue); }
.a11y-foot { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .95rem; }
.a11y-foot a { color: var(--blue); }
/* בנייד: לשונית צרה בקצה המסך, כדי שלא תסתיר שדות בטופס */
@media (max-width: 900px) {
  .a11y-btn { left: 0; bottom: 30vh; width: 36px; height: 44px; border-width: 2px 2px 2px 0; border-radius: 0 12px 12px 0; }
  .a11y-btn .ic { width: 22px; height: 22px; }
  .a11y-panel { left: 12px; bottom: calc(30vh + 54px); transform-origin: left bottom; }
}

html.a11y-readable { --font-display: "IBM Plex Sans Hebrew", Arial, sans-serif; }
html.a11y-readable h1, html.a11y-readable h2 { line-height: 1.15; }
html.a11y-readable body { letter-spacing: .01em; word-spacing: .06em; }
html.a11y-links a { text-decoration: underline !important; text-decoration-thickness: 2px !important; text-underline-offset: 3px; }
html.a11y-contrast { --muted: #111; --line: #111; --blue: #0030B8; --blue-soft: #fff; --ink: #000; --ink-deep: #000; }
html.a11y-contrast .hero, html.a11y-contrast .final, html.a11y-contrast .thanks { background: #000; }
html.a11y-contrast .lede, html.a11y-contrast .final-text > p, html.a11y-contrast .hero-badges .t,
html.a11y-contrast .fee-text > p, html.a11y-contrast .site-footer, html.a11y-contrast .foot-legal,
html.a11y-contrast .doc-hero p, html.a11y-contrast .src-card.dark p, html.a11y-contrast .tile[aria-pressed="true"] small { color: #fff; }
html.a11y-contrast .grain::before { display: none; }

/* עצירת אנימציות: מדלגים ישר למצב הסופי */
html.a11y-noanim *, html.a11y-noanim *::before, html.a11y-noanim *::after {
  animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important;
  transition-duration: .01ms !important; transition-delay: 0s !important;
}
html.a11y-noanim { scroll-behavior: auto; }
html.a11y-noanim .ticker-track { animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; transition-delay: 0s !important;
  }
  .ticker-track { animation: none !important; }
}
