/* ===================================================================
   MIND CORE — shared stylesheet (all pages)
   =================================================================== */
:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-soft: #444444;
  --ink-faint: #8a8a8a;
  --violet: #6B21A8;
  --violet-hover: #7c3aed;
  --violet-tint: rgba(107,33,168,0.06);
  --line: rgba(17,17,17,0.08);
  --maxw: 1180px;
  --nav-h: 68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Heebo', system-ui, sans-serif;
  direction: rtl; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
section { position: relative; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; inset-inline: 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line); z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.15rem; letter-spacing: .5px; }
@keyframes logoSpin {
  0%   { transform: perspective(600px) rotateY(0deg); }
  100% { transform: perspective(600px) rotateY(360deg); }
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(201,147,10,.25)) drop-shadow(0 0 6px rgba(201,147,10,.1)); }
  50%      { filter: drop-shadow(0 0 10px rgba(201,147,10,.75)) drop-shadow(0 0 22px rgba(201,147,10,.35)); }
}
.nav-logo img {
  height: 50px; width: auto;
  transform-style: preserve-3d;
  animation: logoSpin 9s linear infinite, logoGlow 2.8s ease-in-out infinite;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 13px; border-radius: 999px; font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--violet); background: var(--violet-tint); }
.nav-links a.active { color: var(--violet); background: var(--violet-tint); font-weight: 700; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-drawer {
  position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(8px); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer a { font-size: 1.4rem; font-weight: 500; color: var(--ink); padding: 12px 24px; }
.nav-drawer a.active { color: var(--violet); font-weight: 700; }

/* ===== Helpers ===== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.kicker { font-size: .82rem; font-weight: 700; letter-spacing: 2px; color: var(--violet); text-transform: uppercase; margin-bottom: 14px; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem; cursor: pointer; border: 1.5px solid transparent; transition: .22s; }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: var(--violet-hover); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }
.btn-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-light:hover { background: rgba(255,255,255,0.12); }

/* ===== About hero (photo) ===== */
.hero { min-height: 100vh; padding-top: var(--nav-h); display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 20px; max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(20px, 5vw, 48px); }
.hero-copy { padding-block: 40px; }
.hero-eyebrow { display: inline-block; font-size: .85rem; font-weight: 700; letter-spacing: 2px; color: var(--violet); background: var(--violet-tint); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.hero-name { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 900; line-height: 1.05; letter-spacing: -1px; }
.hero-name span { color: var(--violet); }
.hero-sub { margin-top: 22px; font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 400; color: var(--ink-soft); max-width: 30ch; }
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { position: relative; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.hero-photo::before { content: ""; position: absolute; inset: auto 0 0 0; height: 78%; background: radial-gradient(120% 80% at 50% 100%, var(--violet-tint), transparent 70%); border-radius: 40% 40% 0 0; z-index: 0; }
.hero-photo img { position: relative; z-index: 1; max-height: 92vh; width: auto; object-fit: contain; filter: drop-shadow(0 30px 50px rgba(17,17,17,0.14)); }

/* ===== Service page hero (video) ===== */
.phero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.phero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.phero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,4,14,0.92) 0%, rgba(6,4,14,0.72) 42%, rgba(6,4,14,0.30) 100%); }
.phero-content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: var(--nav-h) clamp(20px, 5vw, 48px) 0; width: 100%; color: #fff; }
.phero-eyebrow { display: inline-block; font-size: .85rem; font-weight: 700; letter-spacing: 2px; color: #fff; background: rgba(107,33,168,0.7); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.phero h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.08; letter-spacing: -1px; max-width: 18ch; }
.phero h1 span { color: #c79bf0; }
.phero-sub { margin-top: 20px; font-size: clamp(1.1rem, 2vw, 1.45rem); color: rgba(255,255,255,0.86); max-width: 40ch; }
.phero .hero-cta { margin-top: 32px; }

/* ===== Content sections ===== */
.story { padding: clamp(56px, 9vw, 110px) 0; }
.story.alt { background: linear-gradient(180deg, #fafafa, #fff); }
.story-inner { max-width: 820px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.story h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 900; line-height: 1.2; letter-spacing: -.5px; margin-bottom: 20px; }
.story p { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--ink-soft); margin-bottom: 14px; }
.story p strong { color: var(--ink); font-weight: 700; }
.story .lead { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink); font-weight: 500; }
.qbox { margin: 26px 0; padding: 22px 26px; border-inline-start: 3px solid var(--violet); background: var(--violet-tint); border-radius: 0 14px 14px 0; }
.qbox p { margin: 0; color: var(--ink); font-weight: 500; font-size: clamp(1.1rem,1.9vw,1.35rem); }
.statement { margin: 26px 0; padding: 8px 4px; }
.statement p { margin: 0; color: var(--ink); font-weight: 700; font-size: clamp(1.25rem,2.4vw,1.65rem); line-height: 1.8; }
.statement .mark { font-weight: 800; padding: 0 3px; background: linear-gradient(180deg, transparent 58%, rgba(124,58,237,0.35) 58%); }

/* ===== Facts — full-bleed violet band, giant numbers ===== */
.facts { width: 100vw; margin-inline: calc(50% - 50vw); margin-top: 56px;
  background: linear-gradient(135deg, #160b28 0%, #3a0f64 100%);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: none; }
.fact { text-align: center; padding: 0; border: 0; background: none; }
.fact-num { position: relative; display: inline-block; font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 900; color: #fff; line-height: 1; letter-spacing: -1.5px; }
.fact-num::after { content: ""; display: block; width: 46px; height: 3px; background: #c79bf0; border-radius: 2px; margin: 16px auto 0; }
.fact-label { margin-top: 14px; font-size: 1.05rem; color: rgba(255,255,255,0.72); }
.fact-num.done { animation: numGlow 1.1s ease-out; }
@keyframes numGlow {
  0% { text-shadow: 0 0 0 rgba(199,155,240,0); transform: scale(1); }
  40% { text-shadow: 0 0 26px rgba(199,155,240,.95); transform: scale(1.12); }
  100% { text-shadow: 0 0 0 rgba(199,155,240,0); transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .fact-num.done { animation: none; } }

/* ===== Before / After — dramatic contrast ===== */
.ba { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 44px; align-items: stretch; }
.ba-col { padding: 34px 30px; border-radius: 24px; }
.ba-col h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 18px; }
.ba-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ba-col li { font-size: 1.04rem; padding-inline-start: 34px; position: relative; line-height: 1.5; }
.ba-col li::before { position: absolute; inset-inline-start: 0; top: 1px; width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; font-size: .78rem; font-weight: 800; }

/* faded, tired "before" */
.ba-before { background: #f1f1f3; border: 1px solid var(--line); filter: saturate(.55); }
.ba-before h3 { color: var(--ink-faint); }
.ba-before li { color: #9c9ca4; text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.22); }
.ba-before li::before { content: "✕"; background: rgba(0,0,0,0.06); color: #b4b4bb; text-decoration: none; }

/* alive, glowing "after" */
.ba-after { position: relative; overflow: hidden; border: 0; color: #fff; transform: translateY(-8px);
  background: linear-gradient(150deg, #7a25bd 0%, #3b0f66 100%);
  box-shadow: 0 26px 60px rgba(107,33,168,0.38); }
.ba-after::before { content: ""; position: absolute; inset: 0; background: radial-gradient(130% 90% at 82% 0%, rgba(199,155,240,0.38), transparent 58%); pointer-events: none; }
.ba-after h3, .ba-after li { position: relative; }
.ba-after h3 { color: #fff; }
.ba-after li { color: rgba(255,255,255,0.94); }
.ba-after li::before { content: "✓"; background: rgba(255,255,255,0.2); color: #fff; }

/* center arrow badge (RTL: points from "before"→"after") */
.ba::after { content: "←"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--violet);
  font-size: 1.7rem; font-weight: 900; display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(17,17,17,0.16); z-index: 3; }

/* ===== Feature grid ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.feat-card { padding: 30px 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(17,17,17,0.09); border-color: rgba(107,33,168,0.25); }
.feat-icon { width: 60px; height: 60px; border-radius: 18px; background: linear-gradient(150deg,#f5f3ff,#ede9fe);
  display: grid; place-items: center; font-size: 1.95rem; line-height: 1; margin-bottom: 18px;
  animation: featBob 2.8s ease-in-out infinite; }
.feat-grid .feat-card:nth-child(2n) .feat-icon { animation-delay: .4s; }
.feat-grid .feat-card:nth-child(3n) .feat-icon { animation-delay: .8s; }
@keyframes featBob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-5px) rotate(-4deg); } }
@media (prefers-reduced-motion: reduce) { .feat-icon { animation: none; } }
.feat-icon.logo-icon { animation: none; background: #fff; border: 1px solid var(--line); padding: 10px; }
.feat-icon.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.feat-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; line-height: 1.35; }
.feat-card p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== Audience "למי זה מתאים" — avatars + radar pulse ===== */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 44px; text-align: center; }
.aud-col h3 { font-size: 1.15rem; font-weight: 800; }
.aud-col p { color: var(--ink-soft); margin-top: 8px; font-size: .96rem; line-height: 1.6; }
.aud-badge { position: relative; width: 92px; height: 92px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2.4rem; line-height: 1;
  background: radial-gradient(circle at 30% 25%, #a855f7, #6B21A8);
  box-shadow: 0 16px 32px rgba(107,33,168,.28); }
.aud-badge::before, .aud-badge::after { content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(107,33,168,.55); animation: audPulse 2.6s ease-out infinite; }
.aud-badge::after { animation-delay: 1.3s; }
.audience .aud-col:nth-child(2) .aud-badge::before,
.audience .aud-col:nth-child(2) .aud-badge::after { animation-delay: .3s; }
.audience .aud-col:nth-child(3) .aud-badge::before,
.audience .aud-col:nth-child(3) .aud-badge::after { animation-delay: .6s; }
.audience .aud-col:nth-child(4) .aud-badge::before,
.audience .aud-col:nth-child(4) .aud-badge::after { animation-delay: .9s; }
@keyframes audPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .aud-badge::before, .aud-badge::after { animation: none; opacity: 0; } }
@media (max-width: 820px) { .audience { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }

/* ===== Section heading (centered) ===== */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto; }
.sec-head .kicker { display: block; }
.sec-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: -.5px; }
.sec-head p { margin-top: 14px; font-size: 1.15rem; color: var(--ink-soft); }

/* ===== CTA band ===== */
.cta-band { text-align: center; padding: clamp(60px, 9vw, 110px) 0; background: linear-gradient(135deg, #140a24, #2a1250); color: #fff; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; max-width: 20ch; margin: 0 auto 26px; letter-spacing: -.5px; }

/* ===== Blog marquee ===== */
.blog { padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--line); overflow: hidden; }
.blog-head { text-align: center; margin-bottom: 42px; }
.blog-head .kicker { display: block; }
.blog-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; }
.blog-overflow { overflow: hidden; direction: ltr; transform: translateZ(0); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
@keyframes blogMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.blog-track { display: flex; gap: 20px; width: max-content; }
.blog-track--run { animation: blogMarquee 55s linear infinite; }
.blog-overflow:hover .blog-track--run { animation-play-state: paused; }
.blog-card { direction: rtl; width: 300px; flex: 0 0 300px; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(17,17,17,0.10); }
.blog-card-img { height: 168px; background: #ececec center/cover no-repeat; }
.blog-card-body { padding: 16px 18px 20px; }
.blog-card-cat { font-size: .75rem; font-weight: 700; color: var(--violet); letter-spacing: 1px; }
.blog-card h3 { font-size: 1.06rem; font-weight: 700; line-height: 1.4; margin-top: 6px; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-loading { text-align: center; color: var(--ink-faint); padding: 20px; }

/* ===== Blog listing page (static grid) ===== */
.blog-hero { padding: calc(var(--nav-h) + 60px) 0 40px; text-align: center; background: linear-gradient(180deg, var(--violet-tint), #fff); }
.blog-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -1px; }
.blog-hero p { margin-top: 14px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 40px 0 90px; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(17,17,17,0.10); }
.article-img { height: 190px; background: #ececec center/cover no-repeat; }
.article-body { padding: 20px 22px 26px; }
.article-cat { font-size: .76rem; font-weight: 700; color: var(--violet); letter-spacing: 1px; }
.article-body h3 { font-size: 1.16rem; font-weight: 700; line-height: 1.45; margin-top: 8px; color: var(--ink); }
.article-loading { grid-column: 1 / -1; text-align: center; color: var(--ink-faint); padding: 40px; }
.article-card { cursor: pointer; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr; } }

/* ===== ARTICLE SLIDE-IN PANEL ===== */
.panel-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.48); z-index: 500; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.panel-overlay.open { display: block; }
.article-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(720px, 100vw); background: #fff; z-index: 600; transform: translateX(100%); transition: transform .42s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: -24px 0 80px rgba(0,0,0,0.18); }
.article-panel.open { transform: translateX(0); }
.panel-header { position: sticky; top: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; z-index: 10; }
.panel-back { display: flex; align-items: center; gap: 6px; font-size: .95rem; font-weight: 600; color: var(--violet); cursor: pointer; background: none; border: none; font-family: inherit; transition: opacity .2s; }
.panel-back:hover { opacity: .65; }
.panel-logo { font-size: .95rem; font-weight: 700; color: var(--violet); }
.panel-content { padding: 44px 52px 80px; }
.panel-cat { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--violet-hover); margin-bottom: 16px; }
.panel-title { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 900; color: var(--ink); line-height: 1.3; margin-bottom: 12px; }
.panel-date { font-size: .85rem; color: var(--ink-faint); margin-bottom: 32px; }
.panel-divider { height: 1px; background: var(--line); margin-bottom: 32px; }
.panel-body { font-size: 1rem; line-height: 1.9; color: var(--ink-soft); }
.panel-body h1, .panel-body h2 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 32px 0 14px; line-height: 1.4; }
.panel-body h3 { font-size: 1.06rem; font-weight: 600; color: var(--ink); margin: 24px 0 10px; }
.panel-body p { margin-bottom: 18px; }
.panel-body strong { color: var(--ink); font-weight: 700; }
.panel-body a { color: var(--violet); }
.panel-body ul, .panel-body ol { margin: 14px 0 18px 28px; }
.panel-body li { margin-bottom: 8px; }
.panel-body img { max-width: 100%; border-radius: 12px; margin: 20px 0; }
.panel-cta { margin-top: 48px; padding: 28px 32px; background: linear-gradient(135deg, rgba(107,33,168,0.05), rgba(147,51,234,0.03)); border: 1px solid rgba(107,33,168,0.14); border-radius: 18px; text-align: center; }
.panel-cta p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 16px; }
.panel-cta a { display: inline-block; background: var(--violet); color: #fff; font-weight: 700; font-size: .95rem; padding: 13px 32px; border-radius: 999px; text-decoration: none; transition: background .2s; }
.panel-cta a:hover { background: var(--violet-hover); }
.panel-loading { display: flex; align-items: center; justify-content: center; min-height: 280px; gap: 12px; color: var(--ink-faint); font-size: .9rem; }
.panel-spinner { width: 22px; height: 22px; border: 2px solid rgba(107,33,168,0.14); border-top-color: var(--violet); border-radius: 50%; animation: panelSpin .7s linear infinite; }
@keyframes panelSpin { to { transform: rotate(360deg); } }
@media (max-width: 768px) { .panel-content { padding: 28px 24px 60px; } }

/* ===== Footer ===== */
.footer { background: #0b0b10; color: #cfcfd6; padding: 60px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer a { color: #cfcfd6; font-size: .98rem; display: block; padding: 4px 0; transition: color .2s; }
.footer a:hover { color: var(--violet-hover); }
.footer-brand p { color: #9a9aa6; font-size: .95rem; max-width: 34ch; margin-top: 12px; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  color: #fff; transition: transform .15s, filter .2s; }
.footer-socials a:hover { transform: translateY(-2px); filter: brightness(1.12); }
.footer-socials a svg { width: 20px; height: 20px; fill: currentColor; }
.footer-socials .s-fb { background: #1877F2; }
.footer-socials .s-wa { background: #25D366; }
.footer-socials .s-li { background: #0A66C2; }
.footer-socials .s-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 22px; text-align: center; color: #7c7c88; font-size: .88rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-h) + 24px); text-align: center; gap: 0; }
  .hero-copy { order: 2; padding-block: 24px 10px; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-photo { order: 1; }
  .hero-photo img { max-height: 56vh; }
  .phero-overlay { background: linear-gradient(180deg, rgba(6,4,14,0.55) 0%, rgba(6,4,14,0.82) 100%); }
  .facts { grid-template-columns: 1fr; gap: 40px; }
  .ba { grid-template-columns: 1fr; gap: 40px; }
  .ba-after { transform: none; }
  .ba::after { content: "↓"; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; font-size: 1.5rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-brand p { margin-inline: auto; }
}

/* ===== Lead form (טופס השאר פרטים — דפי שירות בלבד) ===== */
.leadform { background: var(--violet-tint); padding: 72px 24px; }
.leadform-head { text-align: center; max-width: 560px; margin: 0 auto 30px; }
.leadform-head span { color: var(--violet); font-weight: 700; }
.leadform-head h2 { font-size: 2rem; font-weight: 900; margin-top: 8px; }
.leadform-head p { color: var(--ink-soft); margin-top: 10px; }
.leadform-card { max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 34px; box-shadow: 0 20px 50px rgba(107,33,168,.1); }
.lf-field { display: flex; flex-direction: column; gap: 6px; text-align: right; margin-bottom: 16px; }
.lf-field label { font-size: .85rem; font-weight: 600; }
.lf-field input, .lf-field select { font-family: inherit; font-size: 1rem; padding: 12px 14px;
  border-radius: 12px; border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  transition: border .2s, box-shadow .2s; }
.lf-field input:focus, .lf-field select:focus { outline: 0; border-color: var(--violet);
  box-shadow: 0 0 0 3px var(--violet-tint); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.lf-row .lf-field { margin-bottom: 0; }
.lf-btn { width: 100%; margin-top: 6px; font-family: inherit; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; border: 0; border-radius: 999px; padding: 14px 22px; background: var(--violet);
  color: #fff; transition: background .2s, transform .15s; }
.lf-btn:hover { background: var(--violet-hover); transform: translateY(-2px); }
.lf-done { text-align: center; padding: 34px 20px; font-size: 1.15rem; font-weight: 700; color: var(--violet); }

/* ===== FAQ accordion (שאלות תשובות — דפי שירות) ===== */
.faq { padding: 68px 24px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: right; background: none; border: 0; cursor: pointer; padding: 22px 6px;
  font-family: inherit; font-size: 1.08rem; font-weight: 700; color: var(--ink); display: flex;
  justify-content: space-between; align-items: center; gap: 16px; transition: color .2s; }
.faq-q:hover { color: var(--violet); }
.faq-q::after { content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--violet); line-height: 1;
  flex: none; transition: transform .28s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a p { padding: 0 6px 24px; color: var(--ink-soft); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 460px; }


/* ===== TIMELINE — תהליך יום אחר יום (רכיב משותף, מחליף .process) ===== */
.timeline { padding: 74px 24px; }
.timeline .sec-head { text-align: center; }
.pace { display: inline-block; font-size: .8rem; font-weight: 800; color: var(--violet-hover);
  background: var(--violet-tint); border: 1px solid rgba(107,33,168,.16); padding: 6px 16px;
  border-radius: 999px; margin-top: 14px; }
.tlA { position: relative; max-width: 760px; margin: 46px auto 0; padding: 20px 0; }
.tlA::before { content: ''; position: absolute; top: 0; bottom: 0; right: 50%; width: 3px;
  transform: translateX(50%); background: linear-gradient(180deg, var(--violet), var(--violet-hover)); }
.tlA-item { position: relative; width: 50%; padding: 0 44px 46px; }
.tlA-item:nth-child(odd) { margin-inline-start: auto; text-align: right; }
.tlA-item:nth-child(even) { text-align: left; }
.tlA-dot { position: absolute; top: 2px; width: 44px; height: 44px; border-radius: 50%; background: #fff;
  border: 3px solid var(--violet); color: var(--violet); font-weight: 900; display: flex;
  align-items: center; justify-content: center; font-size: .9rem; box-shadow: 0 6px 18px rgba(107,33,168,.18); }
.tlA-item:nth-child(odd) .tlA-dot { right: -22px; }
.tlA-item:nth-child(even) .tlA-dot { left: -22px; }
.tlA-day { font-size: .78rem; font-weight: 800; color: var(--violet-hover); letter-spacing: 1px; margin-bottom: 6px; }
.tlA-item h4 { font-size: 1.18rem; font-weight: 800; margin-bottom: 6px; }
.tlA-item p { color: var(--ink-soft); font-size: .95rem; }
.tlA-fact { display: inline-block; margin-top: 10px; font-size: .85rem; font-weight: 700;
  color: var(--violet); background: var(--violet-tint); padding: 5px 12px; border-radius: 8px; }
.tl-close { background: linear-gradient(135deg, rgba(107,33,168,.07), rgba(124,58,237,.04));
  border: 1px solid rgba(107,33,168,.16); border-radius: 22px; padding: 36px 40px; text-align: center;
  max-width: 680px; margin: 50px auto 0; }
.tl-close h4 { font-size: 1.3rem; font-weight: 900; margin-bottom: 14px; min-height: 1.4em; }
.tl-close p { color: var(--ink-soft); font-size: 1.02rem; max-width: 54ch; margin: 0 auto 16px; min-height: 3em; }
.tl-close .tl-promise { font-size: 1.1rem; font-weight: 800; color: var(--violet); min-height: 1.4em; }
.tw-cursor::after { content: '▋'; color: var(--violet-hover); animation: twBlink .9s steps(1) infinite; margin-inline-start: 1px; }
@keyframes twBlink { 50% { opacity: 0; } }
@media (max-width: 760px) {
  .tlA::before { right: 28px; transform: none; }
  .tlA-item { width: 100%; text-align: right !important; padding: 0 0 42px 0; padding-inline-start: 64px; }
  .tlA-item .tlA-dot { right: 6px !important; left: auto !important; }
}

/* ===== Timed lead popup (מודאל אבחון ממוקד — דפי שירות) ===== */
.mcpop { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 20px;
  background: rgba(10,8,20,.6); backdrop-filter: blur(6px); }
.mcpop.show { display: grid; }
.mcpop-box { position: relative; max-width: 460px; width: 100%; color: #fff; text-align: center;
  background: linear-gradient(150deg, #4c1d95, #6B21A8 55%, #7c3aed); border-radius: 26px;
  padding: 42px 34px 34px; box-shadow: 0 40px 90px rgba(0,0,0,.45);
  animation: mcpopScale .35s cubic-bezier(.2,.9,.3,1.3); }
.mcpop-eyebrow { font-weight: 700; letter-spacing: .5px; opacity: .85; }
.mcpop-box h2 { font-size: 1.6rem; font-weight: 900; margin: 8px 0 10px; line-height: 1.25; }
.mcpop-sub { opacity: .92; margin-bottom: 22px; }
.mcpop-field { display: flex; flex-direction: column; gap: 6px; text-align: right; margin-bottom: 12px; }
.mcpop-field label { font-size: .8rem; font-weight: 600; }
.mcpop-field input { font-family: inherit; font-size: 1rem; padding: 11px 13px; border-radius: 11px;
  border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; }
.mcpop-field input::placeholder { color: rgba(255,255,255,.45); }
.mcpop-btn { width: 100%; font-family: inherit; font-size: 1.05rem; font-weight: 800; cursor: pointer;
  border: 0; border-radius: 999px; padding: 14px 20px; background: #fff; color: #4c1d95; margin-top: 4px;
  transition: transform .15s; }
.mcpop-btn:hover { transform: translateY(-2px); }
.mcpop-close { position: absolute; top: 14px; left: 16px; background: none; border: 0; color: #fff;
  font-size: 1.6rem; line-height: 1; cursor: pointer; opacity: .6; }
.mcpop-close:hover { opacity: 1; }
@keyframes mcpopScale { from { opacity: 0; transform: scale(.85) translateY(10px); } to { opacity: 1; transform: none; } }
