/* עיצוב משותף לדפי היכולות — נגזר מהטוקנים של דף הבית */
:root {
  --bg: #ffffff; --bg-alt: #f5f5f7;
  --ink: #1d1d1f; --ink-2: #6e6e73; --ink-3: #86868b;
  --link: #0066cc; --cta: #f5a300; --cta-hi: #ffb61e; --cta-ink: #1d1305;
  --dark: #000; --dark-ink: #f5f5f7; --ok: #1db954;
  --ease: cubic-bezier(0.66, 0, 0.1, 1); --radius: 22px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Heebo', -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px; line-height: 1.47; letter-spacing: -0.022em;
}
a { color: inherit; text-decoration: none; }
a.textlink { color: var(--link); }
a.textlink:hover { text-decoration: underline; }
img { max-width: 100%; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 max(4vw, 22px); }
h1, h2, h3 { font-weight: 600; }
.h-hero { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.08; letter-spacing: -0.013em; }
.sub { color: var(--ink-2); font-size: clamp(1.02rem, 1.6vw, 1.2rem); font-weight: 400; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; border: none; cursor: pointer; font: inherit; font-weight: 600;
  padding: 13px 28px; font-size: 1.02rem; transition: transform .2s var(--ease), background .2s;
}
.btn-cta { background: var(--cta); color: var(--cta-ink); box-shadow: 0 6px 22px -8px rgba(245,163,0,.55); }
.btn-cta:hover { background: var(--cta-hi); transform: translateY(-1px); }
.btn-quiet { background: rgba(0,0,0,.05); color: var(--ink); }
.btn-quiet:hover { background: rgba(0,0,0,.09); }
.btn-sm { padding: 8px 18px; font-size: .92rem; }

nav.global {
  position: fixed; inset-inline: 0; top: 0; z-index: 100; height: 48px;
  display: flex; align-items: center; gap: 22px; padding: 0 max(4vw, 22px);
  background: rgba(255,255,255,.72); backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,.08); font-size: .92rem;
}
nav.global img { height: 24px; display: block; }
nav.global .sp { flex: 1; }
nav.global .back { color: var(--ink-2); }
nav.global .back:hover { color: var(--ink); }

/* ===== פריסה: סייד-בר יכולות קבוע (דסקטופ) + תוכן ===== */
.layout { display: grid; grid-template-columns: 230px 1fr; gap: 48px; padding-top: 110px; }
.sidenav { position: sticky; top: 90px; align-self: start; }
.sidenav .t { font-size: .78rem; font-weight: 600; color: var(--ink-3); margin-bottom: 8px; }
.sidenav a {
  display: block; padding: 10px 14px; border-radius: 12px;
  font-weight: 600; font-size: .95rem; color: var(--ink-2); margin-bottom: 2px;
}
.sidenav a:hover { background: var(--bg-alt); color: var(--ink); }
.sidenav a.active { background: var(--bg-alt); color: var(--ink); box-shadow: inset 3px 0 0 var(--cta); }
.sidenav .cta-box { margin-top: 22px; padding: 16px; background: var(--bg-alt); border-radius: 16px; display: grid; gap: 8px; }
.sidenav .cta-box .btn { width: 100%; font-size: .9rem; padding: 10px 14px; }

/* ===== גוף הדף ===== */
.hero-f { padding-bottom: 34px; }
.hero-f .eyebrow { color: var(--cta); font-weight: 600; margin-bottom: 8px; }
.hero-f .sub { max-width: 560px; margin: 14px 0 24px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.micro { color: var(--ink-3); font-size: .85rem; margin-top: 10px; }

.showcase {
  background: var(--bg-alt); border-radius: var(--radius); padding: 30px;
  margin: 12px 0 44px;
}
.benefits { display: grid; gap: 14px; margin-bottom: 48px; }
.benefit { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 18px; padding: 24px 26px; }
.benefit h3 { font-size: 1.12rem; margin-bottom: 6px; }
.benefit p { color: var(--ink-2); font-size: .95rem; }
.benefit ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.benefit li { padding-inline-start: 24px; position: relative; font-size: .92rem; color: var(--ink-2); }
.benefit li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--cta); font-weight: 600; }

