/* ===== Base / reset ===== */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6,p { margin: 0; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; }
button { font: inherit; cursor: pointer; }

html { direction: rtl; }
body {
  direction: rtl;
  font-family: var(--font-body);
  color: var(--ink);
  background: #F6F6F6;   /* global page grey — white/navy sections set their own bg (Figma) */
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;   /* clip (not hidden) → doesn't break position:sticky descendants */
}

.site-main { width: 100%; max-width: 100%; overflow-x: clip; }

/* Scaled-stage helper: build at 1920 exact px, scale to viewport width.
   Each section owns its own stage. NO page-level transform (avoids nested scale §CCC).
   --h = the section's Figma height in px (unitless). RTL: anchor to right edge. */
.scaled {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: calc(100vw * var(--h) / 1920);
}
.scaled > .stage {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--canvas-w);
  height: calc(var(--h) * 1px);
  transform-origin: top right;
  transform: scale(calc(100vw / var(--canvas-w)));
}

/* Visually-hidden (a11y) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== Floating WhatsApp CTA (client-provided composed image) ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 95; width: 230px;
  transition: transform .2s ease;
}
.wa-float img { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 18px rgba(0,0,0,.22)); }
.wa-float:hover { transform: translateY(-3px); }
@media (max-width: 1024px) { .wa-float { width: 168px; bottom: 70px; right: 12px; } }
