/* ============================================================
   Elisos — One Pager
   קונספט: מחסן / תווית משלוח / דפוס.
   נייר בהיר, דיו שחור, כתום קרגו, מונו-ברקודים.
   ============================================================ */

:root {
  --paper: #f3efe7;
  --paper-soft: #ece7db;
  --ink: #141310;
  --ink-soft: #55524a;
  --accent: #2c6e54;       /* bottle green */
  --accent-dark: #1f5440;
  --line: #141310;
  --line-soft: rgba(20, 19, 16, 0.18);
  --radius: 6px;
  --container: 1180px;
  --nav-h: 72px;
  --ticker-h: 34px;
  --font-display: 'Suez One', 'Assistant', serif;
  --font-body: 'Assistant', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --hard-shadow: 4px 4px 0 var(--ink);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  /* טקסטורת נייר עדינה */
  background-image:
    radial-gradient(rgba(20, 19, 16, 0.045) 1px, transparent 0);
  background-size: 26px 26px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

::selection { background: var(--accent); color: var(--paper); }

.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; right: 0;
  height: 4px;
  width: 0%;
  background: var(--accent);
  z-index: 1200;
}

/* ---------- Ticker (פס עליון) ---------- */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  z-index: 1100;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  animation: tickerMove 30s linear infinite;
  padding-inline: 22px;
}
.ticker-track i { color: var(--accent); font-style: normal; font-size: 0.6rem; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400; /* Suez One מגיע במשקל יחיד וכבד מטבעו */
  line-height: 1.16;
}
.section-title { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.section-title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.section-sub { color: var(--ink-soft); margin-top: 12px; font-size: 1.08rem; }
.section { padding: 110px 0; position: relative; }
.section-head { margin-bottom: 56px; }
.section-index {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1.5px solid var(--ink);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--paper);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s, background 0.2s, color 0.2s;
  will-change: transform;
  box-shadow: var(--hard-shadow);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: var(--paper); color: var(--ink); }
.btn-outline:hover { background: var(--paper-soft); }
.btn-sm { padding: 9px 20px; font-size: 0.95rem; }
.btn-lg { padding: 15px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: var(--ticker-h); right: 0; left: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  direction: ltr;
  unicode-bidi: isolate;
}
.logo-dot { color: var(--accent); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover { border-bottom-color: var(--accent); color: var(--accent-dark); }

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--ticker-h) + var(--nav-h) + 72px);
  padding-bottom: 40px;
  min-height: 92svh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-meta { display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1.5px solid var(--ink);
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--paper);
}
.mono-tag-accent { background: var(--ink); color: #7dff9b; border-color: var(--ink); }
.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.3rem);
  margin-bottom: 26px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .word { display: inline-block; }
.accent-word { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

/* תווית משלוח */
.hero-side { position: relative; }
.label-card {
  background: #fbf9f4;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1.5deg);
}
.label-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1.5px dashed var(--line-soft);
}
.label-key {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  direction: ltr;
  text-align: left;
}
.label-val { font-weight: 600; font-size: 0.98rem; }
.barcode {
  position: relative;
  overflow: hidden;
  height: 44px;
  margin-top: 18px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px, transparent 2px 5px,
    var(--ink) 5px 9px, transparent 9px 11px,
    var(--ink) 11px 12px, transparent 12px 16px,
    var(--ink) 16px 19px, transparent 19px 24px
  );
}
.barcode::after {
  content: '';
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 12px 3px rgba(44, 110, 84, 0.5);
  animation: barcodeScan 3s ease-in-out infinite;
}
@keyframes barcodeScan {
  0%, 100% { left: 2%; }
  50% { left: 97%; }
}
.label-serial {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  margin-top: 8px;
  color: var(--ink-soft);
}

/* חותמת */
.stamp {
  position: absolute;
  width: 130px;
  top: -46px;
  inset-inline-start: -34px;
  color: var(--accent);
  transform: rotate(12deg);
  opacity: 0.92;
  pointer-events: none;
}
.stamp svg { width: 100%; height: auto; }
.stamp text {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  fill: currentColor;
}
.stamp .stamp-center { font-size: 30px; letter-spacing: 0; }

/* ---------- Stats ---------- */
.stats { padding: 30px 0 0; }
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fbf9f4;
  box-shadow: var(--hard-shadow);
  overflow: hidden;
}
.stat {
  text-align: center;
  padding: 30px 16px;
  border-inline-start: 2px solid var(--ink);
}
.stat:first-child { border-inline-start: none; }
.stat-num {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 600;
  color: var(--accent);
  direction: ltr;
}
.stat-label { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; margin-top: 2px; }