.steps { counter-reset: st; display: grid; gap: 12px; margin-bottom: 48px; }
.step { display: flex; gap: 16px; align-items: baseline; }
.step::before {
  counter-increment: st; content: counter(st);
  min-width: 30px; height: 30px; border-radius: 50%; background: var(--cta); color: var(--cta-ink);
  font-weight: 600; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem;
}
.step b { display: block; }
.step span { color: var(--ink-2); font-size: .93rem; }
h2.sec { font-size: 1.5rem; margin-bottom: 18px; }

.final-f { background: var(--bg-alt); border-radius: var(--radius); text-align: center; padding: 44px 26px; margin-bottom: 60px; }
.final-f h2 { font-size: 1.6rem; margin-bottom: 8px; }
.final-f .sub { margin-bottom: 22px; }
.final-f .cta-row { justify-content: center; }

footer { border-top: 1px solid rgba(0,0,0,.08); padding: 28px max(4vw,22px); display: flex; gap: 20px; color: var(--ink-3); font-size: .85rem; background: var(--bg-alt); flex-wrap: wrap; }
footer .sp { flex: 1; }

/* ארטים קטנים (מהבית) */
.wa-mini { background: #e7f8ee; border-radius: 12px; padding: 11px 13px; font-size: .84rem; box-shadow: 0 6px 18px -10px rgba(0,0,0,.15); max-width: 340px; }
.wa-mini b { display: block; font-size: .72rem; color: #128c7e; margin-bottom: 2px; }
.plate { background: #f7c948; border: 1.5px solid #111; color: #111; font-weight: 600; border-radius: 6px; padding: 1px 9px; direction: ltr; font-size: .82rem; }
.vcard { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 14px; box-shadow: 0 10px 30px -14px rgba(0,0,0,.12); padding: 16px; font-size: .86rem; max-width: 380px; }
.vcard .top { display: flex; gap: 10px; align-items: center; border-bottom: 1px dashed rgba(0,0,0,.08); padding-bottom: 9px; margin-bottom: 8px; }
.vcard .vline { display: flex; gap: 7px; padding: 4px 0; color: var(--ink-2); }
.vcard .vline b { color: var(--ink); }
.cal-mini { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 14px; padding: 12px 14px; font-size: .86rem; max-width: 380px; box-shadow: 0 10px 30px -14px rgba(0,0,0,.12); }
.cal-mini .slot { display: flex; justify-content: space-between; padding: 6px 4px; color: var(--ink-2); border-bottom: 1px solid rgba(0,0,0,.04); }
.cal-mini .slot.book { color: var(--ink); font-weight: 600; background: #fff7e6; border-radius: 8px; padding-inline: 8px; }
.cal-mini .slot.ok { color: #15803d; font-weight: 600; }
.wave { display: flex; gap: 3px; align-items: center; height: 44px; }
.wave i { width: 4px; height: 14px; border-radius: 3px; background: var(--cta); animation: wv 1.1s ease-in-out infinite; }
.wave i:nth-child(2n) { animation-delay: .15s; } .wave i:nth-child(3n) { animation-delay: .3s; }
@keyframes wv { 0%,100% { height: 8px; } 50% { height: 36px; } }

@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; gap: 20px; padding-top: 86px; }
  /* במובייל הסייד-בר הופך לפס צ'יפים אופקי — הדפוס המקובל */
  .sidenav { position: static; display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .sidenav .t, .sidenav .cta-box { display: none; }
  .sidenav a { white-space: nowrap; background: var(--bg-alt); border-radius: 999px; padding: 8px 16px; font-size: .88rem; }
  .sidenav a.active { box-shadow: none; background: var(--cta); color: var(--cta-ink); }
}
@media (prefers-reduced-motion: reduce) { .wave i { animation: none; } html { scroll-behavior: auto; } }
