/* =========================================================
   PUNCH, אבטיפוס. שפה נקייה בהשראת Google Workspace.
   mobile-first, RTL. ללא גרדיאנטים. אדום = פעולה בלבד.
   ========================================================= */

/* ---------- Fonts: Google Sans (OFL), self-hosted, variable wght ---------- */
@font-face {
  font-family: 'Google Sans'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(/assets/fonts/google-sans-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: 'Google Sans'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(/assets/fonts/google-sans-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;
}

/* ---------- Tokens ---------- */
:root {
  /* מותג */
  --c-burgundy: #3c4043;         /* היה בורדו. עכשיו אפור כהה להדגשות ומילויים */
  --c-burgundy-hover: #202124;
  --c-burgundy-tint: #f1f3f4;
  --c-red: #F92424;             /* מילוי אייקונים צבעוניים */
  --c-red-ink: #D0141A;         /* כפתור פעולה ראשי. ניגודיות AA מול לבן */
  --c-red-ink-hover: #AE0F14;
  --c-accent: var(--c-burgundy);

  /* אפורים (ניטרליים קרים) */
  --g-900: #202124;   /* כותרות */
  --g-800: #3c4043;   /* טקסט גוף */
  --g-600: #5f6368;   /* טקסט משני */
  --g-500: #80868b;   /* מסגרות שדות (ניגודיות 3:1) */
  --g-300: #dadce0;   /* קווים */
  --g-200: #e8eaed;
  --g-100: #f1f3f4;
  --g-50:  #f8f9fa;   /* משטחים */

  --c-error: #b3261e;
  --c-success: #146c2e;

  --font: 'Google Sans', 'Arial Hebrew', Arial, system-ui, sans-serif;
  --fs-h1: clamp(2.25rem, 1.35rem + 3.8vw, 3.9rem);
  --fs-h2: clamp(1.75rem, 1.25rem + 2vw, 2.85rem);
  --fs-h3: 1.25rem;

  --container: 1240px;
  --gutter: 16px;
  --rail-pad: max(var(--gutter), calc((100vw - var(--container)) / 2));
  --r-sm: 10px;
  --r: 20px;
  --r-lg: 28px;
  --space: clamp(64px, 3rem + 4.5vw, 128px);
  --header-h: 64px;
  --mobile-bar-h: 72px;
  --shadow-1: 0 1px 2px rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
  --shadow-2: 0 1px 3px rgba(60, 64, 67, .3), 0 4px 8px 3px rgba(60, 64, 67, .15);
  --ease: cubic-bezier(.2, 0, 0, 1);
}
@media (min-width: 768px) { :root { --gutter: 32px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; font-family: var(--font); font-weight: 450; font-size: 1rem; line-height: 1.6; color: var(--g-800); background: #fff; -webkit-font-smoothing: antialiased; padding-bottom: var(--mobile-bar-h); }
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-burgundy); text-underline-offset: 4px; }
a:hover { color: var(--c-burgundy-hover); }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 600; line-height: 1.2; letter-spacing: -.015em; color: var(--g-900); }
h1 { font-size: var(--fs-h1); line-height: 1.12; letter-spacing: -.025em; }
h2 { font-size: var(--fs-h2); line-height: 1.15; letter-spacing: -.02em; }
h3, .h3 { font-size: var(--fs-h3); line-height: 1.35; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
[role="list"] { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--c-burgundy); outline-offset: 3px; border-radius: 6px; }
main:focus { outline: none; }
.icon { width: 1.3em; height: 1.3em; flex: none; }
.icon-duo { color: var(--c-burgundy); }
.icon-duo [opacity] { fill: var(--c-red); opacity: .32; }
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
.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; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2 * var(--gutter), 780px); margin-inline: auto; }
.skip-link { position: absolute; inset-inline-start: 12px; top: -60px; z-index: 100; background: var(--g-900); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); }
.skip-link:focus { top: 12px; color: #fff; }
.preview-bar { background: var(--g-900); color: #fff; font-size: .8125rem; text-align: center; padding: 6px 12px; line-height: 1.4; }

/* ---------- Sections & headings ---------- */
.section { padding-block: var(--space); }
.section-tight { padding-block: clamp(36px, 2rem + 2vw, 64px); }
.section-soft { background: var(--g-50); }
.section-head { max-width: 780px; margin: 0 auto clamp(32px, 1.5rem + 2vw, 56px); text-align: center; }
.section-head h2 { margin-bottom: .35em; }
.lead { font-size: clamp(1.06rem, 1rem + .3vw, 1.2rem); color: var(--g-600); line-height: 1.6; margin-bottom: 0; }
.section-head-row { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: clamp(32px, 1.5rem + 2vw, 56px); }
.section-head-row .section-head { margin-bottom: 0; }
.split-head .section-head, .about-copy .section-head, .areas .section-head, .case-head .section-head, .scope .section-head { text-align: start; margin-inline: 0; }
.small-muted { font-size: .9rem; color: var(--g-600); margin: 12px 0 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background-color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s, color .2s; }
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--c-red-ink); color: #fff; }
.btn-primary:hover { background: var(--c-red-ink-hover); color: #fff; box-shadow: var(--shadow-1); }
.btn-outline { background: #fff; border-color: var(--g-300); color: var(--c-burgundy); }
.btn-outline:hover { background: var(--c-burgundy-tint); border-color: var(--g-300); color: var(--c-burgundy); }
.btn-lg { min-height: 52px; padding-inline: 28px; font-size: 1.0625rem; }
.btn-sm { min-height: 40px; padding-inline: 18px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .7; cursor: progress; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; }

/* ---------- Header (רוחב מלא) ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 1px 2px rgba(60, 64, 67, .3), 0 2px 6px 2px rgba(60, 64, 67, .12); }
.header-inner { display: flex; align-items: center; gap: 8px; min-height: var(--header-h); padding-inline: var(--gutter); }
@media (min-width: 1100px) { .header-inner { padding-inline: 24px; } }
.brand { display: inline-flex; flex: none; padding: 6px 0; margin-inline-end: 12px; }
.brand img { width: 112px; height: auto; }
@media (min-width: 768px) { .brand img { width: 128px; } }
.header-actions { display: flex; align-items: center; gap: 8px; margin-inline-start: auto; }
.hdr-link { display: none; color: var(--c-burgundy); text-decoration: none; font-weight: 600; font-size: .95rem; padding: 8px 12px; border-radius: 999px; }
.hdr-link:hover, .hdr-link[aria-current] { background: var(--c-burgundy-tint); color: var(--c-burgundy); }
.hdr-lead { display: none; }
.btn-call { min-height: 40px; padding-inline: 18px; font-size: .95rem; }
.btn-call .call-label { display: none; }
@media (min-width: 480px) { .btn-call .call-label { display: inline; } }
@media (min-width: 1100px) { .hdr-link, .hdr-lead { display: inline-flex; } .hdr-lead { min-height: 40px; padding-inline: 18px; font-size: .95rem; } }
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 0; background: none; cursor: pointer; color: var(--g-800); }
.menu-toggle:hover { background: var(--g-100); }
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-toggle .i-close { display: none; }
.menu-toggle[aria-expanded="true"] .i-open { display: none; }
.menu-toggle[aria-expanded="true"] .i-close { display: block; }

/* ניווט: מובייל */
.main-nav { display: none; }
.js .main-nav.is-open { display: block; position: fixed; inset: var(--nav-top, 64px) 0 0 0; background: #fff; overflow-y: auto; padding: 8px var(--gutter) calc(var(--mobile-bar-h) + 24px); border-top: 1px solid var(--g-200); z-index: 60; }
.no-js .main-nav { display: block; width: 100%; order: 3; padding-bottom: 12px; }
.no-js .header-inner { flex-wrap: wrap; }
.no-js .menu-toggle { display: none; }
.nav-list { list-style: none; }
.nav-list > li { border-bottom: 1px solid var(--g-200); }
.nav-link { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 4px; font-size: 1.125rem; font-weight: 600; color: var(--g-900); text-decoration: none; background: none; border: 0; cursor: pointer; text-align: start; }
.nav-link[aria-current], .nav-link[data-current] { color: var(--c-burgundy); }
.mega-toggle .icon { transition: transform .2s var(--ease); color: var(--g-600); }
.mega-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav-mobile-extra { margin-top: 20px; }

/* מגה־מנו (מובייל: בתוך הרשימה) */
.mega[hidden] { display: none; }
.no-js .mega { display: block; }
.mega-inner { padding: 4px 0 16px; }
.mega-head, .mega-close, .mega-side { display: none; }
.mm-col + .mm-col { margin-top: 16px; }
.mm-title { font-size: .8rem; font-weight: 600; color: var(--g-600); margin: 0 0 6px; letter-spacing: .02em; }
.mm-item { display: flex; gap: 14px; align-items: flex-start; padding: 10px 8px; border-radius: 12px; text-decoration: none; color: inherit; }
a.mm-item:hover { background: var(--g-50); color: inherit; }
.mm-ic .icon { width: 28px; height: 28px; margin-top: 2px; }
.mm-txt { display: flex; flex-direction: column; }
.mm-txt strong { font-weight: 600; color: var(--g-900); font-size: 1rem; }
.mm-txt span { font-size: .88rem; color: var(--g-600); line-height: 1.45; }
.mm-item.is-soon strong { color: var(--g-600); }
body.nav-open { overflow: hidden; }

/* ניווט: דסקטופ */
@media (min-width: 1100px) {
  .menu-toggle, .nav-mobile-extra { display: none; }
  .main-nav, .js .main-nav.is-open { display: block; position: static; padding: 0; border: 0; overflow: visible; background: none; }
  .no-js .main-nav { width: auto; order: 0; padding: 0; }
  .nav-list { display: flex; align-items: center; gap: 4px; }
  .nav-list > li { border: 0; }
  .nav-link { width: auto; padding: 8px 14px; font-size: .95rem; font-weight: 500; color: var(--g-800); border-radius: 999px; gap: 4px; min-height: 40px; }
  .nav-link:hover { background: var(--g-100); color: var(--g-900); }
  .nav-link[aria-current], .nav-link[data-current], .mega-toggle[aria-expanded="true"] { color: var(--c-burgundy); font-weight: 600; }
  .mega-toggle .icon { width: 16px; height: 16px; }
  .has-mega { position: static; }
  .mega { position: absolute; inset-inline: 0; top: 100%; background: #fff; border-top: 1px solid var(--g-200); box-shadow: 0 8px 16px -4px rgba(60, 64, 67, .2); }
  .mega-inner { display: grid; grid-template-columns: 1fr 360px 88px; min-height: 320px; padding: 0; }
  .mega-main { padding: 40px 48px 48px; }
  .mega-head { display: block; font-size: 1.5rem; color: var(--g-900); padding-bottom: 20px; margin: 0 0 24px; border-bottom: 1px solid var(--g-300); }
  .mega-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .mm-col + .mm-col { margin-top: 0; }
  .mega-side { display: block; background: var(--g-50); padding: 40px 32px; }
  .mega-side ul { list-style: none; display: grid; gap: 4px; }
  .mega-side a { display: block; padding: 10px 12px; color: var(--g-900); text-decoration: none; font-size: 1.05rem; border-radius: 10px; }
  .mega-side a:hover { background: var(--g-100); }
  .mega-close { display: inline-flex; align-self: start; justify-self: center; margin-top: 24px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 0; background: none; border-radius: 50%; cursor: pointer; color: var(--g-600); }
  .mega-close:hover { background: var(--g-100); color: var(--g-900); }
}

/* ---------- Mobile CTA bar ---------- */
.mobile-cta { position: fixed; inset-inline: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1.2fr 1fr; gap: 8px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--g-200); box-shadow: 0 -1px 3px rgba(60, 64, 67, .12); }
.mobile-cta .btn { min-height: 48px; padding-inline: 12px; }
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ---------- Hero (בית) ---------- */
.hero { background: #fff; padding-top: clamp(40px, 2rem + 4vw, 96px); }
.hero-copy { text-align: center; max-width: 900px; }
.hero-icons { display: flex; justify-content: center; gap: clamp(12px, 1vw + 8px, 22px); margin: 0 0 28px; }
.hero-icons .icon { width: clamp(30px, 1.5rem + 1vw, 42px); height: clamp(30px, 1.5rem + 1vw, 42px); }
.hero h1 { margin-bottom: .3em; }
.hero h1 .accent { color: var(--c-burgundy); white-space: nowrap; }
.hero-tagline { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.7rem); color: var(--g-900); margin-bottom: .6em; }
.hero-lead { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); color: var(--g-600); max-width: 720px; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.hero-media { margin-top: clamp(40px, 2rem + 3vw, 72px); }
.hero-frame { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--g-100); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .hero-frame { aspect-ratio: 21 / 9; } }

/* ---------- לקוחות ---------- */
.clients-section { padding-block: clamp(40px, 2rem + 2vw, 72px); }
.clients { display: grid; gap: 20px; text-align: center; }
.clients-title { font-size: 1rem; font-weight: 500; color: var(--g-600); margin: 0; }
.clients-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px; align-items: center; }
.client-item { display: flex; align-items: center; justify-content: center; min-height: 72px; }
.client-item img { max-height: 56px; width: auto; filter: grayscale(1); opacity: .7; mix-blend-mode: multiply; transition: opacity .2s, filter .2s; }
.client-item:hover img { filter: none; opacity: 1; }
@media (min-width: 768px) { .clients-list { grid-template-columns: repeat(5, 1fr); } }

/* ---------- מסילת מוצרים ---------- */
.products { overflow: hidden; }
.rail { position: relative; }
.rail-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--rail-pad); padding: 4px var(--rail-pad) 24px; scrollbar-width: none; overscroll-behavior-x: contain; }
.rail-track::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 clamp(280px, 82vw, 480px); scroll-snap-align: start; }
@media (min-width: 768px) { .product-card { flex-basis: clamp(320px, 40vw, 480px); } }
.pc-inner { display: flex; flex-direction: column; height: 100%; padding: 8px; border: 1px solid var(--g-300); border-radius: var(--r-lg); background: #fff; color: inherit; text-decoration: none; transition: background-color .3s var(--ease), border-color .3s var(--ease); }
.pc-media { border-radius: calc(var(--r-lg) - 6px); overflow: hidden; aspect-ratio: 4 / 3; background: var(--g-100); border: 4px solid transparent; transition: border-color .3s var(--ease); }
.pc-media img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r-lg) - 10px); }
.pc-body { padding: 20px 16px 24px; }
.pc-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border: 1px solid var(--g-300); border-radius: 999px; background: #fff; font-size: .85rem; color: var(--g-800); }
.pc-tag .icon { width: 18px; height: 18px; }
.pc-body h3 { font-size: clamp(1.35rem, 1.15rem + .7vw, 1.75rem); margin: 18px 0 8px; transition: color .3s; }
.pc-body p { color: var(--g-600); margin: 0; transition: color .3s; }
.pc-inner:hover, .pc-inner:focus-visible { background: var(--c-burgundy); border-color: var(--c-burgundy); outline: none; color: inherit; }
.pc-inner:hover .pc-media, .pc-inner:focus-visible .pc-media { border-color: #fff; }
.pc-inner:hover h3, .pc-inner:focus-visible h3 { color: #fff; }
.pc-inner:hover p, .pc-inner:focus-visible p { color: rgba(255, 255, 255, .82); }
.pc-inner:hover .pc-tag, .pc-inner:focus-visible .pc-tag { border-color: #fff; }
.rail-btn { display: none; }
@media (min-width: 768px) {
  .rail-btn { display: inline-flex; position: absolute; top: 30%; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 50%; border: 0; background: #fff; box-shadow: var(--shadow-2); cursor: pointer; color: var(--g-900); z-index: 2; transition: opacity .2s; }
  .rail-btn .icon { width: 22px; height: 22px; }
  .rail-btn:hover { background: var(--g-50); }
  .rail-btn[disabled] { opacity: 0; pointer-events: none; }
  .rail-prev { inset-inline-start: max(8px, calc(var(--rail-pad) - 28px)); }
  .rail-next { inset-inline-end: max(8px, calc(var(--rail-pad) - 28px)); }
}

/* ---------- טכנולוגיות ---------- */
.tech-section { border-top: 1px solid var(--g-200); }
.tech-strip { display: grid; gap: 20px; text-align: center; }
.tech-title { font-size: 1rem; font-weight: 500; color: var(--g-600); margin: 0; }
.tech-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tech-item { display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 8px 20px; border: 1px solid var(--g-300); border-radius: 999px; background: #fff; color: var(--g-900); font-size: .98rem; }
.tech-item img { width: 22px; height: 22px; }
.tech-note { font-size: .8rem; color: var(--g-600); margin: 0; }

/* ---------- כרטיסי שירות (עמודים פנימיים) ---------- */
.services-grid { list-style: none; display: grid; gap: 40px 32px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card > a, .svc-card:not(.is-link) { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.svc-card h3 { margin: 20px 0 8px; }
.svc-card p { color: var(--g-600); margin: 0; }
.svc-card.is-link a:hover h3 { text-decoration: underline; text-underline-offset: 4px; }
.svc-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--c-burgundy); color: #fff; }
.svc-icon .icon { width: 24px; height: 24px; }
.svc-icon .icon-duo { color: #fff; }
.svc-icon .icon-duo [opacity] { fill: #fff; opacity: .25; }

/* ---------- Split / feature list ---------- */
.split { display: grid; gap: 32px; }
@media (min-width: 1024px) { .split { grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; } .split-head { position: sticky; top: calc(var(--header-h) + 32px); } }
.feature-list { list-style: none; display: grid; }
.feature-list li { display: grid; grid-template-columns: 52px 1fr; gap: 12px; padding: 28px 0; border-top: 1px solid var(--g-300); }
.feature-list li:last-child { border-bottom: 1px solid var(--g-300); }
.feature-list .num { font-size: .95rem; font-weight: 600; color: var(--c-burgundy); padding-top: 3px; }
.feature-list h3 { margin-bottom: 6px; }
.feature-list p { margin: 0; color: var(--g-600); }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; gap: 40px 32px; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { position: relative; }
.steps .step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--c-burgundy); color: #fff; font-weight: 600; margin-bottom: 20px; }
.steps p { margin: 0; color: var(--g-600); }
.section-dark { background: var(--g-50); }

/* ---------- About ---------- */
.about { display: grid; gap: 32px; align-items: center; }
.about-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--g-600); }
@media (min-width: 1000px) { .about { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* ---------- Areas / chips ---------- */
.areas { display: grid; gap: 24px; align-items: center; }
@media (min-width: 1000px) { .areas { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.areas .section-head { margin-bottom: 0; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chip-static { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--g-300); color: var(--g-900); }
.chip-static.is-main { background: var(--c-burgundy); border-color: var(--c-burgundy); color: #fff; }
.chip-static .icon { width: 18px; height: 18px; }
.areas-section { border-top: 1px solid var(--g-200); }
.section-soft.areas-section { border-top: 0; }

/* ---------- TODO ---------- */
.todo-note { margin: 20px 0 0; padding: 12px 16px; border: 1px dashed var(--g-500); border-radius: 12px; font-size: .9rem; color: var(--g-600); background: #fff; }
.todo-inline { color: var(--g-600); border-bottom: 1px dashed var(--g-500); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; gap: 16px; }
@media (min-width: 768px) { .testimonials { grid-template-columns: 1fr 1fr; gap: 24px; } }
.testimonial { margin: 0; padding: 32px 28px 24px; background: #fff; border: 1px solid var(--g-300); border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 16px; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p { margin: 0; font-size: 1.05rem; line-height: 1.7; color: var(--g-800); }
.t-mark { font-size: 3.2rem; line-height: .6; height: 22px; color: var(--c-burgundy); font-weight: 700; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--g-200); }
.testimonial figcaption img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--g-200); flex: none; }
.testimonial figcaption strong { display: block; font-weight: 600; color: var(--g-900); }
.testimonial figcaption span span { display: block; font-size: .88rem; color: var(--g-600); }
.testimonial.is-featured { background: var(--c-burgundy); border-color: var(--c-burgundy); }
.testimonial.is-featured blockquote p { color: #fff; font-size: 1.12rem; }
.testimonial.is-featured .t-mark { color: rgba(255, 255, 255, .5); }
.testimonial.is-featured figcaption { border-color: rgba(255, 255, 255, .2); }
.testimonial.is-featured figcaption strong { color: #fff; }
.testimonial.is-featured figcaption span span { color: rgba(255, 255, 255, .75); }
@media (min-width: 1024px) {
  .testimonials:not(.testimonials-2) { grid-template-columns: 1.3fr 1fr 1fr; }
  .testimonials:not(.testimonials-2) .is-featured { grid-row: span 2; }
  .testimonials:not(.testimonials-2) .testimonial:last-child { grid-column: 2 / span 2; }
}

/* ---------- Posts ---------- */
.posts-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: flex; flex-direction: column; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--g-300); overflow: hidden; padding: 8px; transition: box-shadow .2s var(--ease); }
.post-card > a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.post-card.is-link:hover { box-shadow: var(--shadow-2); }
.post-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--g-100); border-radius: calc(var(--r-lg) - 6px); }
.post-media img { width: 100%; height: 100%; object-fit: cover; }
.post-body { display: flex; flex-direction: column; flex: 1; padding: 18px 14px 16px; }
.post-cat { font-size: .85rem; color: var(--g-600); margin-bottom: 8px; }
.post-cat a { color: inherit; text-decoration: none; }
.post-title { font-size: 1.2rem; margin-bottom: 8px; }
.post-card.is-link:hover .post-title { text-decoration: underline; text-underline-offset: 4px; }
.post-excerpt { color: var(--g-600); font-size: .98rem; margin: 0; }

/* ---------- FAQ (בסגנון גוגל) ---------- */
.faq-wrap { max-width: 1100px; }
.faq-tools { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.faq-all { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; color: var(--c-burgundy); font-weight: 600; cursor: pointer; padding: 8px 4px; }
.faq-all .icon { width: 18px; height: 18px; transition: transform .2s; }
.faq-all[aria-expanded="true"] .icon { transform: rotate(180deg); }
.faq { border-bottom: 1px solid var(--g-300); }
.faq-item { border-top: 1px solid var(--g-300); }
.faq-h { margin: 0; font-size: inherit; font-weight: 500; letter-spacing: 0; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; background: none; border: 0; text-align: start; font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); font-weight: 500; color: var(--g-900); cursor: pointer; }
.faq-q .icon { width: 24px; height: 24px; color: var(--c-burgundy); transition: transform .2s var(--ease); }
.faq-q[aria-expanded="true"] .icon { transform: rotate(180deg); }
.faq-a { padding: 0 0 28px; color: var(--g-600); }
.faq-a p { margin: 0; max-width: 72ch; }
.faq-a[hidden] { display: none; }

/* ---------- CTA (משטח אפור) ---------- */
.cta-section { padding-top: 0; }
.section-soft + .cta-section, .section-dark + .cta-section { padding-top: var(--space); }
.cta-band { display: grid; gap: 40px; padding: clamp(32px, 1rem + 4vw, 72px); border-radius: var(--r-lg); background: var(--g-50); }
.section-soft + .cta-section .cta-band, .section-dark + .cta-section .cta-band { background: #fff; border: 1px solid var(--g-200); }
.cta-ic .icon { width: 48px; height: 48px; margin-bottom: 20px; }
.cta-copy p { color: var(--g-600); font-size: 1.06rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 16px; }
.cta-hours { font-size: .95rem; color: var(--g-600); margin: 0; }
@media (min-width: 1000px) { .cta-band { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }
.cta-form .form { background: #fff; border-radius: var(--r); padding: clamp(20px, 1rem + 1.5vw, 32px); border: 1px solid var(--g-200); }

/* ---------- Forms ---------- */
.form-title { font-size: 1.3rem; margin-bottom: 20px; }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field-wide { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; margin: 0; border: 0; padding: 0; }
.field label, .field legend { font-weight: 600; font-size: .95rem; color: var(--g-900); padding: 0; }
.req { color: var(--c-error); }
.opt { color: var(--g-600); font-weight: 500; font-size: .88rem; }
.hint { font-size: .88rem; color: var(--g-600); margin: 0; line-height: 1.5; }
.field input:not([type=radio]), .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 16px; border: 1px solid var(--g-500); border-radius: var(--r-sm); background: #fff; font-size: 1rem; transition: border-color .15s, box-shadow .15s; }
.field textarea { min-height: 112px; resize: vertical; line-height: 1.6; }
.field input[dir=ltr] { text-align: right; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--g-900); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-burgundy); box-shadow: 0 0 0 1px var(--c-burgundy); }
.field input[type=file] { padding: 12px; min-height: auto; background: var(--g-50); border-style: dashed; }
.field [aria-invalid="true"] { border-color: var(--c-error) !important; box-shadow: 0 0 0 1px var(--c-error); }
.field-error { color: var(--c-error); font-size: .88rem; margin: 0; }
.field-error[hidden] { display: none; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio { position: relative; }
.radio input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.radio span { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 18px; border: 1px solid var(--g-500); border-radius: 999px; background: #fff; font-size: .95rem; }
.radio input:checked + span { border-color: var(--c-burgundy); background: var(--c-burgundy-tint); color: var(--c-burgundy); font-weight: 600; }
.radio input:focus-visible + span { outline: 2px solid var(--c-burgundy); outline-offset: 2px; }
.form-group { border: 0; padding: 0; margin: 0 0 32px; }
.form-group > legend { font-size: 1.1rem; font-weight: 600; color: var(--g-900); margin-bottom: 16px; padding: 0; }
.form-required-note { font-size: .9rem; color: var(--g-600); }
.form-privacy { font-size: .85rem; color: var(--g-600); margin: 16px 0; }
.demo-note { font-size: .85rem; color: var(--g-600); margin: 12px 0 0; text-align: center; }
.error-summary { border: 1px solid var(--c-error); background: #fce8e6; border-radius: 12px; padding: 14px 18px; margin-bottom: 20px; }
.error-summary h3, .error-summary h4 { font-size: 1rem; color: var(--c-error); margin: 0 0 6px; }
.error-summary ul { padding-inline-start: 20px; margin: 0; }
.error-summary a { color: var(--c-error); }
.form-success { margin-top: 16px; padding: 18px; border-radius: 12px; background: #e6f4ea; color: var(--c-success); }
.form-success h3, .form-success h4 { display: flex; align-items: center; gap: 8px; color: var(--c-success); font-size: 1.05rem; margin: 0 0 6px; }
.form-success p { margin: 0; color: var(--g-800); font-size: .95rem; }

/* ---------- Page hero (פנימי) ---------- */
.page-hero { padding-block: 20px clamp(40px, 2rem + 3vw, 88px); background: var(--g-50); }
.page-hero-compact { padding-bottom: clamp(32px, 1.5rem + 2vw, 64px); }
.page-hero .lead { max-width: 640px; }
.page-hero-grid { display: grid; gap: 32px; align-items: center; margin-top: 24px; }
.page-hero-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1000px) { .page-hero-grid { grid-template-columns: 1.1fr .9fr; gap: 72px; } }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; font-size: .88rem; color: var(--g-600); }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before { content: "‹"; margin-inline: 8px; color: var(--g-500); }
.breadcrumbs a { color: var(--g-600); text-decoration: none; }
.breadcrumbs a:hover { color: var(--g-900); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--g-900); }
.page-hero-compact .breadcrumbs { margin-bottom: 24px; }

/* ---------- שירות 01 ---------- */
.fit-grid, .scenario-grid { list-style: none; display: grid; gap: 16px; }
@media (min-width: 768px) { .fit-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 640px) { .scenario-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .scenario-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.fit-grid li, .scenario-grid li { position: relative; padding: 32px 28px; border-radius: var(--r-lg); border: 1px solid var(--g-300); background: #fff; }
.fit-grid .svc-icon, .scenario-grid .svc-icon { width: auto; height: auto; background: none; border-radius: 0; }
.fit-grid .svc-icon .icon, .scenario-grid .svc-icon .icon { width: 40px; height: 40px; color: var(--c-burgundy); }
.fit-grid .svc-icon .icon-duo [opacity], .scenario-grid .svc-icon .icon-duo [opacity] { fill: var(--c-red); opacity: .32; }
.fit-grid h3, .scenario-grid h3 { margin: 20px 0 8px; }
.fit-grid p, .scenario-grid p { margin: 0; color: var(--g-600); }
.scen-num { position: absolute; top: 28px; inset-inline-end: 28px; font-size: .85rem; font-weight: 600; color: var(--g-500); }
.pain-list { list-style: none; display: grid; gap: 12px; }
@media (min-width: 640px) { .pain-list { grid-template-columns: 1fr 1fr; } }
.pain-list li { display: flex; gap: 12px; align-items: flex-start; padding: 20px; background: #fff; border-radius: var(--r); border: 1px solid var(--g-300); }
.pain-list li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: .6em; border-radius: 50%; background: var(--c-red); }
.included-grid, .check-grid { list-style: none; display: grid; gap: 0 40px; }
@media (min-width: 768px) { .included-grid, .check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .check-grid { grid-template-columns: repeat(3, 1fr); } }
.included-grid li, .check-grid li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--g-200); }
.included-grid h3, .check-grid h3 { margin-bottom: 4px; font-size: 1.1rem; }
.included-grid p, .check-grid p { margin: 0; color: var(--g-600); }
.inc-icon .icon { width: 36px; height: 36px; }
.deep { display: grid; gap: 40px; }
.deep-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 2; }
.deep-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1000px) { .deep { grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; } .deep-media { position: sticky; top: calc(var(--header-h) + 32px); aspect-ratio: 4 / 5; } }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.8em; font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { color: var(--g-800); }
.prose ul, .prose ol { padding-inline-start: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--c-burgundy); }

/* ---------- שירות 02 ---------- */
.backup-hero { display: grid; gap: 28px; margin-top: 24px; align-items: center; }
@media (min-width: 1000px) { .backup-hero { grid-template-columns: 1.2fr .8fr; gap: 72px; } }
.backup-question { padding: 32px; border-radius: var(--r-lg); background: var(--c-burgundy); color: #fff; }
.bq-label { font-size: .88rem; color: rgba(255, 255, 255, .75); margin-bottom: 12px; }
.bq-text { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem); line-height: 1.35; margin-bottom: 12px; }
.bq-text strong { font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .6); text-underline-offset: 6px; }
.bq-sub { color: rgba(255, 255, 255, .75); margin: 0; }
.flow { list-style: none; display: grid; gap: 16px; }
@media (min-width: 900px) { .flow { grid-template-columns: repeat(4, 1fr); } }
.flow-step { padding: 28px 24px; border: 1px solid var(--g-300); border-radius: var(--r-lg); background: #fff; }
.flow-step h3 { margin: 18px 0 6px; font-size: 1.15rem; }
.flow-step p { color: var(--g-600); margin: 0; font-size: .95rem; }
.flow-icon .icon { width: 40px; height: 40px; }
.flow-step.is-accent { border-color: var(--c-burgundy); box-shadow: inset 0 0 0 1px var(--c-burgundy); }
.versus { display: grid; gap: 16px; }
@media (min-width: 768px) { .versus { grid-template-columns: 1fr 1fr; gap: 24px; } }
.vs-card { padding: clamp(28px, 1rem + 2vw, 44px); border-radius: var(--r-lg); border: 1px solid var(--g-300); }
.vs-card h3 { font-size: 1.5rem; }
.vs-card > p { color: var(--g-600); }
.vs-card ul { list-style: none; display: grid; gap: 10px; }
.vs-card li { padding-inline-start: 20px; position: relative; }
.vs-card li::before { content: ""; position: absolute; inset-inline-start: 0; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--c-red); }
.vs-card.is-accent { background: var(--g-50); border-color: var(--g-50); }
.scope { display: grid; gap: 40px; align-items: center; }
.scope-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 2; }
.scope-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1000px) { .scope { grid-template-columns: .9fr 1.1fr; gap: 80px; } .scope-media { aspect-ratio: 4 / 5; } }
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .icon { flex: none; width: 22px; height: 22px; color: var(--c-burgundy); margin-top: 2px; }
.check-list.compact { gap: 8px; font-size: .95rem; }
.related-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .related-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .related-grid.related-3 { grid-template-columns: repeat(3, 1fr); } }
.related-card { display: flex; flex-direction: column; padding: 28px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--g-300); color: inherit; text-decoration: none; transition: box-shadow .2s var(--ease); }
a.related-card:hover { box-shadow: var(--shadow-2); color: inherit; }
.related-card p { color: var(--g-600); }
.related-card .more { margin-top: auto; display: inline-flex; gap: 6px; align-items: center; color: var(--c-burgundy); font-weight: 600; }
.related-card.is-sample { color: var(--g-600); }
.rel-kind { font-size: .85rem; color: var(--g-600); margin-bottom: 8px; }
.case { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1000px) { .case { grid-template-columns: 1.1fr .9fr; gap: 64px; } }
.case-steps { list-style: none; display: grid; counter-reset: cs; }
.case-steps li { counter-increment: cs; position: relative; display: grid; gap: 2px; padding: 18px 48px 18px 0; border-top: 1px solid var(--g-300); }
.case-steps li::before { content: counter(cs); position: absolute; inset-inline-start: 0; top: 18px; width: 32px; height: 32px; border-radius: 50%; background: var(--c-burgundy); color: #fff; font-weight: 600; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
.case-steps strong { font-weight: 600; color: var(--g-900); }
.case-steps span { color: var(--g-600); }

/* ---------- Support / Contact ---------- */
.support-head { display: grid; gap: 20px; align-items: end; }
@media (min-width: 900px) { .support-head { grid-template-columns: 1fr auto; gap: 48px; } }
.new-client { padding: 20px 24px; border-radius: var(--r); border: 1px solid var(--g-300); background: #fff; }
.new-client p { margin-bottom: 8px; }
.support-section { padding-top: clamp(32px, 1.5rem + 2vw, 64px); }
.support-grid, .contact-grid { display: grid; gap: 24px; align-items: start; }
@media (min-width: 1000px) { .support-grid { grid-template-columns: 1fr 340px; gap: 40px; } .contact-grid { grid-template-columns: 1fr 380px; gap: 40px; } }
.support-form, .form-card { background: #fff; border: 1px solid var(--g-300); border-radius: var(--r-lg); padding: clamp(24px, 1rem + 2vw, 44px); }
.support-aside, .contact-aside { display: grid; gap: 16px; }
@media (min-width: 1000px) { .support-aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.aside-card { padding: 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--g-300); }
.aside-card h2 { font-size: 1.1rem; margin-bottom: 10px; }
.aside-card p { color: var(--g-600); font-size: .98rem; }
.aside-urgent { border-color: var(--c-burgundy); box-shadow: inset 0 0 0 1px var(--c-burgundy); }
.aside-warn { background: var(--g-50); border-color: var(--g-200); }
.aside-card .todo-note { margin: 0; }
.contact-main { display: grid; gap: 20px; }
.call-card { padding: clamp(28px, 1rem + 2vw, 44px); border-radius: var(--r-lg); background: var(--c-burgundy); color: #fff; text-align: center; }
.call-card-label { color: rgba(255, 255, 255, .8); margin-bottom: 6px; }
.call-number { display: block; margin: 0 auto 20px; font-size: clamp(2rem, 1.4rem + 3vw, 3.2rem); font-weight: 600; color: #fff; text-decoration: none; }
.call-number:hover { color: #fff; text-decoration: underline; }
.call-card .btn { max-width: 360px; margin-inline: auto; }
.call-card .small-muted { color: rgba(255, 255, 255, .8); }
.form-card .lead-form .form-grid, .cta-form .form-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-card .lead-form .form-grid, .cta-form .form-grid { grid-template-columns: 1fr 1fr; } }
.detail-list { list-style: none; display: grid; gap: 16px; }
.detail-list li { display: flex; gap: 12px; align-items: flex-start; }
.detail-list .icon { color: var(--c-burgundy); margin-top: 3px; }
.detail-list div { display: flex; flex-direction: column; }
.dl-label { font-size: .85rem; color: var(--g-600); }
.hours-list { list-style: none; display: grid; gap: 6px; }
.hours-list li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 6px; border-bottom: 1px solid var(--g-200); }
.hours-list li:last-child { border: 0; }

/* ---------- Blog ---------- */
.blog-archive { padding-block: 24px var(--space); }
.archive-title { font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.6rem); margin: 20px 0 8px; }
.blog-tools { display: grid; gap: 16px; margin: 16px 0 32px; }
.blog-tools > * { min-width: 0; }
.no-js .blog-tools .search-box, .no-js .blog-tools .results-bar { display: none; }
.search-box label { display: block; font-weight: 600; color: var(--g-900); margin-bottom: 6px; }
.search-input { position: relative; max-width: 520px; }
.search-input .icon { position: absolute; inset-inline-start: 16px; top: 50%; transform: translateY(-50%); color: var(--g-600); pointer-events: none; }
.search-input input { width: 100%; min-height: 52px; padding: 12px 48px 12px 16px; border: 0; border-radius: 999px; font-size: 1rem; background: var(--g-100); }
.search-input input:focus { outline: none; background: #fff; box-shadow: var(--shadow-1); }
.cat-filter ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 18px; border-radius: 999px; border: 1px solid var(--g-300); background: #fff; color: var(--g-800); text-decoration: none; font-size: .95rem; }
.chip:hover { background: var(--g-50); color: var(--g-900); }
.chip[aria-current="true"] { background: var(--c-burgundy-tint); border-color: var(--c-burgundy-tint); color: var(--c-burgundy); font-weight: 600; }
.results-bar { display: flex; align-items: center; gap: 16px; min-height: 32px; }
.results-count { margin: 0; color: var(--g-600); font-size: .95rem; }
.btn-reset { background: none; border: 0; padding: 6px 0; color: var(--c-burgundy); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.post-card[hidden] { display: none; }
.empty-state { text-align: center; padding: 56px 20px; border: 1px dashed var(--g-500); border-radius: var(--r-lg); }
.empty-state > .icon { width: 36px; height: 36px; color: var(--g-600); margin: 0 auto 12px; }
.empty-state p { color: var(--g-600); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination span { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--c-burgundy); color: #fff; font-weight: 600; }

/* ---------- Article ---------- */
.article-head { padding: 20px 0 clamp(28px, 1rem + 2vw, 48px); background: var(--g-50); }
.article-head .breadcrumbs { margin-bottom: 24px; }
.article-summary { font-size: clamp(1.1rem, 1rem + .4vw, 1.25rem); color: var(--g-600); line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 6px 20px; font-size: .9rem; color: var(--g-600); padding-top: 16px; border-top: 1px solid var(--g-300); }
.article-hero { margin-top: 28px; }
.article-hero img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.article-layout { display: grid; gap: 28px; padding-block: 48px 24px; }
.article-body { font-size: 1.075rem; line-height: 1.85; }
.toc details { border: 1px solid var(--g-300); border-radius: var(--r); background: #fff; }
.toc summary { padding: 14px 18px; font-weight: 600; color: var(--g-900); cursor: pointer; min-height: 48px; }
.toc ol { padding: 0 38px 16px 18px; margin: 0; font-size: .95rem; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--g-600); text-decoration: none; }
.toc a:hover, .toc a[aria-current="true"] { color: var(--c-burgundy); }
@media (min-width: 1100px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 72px; }
  .article-body { grid-column: 1; grid-row: 1; margin-inline: auto; }
  .toc { grid-column: 2; grid-row: 1; position: sticky; top: calc(var(--header-h) + 28px); align-self: start; }
  .toc details { border: 0; border-inline-start: 1px solid var(--g-300); border-radius: 0; }
  .toc summary { list-style: none; padding-top: 0; font-size: .9rem; color: var(--g-600); }
  .toc summary::-webkit-details-marker { display: none; }
}
.callout { margin: 28px 0; padding: 22px 24px; border-radius: var(--r); background: var(--g-50); }
.callout-title { font-weight: 600; color: var(--g-900) !important; margin-bottom: 6px; }
.callout p:last-child { margin: 0; }
.inline-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin: 36px 0; padding: 24px; border-radius: var(--r); border: 1px solid var(--g-300); }
.inline-cta p { margin: 0; flex: 1 1 280px; }
.checklist { counter-reset: c; list-style: none; padding: 0 !important; }
.checklist li { counter-increment: c; position: relative; padding: 12px 48px 12px 0; border-bottom: 1px solid var(--g-200); margin: 0; }
.checklist li::before { content: counter(c); position: absolute; inset-inline-start: 0; top: 10px; width: 30px; height: 30px; border-radius: 50%; background: var(--c-burgundy); color: #fff; font-weight: 600; display: flex; align-items: center; justify-content: center; font-size: .88rem; }
.article-end-cta { display: grid; gap: 20px; margin: 16px 0 var(--space); padding: clamp(28px, 1rem + 2vw, 44px); border-radius: var(--r-lg); background: var(--g-50); }
.article-end-cta h2 { font-size: 1.6rem; }
.article-end-cta p { color: var(--g-600); margin: 0; }
.article-end-cta .cta-actions { margin: 0; }

/* ---------- Footer (בסגנון גוגל) ---------- */
.site-footer { background: var(--g-50); padding-top: clamp(40px, 2rem + 2vw, 64px); font-size: .95rem; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 28px; border-bottom: 1px solid var(--g-300); }
.footer-tagline { margin: 0; font-size: 1.05rem; color: var(--g-900); max-width: 460px; }
.footer-top-actions { display: flex; align-items: center; gap: 16px; }
.footer-phone { font-size: 1.2rem; font-weight: 600; color: var(--g-900); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; padding-block: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: repeat(6, 1fr); } }
.footer-title { font-size: 1rem; font-weight: 600; color: var(--g-900); margin-bottom: 16px; letter-spacing: 0; }
.site-footer ul { list-style: none; display: grid; gap: 12px; }
.site-footer a { color: var(--g-800); text-decoration: none; }
.site-footer a:hover { color: var(--g-900); text-decoration: underline; }
.site-footer .btn-primary, .site-footer .btn-primary:hover { color: #fff; text-decoration: none; }
.f-soon { color: var(--g-600); }
.footer-contact { color: var(--g-800); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 32px; padding-block: 24px; border-top: 1px solid var(--g-300); font-size: .88rem; color: var(--g-600); }
.footer-bottom p { margin: 0 auto 0 0; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-bottom a { color: var(--g-600); }
.footer-logo img { width: 84px; height: auto; }

/* ---------- מובייל: גלילה אופקית ברשימות כרטיסים ---------- */
@media (max-width: 767px) {
  .steps, .posts-grid:not([data-posts]), .scenario-grid, .fit-grid, .testimonials, .related-grid, .related-grid.related-3, .flow, .services-grid {
    display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 84%; gap: 12px;
    overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
    margin-inline: calc(-1 * var(--gutter)); padding: 4px var(--gutter) 14px; scroll-padding-inline: var(--gutter); scrollbar-width: none;
  }
  .steps::-webkit-scrollbar, .posts-grid::-webkit-scrollbar, .scenario-grid::-webkit-scrollbar, .fit-grid::-webkit-scrollbar, .testimonials::-webkit-scrollbar, .related-grid::-webkit-scrollbar, .flow::-webkit-scrollbar, .services-grid::-webkit-scrollbar { display: none; }
  .steps > *, .posts-grid:not([data-posts]) > *, .scenario-grid > *, .fit-grid > *, .testimonials > *, .related-grid > *, .flow > *, .services-grid > * { scroll-snap-align: start; }
  .steps li, .services-grid li { padding: 28px 24px; border: 1px solid var(--g-300); border-radius: var(--r-lg); background: #fff; }
  .steps, .flow { grid-auto-columns: 74%; }
  .testimonials { grid-auto-columns: 88%; }
  .cat-filter ul { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(-1 * var(--gutter)); padding: 2px var(--gutter) 6px; scrollbar-width: none; }
  .cat-filter ul::-webkit-scrollbar { display: none; }
  .chip { white-space: nowrap; }
  .section-head { margin-bottom: 28px; }
}
.scroll-dots { display: flex; justify-content: center; gap: 6px; margin-top: 8px; }
.scroll-dots[hidden] { display: none; }
.scroll-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--g-300); transition: width .2s var(--ease), background-color .2s; }
.scroll-dots span.is-active { width: 18px; border-radius: 3px; background: var(--c-burgundy); }
@media (min-width: 768px) { .scroll-dots { display: none; } }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* חיצי המסילה: שורה מתחת לכרטיסים, מיושרת לסוף המכולה */
.rail-controls { display: flex; justify-content: flex-end; gap: 12px; margin-top: 8px; }
.rail-btn, .rail-btn[disabled] { display: inline-flex; position: static; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--g-300); background: #fff; box-shadow: none; cursor: pointer; color: var(--g-900); opacity: 1; pointer-events: auto; transition: background-color .2s, border-color .2s; }
.rail-btn:hover { background: var(--g-100); }
.rail-btn[disabled] { color: var(--g-300); cursor: default; pointer-events: none; }
.rail-btn .icon { width: 20px; height: 20px; }
@media (max-width: 767px) { .rail-controls { display: none; } }

/* מסילה ממורכזת: כרטיסים חתוכים משני הצדדים, חיצים על גבי התמונות */
.rail-track { padding-inline: var(--gutter); scroll-padding-inline: 0; }
.product-card { scroll-snap-align: center; }
@media (min-width: 768px) {
  .rail-controls { display: block; margin: 0; }
  .rail-btn, .rail-btn[disabled] { position: absolute; z-index: 2; width: 56px; height: 56px; border: 0; background: #fff; box-shadow: var(--shadow-2);
    top: calc(6px + min(max(320px, 40vw), 480px) * .375 - 28px); }
  .rail-prev { inset-inline-start: 24px; }
  .rail-next { inset-inline-end: 24px; }
  .rail-btn[disabled] { opacity: .45; }
}