/* ---------- Tabs ---------- */
.tabs {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fbf9f4;
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-soft);
}
.tab-btn {
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  border: none;
  border-inline-start: 2px solid var(--ink);
  padding: 15px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tab-btn:first-child { border-inline-start: none; }
.tab-btn:hover { background: var(--paper); }
.tab-btn.active { background: var(--ink); color: var(--paper); }
.tabs-body { padding: 48px; min-height: 360px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.panel-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.panel-text h3 { font-size: 1.7rem; margin-bottom: 12px; }
.panel-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.panel-list { list-style: none; display: grid; gap: 11px; }
.panel-list li {
  position: relative;
  padding-inline-start: 28px;
  font-weight: 500;
}
.panel-list li::before {
  content: '▪';
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
}
.panel-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 240px;
  margin: 0 auto;
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 74, 28, 0.12) 48%, rgba(255, 74, 28, 0.12) 52%, transparent 52%),
    #fbf9f4;
}
.visual-icon { font-size: 4.2rem; }
.visual-tag {
  position: absolute;
  top: 10px;
  inset-inline-start: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  direction: ltr;
}

/* ---------- Feature strip ("אני פה") ---------- */
.feature-strip {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 26px 34px;
  box-shadow: var(--hard-shadow);
  border: 2px solid var(--ink);
}
.feature-strip-text { font-size: 1.25rem; font-weight: 500; }
.feature-strip-text strong { color: var(--accent); font-weight: 800; }
.feature-strip .btn-primary { box-shadow: 3px 3px 0 rgba(251, 249, 244, 0.35); }

/* ---------- Marquee — עבדתי מול ---------- */
.marquee-section { padding: 110px 0 90px; }
.marquee-section .section-head { text-align: center; }
.marquee {
  overflow: hidden;
  background: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 22px 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 26s linear infinite;
  padding-inline: 40px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.04em;
}
.marquee-item:nth-child(even) { color: var(--accent); }

/* ---------- Case studies (סליידר כרטיסי משלוח) ---------- */
.cases-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 20px;
  scrollbar-width: none;
}
.cases-track::-webkit-scrollbar { display: none; }
.case-card {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
  background: #fbf9f4;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--hard-shadow);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
}
.case-card:nth-child(odd) { transform: rotate(-0.5deg); }
.case-card:nth-child(even) { transform: rotate(0.5deg); }
.case-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 7px 9px 0 var(--ink);
}
.slider-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.slider-btn {
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  background: #fbf9f4;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.slider-btn:hover { background: var(--paper-soft); }
.slider-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.slider-btn:disabled { opacity: 0.35; cursor: default; }
.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1.5px dashed var(--line-soft);
}
.case-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  direction: ltr;
}
.case-chip {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--ink);
  color: var(--paper);
  padding: 3px 12px;
  border-radius: 100px;
}
.case-card h3 { font-size: 1.3rem; }
.case-card p { color: var(--ink-soft); font-size: 0.95rem; }
.case-card p strong { color: var(--ink); }
.case-result {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent-dark);
  border-top: 1.5px dashed var(--line-soft);
  padding-top: 14px;
}
.case-result::before { content: '✓ '; }

/* ---------- About ---------- */
.about { background: var(--paper-soft); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}
.about-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fbf9f4;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1.2deg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-frame img { flex: 1; min-height: 0; width: 100%; object-fit: cover; }
.about-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 400;
  color: var(--accent);
}
.about-caption {
  border-top: 2px solid var(--ink);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 8px;
  direction: ltr;
  background: var(--paper);
}
.about-text .section-title { margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 16px; }
.about-points { display: grid; gap: 10px; margin-top: 26px; }
.point {
  font-weight: 600;
  padding-inline-start: 28px;
  position: relative;
}
.point::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-weight: 900;
}

/* ---------- Contact ---------- */
.contact { padding-bottom: 130px; }
.contact-card {
  background: #fbf9f4;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  box-shadow: 8px 8px 0 var(--ink);
}
.contact-head { text-align: center; margin-bottom: 42px; }
.contact-direct { margin-top: 10px; font-weight: 600; }
.contact-direct a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  transition: color 0.2s;
}
.contact-direct a:hover { color: var(--accent); }
.lead-form { max-width: 720px; margin: 0 auto; display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-weight: 700; font-size: 0.95rem; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.form-field textarea { resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(85, 82, 74, 0.5); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 3px 3px 0 var(--accent);
  background: #fff;
}
.form-status { text-align: center; font-weight: 700; min-height: 1.5em; }
.form-status.ok { color: #1a7f37; }
.form-status.err { color: var(--accent-dark); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 40px;
  text-align: center;
}
.footer-inner { display: grid; gap: 14px; justify-items: center; }
.footer-logo { color: var(--paper); font-size: 2rem; }
.footer p { color: rgba(243, 239, 231, 0.7); }
.footer-links { display: flex; gap: 26px; }
.footer-links a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.footer-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.barcode-light {
  width: 220px;
  height: 36px;
  margin-top: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--paper) 0 2px, transparent 2px 5px,
    var(--paper) 5px 9px, transparent 9px 11px,
    var(--paper) 11px 12px, transparent 12px 16px,
    var(--paper) 16px 19px, transparent 19px 24px
  );
  opacity: 0.85;
}
.footer-copy { font-size: 0.72rem; letter-spacing: 0.2em; opacity: 0.55; direction: ltr; }

/* ---------- Process (מסלול מעקב) ---------- */
.track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.track::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  border-top: 2px dashed var(--line-soft);
}
.track-step { position: relative; padding-top: 38px; }
.track-dot {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  z-index: 1;
}
.track-step.done .track-dot { background: var(--accent); }
.track-code {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  direction: ltr;
  margin-bottom: 8px;
}
.track-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.track-step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fbf9f4;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--hard-shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent-dark);
}
.faq-item > p {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  border-top: 1.5px dashed var(--line-soft);
  padding-top: 16px;
  margin: 0 22px 20px;
  padding-inline: 0;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 18px;
  inset-inline-start: 18px;
  z-index: 1250;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-4px); box-shadow: 5px 8px 0 var(--ink); }
.wa-float:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .marquee-track { animation: none; }
  .pulse-dot { animation: none; }
  .barcode::after { animation: none; display: none; }
  html.lenis { scroll-behavior: auto; }
}

/* ---------- Privacy & consent (תיקון 13) ---------- */
.link-btn {
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: var(--accent-dark);
  background: none;
  border: none;
  border-bottom: 2px solid var(--accent);
  padding: 0;
  cursor: pointer;
}
.link-btn:hover { color: var(--accent); }
.link-btn-light { color: var(--paper); border-bottom-color: #7dd6ae; font-weight: 600; }
.link-btn-light:hover { color: #7dd6ae; }
.form-disclosure {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.consent-banner {
  position: fixed;
  bottom: 18px;
  inset-inline: 18px;
  z-index: 1300;
  max-width: 620px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: #fbf9f4;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 16px 20px;
}
.consent-banner[hidden] { display: none; }
.consent-text { font-size: 0.92rem; font-weight: 500; flex: 1 1 260px; }
.consent-actions { display: flex; gap: 10px; }
.privacy-modal {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
  background: #fbf9f4;
  color: var(--ink);
  max-width: 620px;
  width: calc(100% - 40px);
  padding: 0;
  margin: auto;
}
.privacy-modal::backdrop { background: rgba(20, 19, 16, 0.55); }
.privacy-inner { padding: 28px; }
.privacy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.privacy-head h3 { font-size: 1.5rem; }
.privacy-close {
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  width: 38px; height: 38px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.privacy-close:hover { background: var(--paper-soft); }
.privacy-body { max-height: 60vh; overflow-y: auto; display: grid; gap: 12px; font-size: 0.95rem; }
.privacy-body p { color: var(--ink-soft); }
.privacy-body strong { color: var(--ink); }
.privacy-body a { color: var(--accent-dark); font-weight: 600; }

/* ---------- Reveal helpers (GSAP sets final state) ---------- */
.reveal-up { opacity: 0; transform: translateY(34px); }
.no-js .reveal-up { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 76px 0; }
  .hero { padding-top: calc(var(--ticker-h) + var(--nav-h) + 44px); min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-side { max-width: 420px; margin: 0 auto; width: 100%; }
  .stamp { top: -40px; inset-inline-start: -10px; width: 104px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { border-inline-start: none; border-top: 2px solid var(--ink); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
  .stat:nth-child(even) { border-inline-start: 2px solid var(--ink); }
  .panel-grid { grid-template-columns: 1fr; gap: 30px; }
  .panel-visual { order: -1; max-width: 170px; }
  .visual-icon { font-size: 3rem; }
  .case-card { flex-basis: 86%; }
  .case-card, .case-card:nth-child(n) { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-frame { max-width: 320px; margin: 0 auto; }
  .nav-links { display: none; }
  .tabs-nav { flex-direction: column; }
  .tab-btn { border-inline-start: none; border-top: 2px solid var(--ink); text-align: start; }
  .tab-btn:first-child { border-top: none; }
  .tabs-body { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-strip { justify-content: center; text-align: center; }
  .track { grid-template-columns: 1fr; gap: 34px; }
  .track::before {
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: auto;
    border-top: none;
    border-right: 2px dashed var(--line-soft);
  }
  .track-step { padding-top: 0; padding-inline-start: 42px; }
  .wa-float { width: 52px; height: 52px; bottom: 14px; inset-inline-start: 14px; }
  .consent-banner { bottom: 80px; }
}
