/* ==========================================================================
   דפוס פרדי — Prototype Stylesheet · v2
   Brand palette extracted from logo SVGs (CMYK-inspired print house):
     #e22185  brand magenta  → single dominant accent
     #241e21  deep dark      → text + dark surfaces
     #009fe3  cyan           → tiny CMYK cue only
     #ffed00  yellow         → tiny CMYK cue only
   RTL-first. Mobile-first. Plain CSS, no frameworks.
   ========================================================================== */


/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --color-primary:    #e22185;       /* magenta — main accent */
  --color-primary-d:  #b8166b;       /* magenta darker (hover) */
  --color-secondary:  #241e21;       /* deep dark — text, dark sections */
  --color-accent:     #009fe3;       /* cyan — used sparingly */
  --color-accent-2:   #ffed00;       /* yellow — used sparingly */

  /* Surfaces */
  --color-bg:         #ffffff;
  --color-surface:    #f7f5f1;       /* warm paper */
  --color-surface-2:  #efebe5;
  --color-dark:       #14101200;     /* fallback (overridden below) */
  --color-dark:       #15101200;
  --color-dark:       #161113;       /* dark surface for footer */
  --color-darker:     #0e0a0c;

  /* Text */
  --color-text:       #1d181b;
  --color-muted:      #6c6770;
  --color-muted-2:    #a09aa0;

  /* Lines */
  --color-border:     #ece8e3;
  --color-border-2:   #1f1a1d;

  /* Shape */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Depth */
  --shadow:    0 1px 2px rgba(36,30,33,0.04), 0 12px 32px rgba(36,30,33,0.07);
  --shadow-lg: 0 20px 60px rgba(36,30,33,0.16);
  --shadow-card: 0 1px 0 rgba(36,30,33,0.04), 0 1px 3px rgba(36,30,33,0.06);

  /* Layout */
  --container: 1240px;
  --gutter:    24px;

  /* Type */
  --font-body:    "Heebo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display: "Rubik", "Heebo", system-ui, sans-serif;

  --t: 220ms cubic-bezier(.2, .7, .2, 1);
}


/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--color-primary); }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
p { margin: 0 0 1em; }
input, select, textarea { font: inherit; color: inherit; }

/* Focus — accessible + branded */
:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-primary) 65%, white);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -60px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  z-index: 100;
  transition: top var(--t);
}
.skip-link:focus { top: 16px; color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Utility */
.accent { color: var(--color-primary); }


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover {
  background: var(--color-primary-d);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(226,33,133,0.30);
}

.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
}
.btn--secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover {
  background: #1ebf5a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37,211,102,0.30);
}


/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.site-header__brand { flex-shrink: 0; }
.site-header__brand img { height: 26px; width: auto; }

.site-nav { margin-inline-end: auto; min-width: 0; }
.site-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
.site-nav li { flex-shrink: 0; }
.site-nav a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--color-secondary);
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.site-nav a:hover {
  background: var(--color-surface);
  color: var(--color-primary);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-secondary);
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t);
}
.header-phone span { white-space: nowrap; }
.header-phone:hover { color: var(--color-primary); }
.header-phone svg { color: var(--color-primary); }
.site-header__actions .btn { white-space: nowrap; flex-shrink: 0; }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 12px;
  position: relative;
  padding: 0;
}
.menu-toggle span {
  display: block;
  position: absolute;
  inset-inline: 11px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), top var(--t);
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 12px var(--gutter) 22px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block;
  padding: 14px 8px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a.btn { border-bottom: 0; margin-top: 12px; }
.mobile-nav.is-open { display: block; }


/* ---------- Sections (shared) ---------- */
.section { padding: 104px 0; }
.section--soft { background: var(--color-surface); }
.section--dark { background: var(--color-secondary); color: #efe9eb; }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head--start { text-align: start; margin-inline: 0; margin-bottom: 48px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  text-transform: uppercase;
  background: rgba(226,33,133,0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow--light { color: #ffd6e9; background: rgba(255,255,255,0.07); }

.section-head__title {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.section-head__title--light { color: #fff; }

.section-head__lead {
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: var(--color-muted);
  margin: 0;
}
.section-head__lead--light { color: #c8c0c5; }


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 96px;
  background:
    radial-gradient(70% 60% at 80% 5%, rgba(226,33,133,0.07), transparent 60%),
    radial-gradient(60% 60% at 5% 95%, rgba(0,159,227,0.05), transparent 70%),
    linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero__content { max-width: 620px; }
.hero__title {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 14px 0 22px;
}
.hero__lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--color-muted);
  margin: 0 0 36px;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 28px 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-strip strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: -0.01em;
}
.trust-strip span {
  font-size: 13.5px;
  color: var(--color-muted);
}

/* Hero visual — stacked paper layers */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  width: 100%;
  margin-inline-start: auto;
}
.paper {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}
.paper--3 {
  inset: 14% 24% -2% 6%;
  background: linear-gradient(135deg, #fff 0%, #f6f2ee 100%);
  transform: rotate(-6deg);
  opacity: 0.85;
}
.paper--2 {
  inset: 6% 12% 4% 14%;
  background: linear-gradient(135deg, #fff 0%, #f9f6f3 100%);
  transform: rotate(3deg);
}
.paper--1 {
  inset: 4% 4% 8% 22%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,159,227,0.10), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(255,237,0,0.16), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(226,33,133,0.10), transparent 55%),
    #fff;
  box-shadow: var(--shadow-lg);
}
.paper__symbol {
  width: 80%;
  max-width: 280px;
  margin: auto;
}
.paper__caption {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Crop marks frame around hero visual */
.crop {
  position: absolute;
  width: 26px; height: 26px;
  pointer-events: none;
  opacity: 0.55;
}
.crop::before, .crop::after {
  content: "";
  position: absolute;
  background: var(--color-secondary);
}
.crop::before { width: 26px; height: 1.5px; top: 50%; }
.crop::after  { width: 1.5px; height: 26px; left: 50%; }
.crop--tl { top: 0;  inset-inline-start: 0; }
.crop--tr { top: 0;  inset-inline-end: 0; }
.crop--bl { bottom: 0; inset-inline-start: 0; }
.crop--br { bottom: 0; inset-inline-end: 0; }

/* Floating CMYK dots */
.pop {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.pop--c { background: var(--color-accent);   width: 26px; height: 26px; top: 16%; inset-inline-start: -10px; }
.pop--m { background: var(--color-primary);  width: 18px; height: 18px; bottom: 24%; inset-inline-start: -4px; }
.pop--y { background: var(--color-accent-2); width: 30px; height: 30px; top: 8%;  inset-inline-end: -6px; border: 1px solid rgba(36,30,33,0.10); }


/* ==========================================================================
   SERVICES
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226,33,133,0.30);
  box-shadow: var(--shadow);
}

/* Top media area — placeholder for real product photography */
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(36,30,33,0.025) 0 6px, rgba(36,30,33,0.05) 6px 12px),
    linear-gradient(135deg, #fafaf8, #f1ede8);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-secondary);
}
.svc-icon {
  width: auto;
  height: 64px;
  opacity: 0.85;
}

/* Per-tone accent strip on media area (subtle CMYK story across the grid) */
.service-card__media::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--color-primary);
}
.service-card__media[data-tone="c"]::after { background: var(--color-accent); }
.service-card__media[data-tone="m"]::after { background: var(--color-primary); }
.service-card__media[data-tone="y"]::after { background: var(--color-accent-2); }
.service-card__media[data-tone="d"]::after { background: var(--color-secondary); }
.service-card__media[data-tone="c"] .svc-icon { color: var(--color-accent); }
.service-card__media[data-tone="m"] .svc-icon { color: var(--color-primary); }
.service-card__media[data-tone="y"] .svc-icon { color: #b39c00; }
.service-card__media[data-tone="d"] .svc-icon { color: var(--color-secondary); }

.service-card__body {
  padding: 22px 22px 24px;
}
.service-card h3 {
  font-size: 19px;
  margin: 0 0 6px;
}
.service-card p {
  color: var(--color-muted);
  font-size: 14.5px;
  margin: 0 0 14px;
  min-height: 42px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  transition: gap var(--t), color var(--t);
}
.link-cta span {
  display: inline-block;
  transform: scaleX(-1); /* RTL arrow flip */
  transition: transform var(--t);
}
.service-card:hover .link-cta { gap: 10px; }
.service-card:hover .link-cta span { transform: scaleX(-1) translateX(-2px); }


/* ==========================================================================
   PROCESS
   ========================================================================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.step::before {
  /* connector dot pointing to next step (decorative) */
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: -16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
}
.step:not(:last-child)::before { opacity: 1; }
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(226,33,133,0.30);
  box-shadow: var(--shadow);
}
.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin: 0 0 6px; }
.step p  { color: var(--color-muted); font-size: 14.5px; margin: 0; }


/* ==========================================================================
   WHY US (dark)
   ========================================================================== */
.why { position: relative; overflow: hidden; }
.why::before, .why::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  pointer-events: none;
}
.why::before { background: var(--color-primary); top: -140px; inset-inline-start: -140px; }
.why::after  { background: var(--color-accent);  bottom: -160px; inset-inline-end: -160px; }

.why__inner { position: relative; }
.why__list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why__list li {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.why__list li:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}
.why__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.why__list h3 { color: #fff; margin: 0 0 6px; font-size: 19px; }
.why__list p  { color: #c8c0c5; margin: 0; font-size: 14.5px; }


/* ==========================================================================
   UPLOAD / QUOTE
   ========================================================================== */
.upload__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.upload__tips {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.upload__tips li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--color-secondary);
}
.upload__tips span {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.upload__form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--color-secondary);
}
.field .req { color: var(--color-primary); margin-inline-start: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-muted-2);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(226,33,133,0.13);
}
.field textarea { resize: vertical; min-height: 110px; }

/* Dropzone */
.field--file .dropzone {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  transition: border-color var(--t), background var(--t);
}
.field--file .dropzone:hover,
.field--file .dropzone:focus-within {
  border-color: var(--color-primary);
  background: #fff;
}
.field--file input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
}
.dropzone__inner {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 16px;
  text-align: center;
}
.dropzone__inner svg { color: var(--color-primary); }
.dropzone__inner strong {
  font-size: 15px;
  color: var(--color-secondary);
  font-weight: 600;
}
.dropzone__inner span {
  font-size: 13px;
  color: var(--color-muted);
}

.dropzone__files {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.file-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--color-secondary);
}
.file-chip__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}
.file-chip__size {
  flex-shrink: 0;
  color: var(--color-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.file-chip__remove {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--t), color var(--t);
}
.file-chip__remove:hover,
.file-chip__remove:focus-visible {
  background: rgba(226,33,133,0.08);
  color: var(--color-primary);
}

.upload__small {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--color-muted);
}


/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact__list {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 20px;
}
.contact__list li { display: flex; align-items: center; gap: 14px; }
.contact__icon {
  width: 46px; height: 46px;
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact__list a { font-weight: 600; font-size: 17px; }
.contact__list li > div > span:not(.contact__label) { font-size: 15.5px; color: var(--color-secondary); font-weight: 500; }

.contact__cta {
  display: grid;
  gap: 12px;
}

/* Embedded Google Map + navigation actions */
.contact__map {
  grid-column: 1 / -1;
  position: relative;
  height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #f3efe8;
}
.contact__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact__map-label {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 18px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  max-width: calc(100% - 36px);
}
.contact__map-label strong { font-size: 15px; color: var(--color-secondary); }
.contact__map-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.contact__map-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}
.contact__map-action:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.contact__map-action--gmaps { background: var(--color-primary); }
.contact__map-action--waze  { background: #33ccff; color: #06283d; }


/* ==========================================================================
   FOOTER (dark)
   ========================================================================== */
.site-footer {
  background: var(--color-dark);
  color: #cfc7cc;
  padding-top: 64px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.site-footer__logo {
  height: 40px;
  filter: invert(1) brightness(1.4);
  margin-bottom: 16px;
}
.site-footer__brand p { color: #9c9398; max-width: 380px; font-size: 14.5px; }

.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer__links li { margin-bottom: 10px; font-size: 14.5px; }
.site-footer__links a:hover { color: var(--color-primary); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  font-size: 13px;
  color: #8b8388;
}
.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}


/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  z-index: 40;
  transition: transform var(--t);
}
.float-wa:hover { color: #fff; transform: translateY(-3px) scale(1.04); }


/* ---------- Sticky mobile contact bar ---------- */
.mobile-bar { display: none; }   /* shown only inside the mobile breakpoint */

.mobile-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  background: #fff;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.mobile-bar__btn svg { width: 22px; height: 22px; }
.mobile-bar__btn:active { background: var(--color-surface); }
.mobile-bar__btn--wa { background: #25d366; color: #fff; }
.mobile-bar__btn--wa:active { background: #1ebf5a; color: #fff; }
.mobile-bar__btn--primary { background: var(--color-primary); color: #fff; }
.mobile-bar__btn--primary:active { background: var(--color-primary-d); color: #fff; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Slightly narrow desktop — tighten nav and shrink CTA padding */
@media (max-width: 1200px) {
  .site-header__inner { gap: 14px; }
  .site-nav a { padding: 10px 10px; font-size: 14px; }
  .site-header__actions { gap: 8px; }
  .header-phone { padding: 8px; }
  .header-phone span { display: none; }
}

/* Narrower desktop — drop phone icon completely, shrink CTA */
@media (max-width: 1100px) {
  .site-nav a { padding: 9px 8px; font-size: 13.5px; }
  .site-header__actions .btn { padding: 9px 14px; font-size: 13px; }
  .header-phone { display: none; }
}

/* Tablet */
@media (max-width: 960px) {
  .section { padding: 80px 0; }

  .hero { padding: 64px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }

  .upload__inner { grid-template-columns: 1fr; gap: 32px; }
  .why__list { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }

  .process__steps { grid-template-columns: repeat(2, 1fr); }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .site-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .header-phone { display: none; }
  .site-header__actions .btn { display: none; }   /* CTA moves into mobile drawer */
  .site-nav { margin-inline-end: 0; }
  .site-header__inner { justify-content: space-between; }

  .hero__title { font-size: clamp(32px, 9vw, 44px); }
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .trust-strip strong { font-size: 22px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card p { min-height: 0; }

  .process__steps { grid-template-columns: 1fr; }
  .why__list { grid-template-columns: 1fr; }

  .upload__form { padding: 24px; }
  .grid-2 { grid-template-columns: 1fr; }

  .contact__list { padding: 24px; }
  .contact__map { height: 260px; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }

  /* Sticky mobile contact bar takes over from .float-wa on small screens */
  .float-wa { display: none; }
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    background: var(--color-border);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 24px rgba(36,30,33,0.08);
    z-index: 45;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  /* Pad body so the bar never overlaps content (incl. iPhone home indicator) */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 440px) {
  .services__grid { grid-template-columns: 1fr; }
  .float-wa { width: 50px; height: 50px; bottom: 16px; inset-inline-start: 16px; }
  .hero__cta .btn { width: 100%; }
}

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


/* ==========================================================================
   CAMPAIGN HERO (activated when ?name= URL param present)
   ========================================================================== */
.hero--campaign {
  background:
    radial-gradient(70% 60% at 80% 5%, rgba(226,33,133,0.12), transparent 60%),
    radial-gradient(60% 60% at 5% 95%, rgba(255,237,0,0.08), transparent 70%),
    linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}
.hero--campaign .eyebrow {
  background: var(--color-primary);
  color: #fff;
}
.hero__offers {
  display: grid;
  gap: 10px;
  margin: 4px 0 24px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(226,33,133,0.20);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.hero__offers li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  color: var(--color-secondary);
  font-weight: 500;
}
.hero__offers li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.hero__expiry {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  margin: 0 0 22px;
  padding: 8px 14px;
  background: rgba(226,33,133,0.08);
  border-radius: var(--radius-pill);
}


/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226,33,133,0.30);
  box-shadow: var(--shadow);
}
.review-card__stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}
.review-card__quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-secondary);
  font-weight: 500;
}
.review-card__name {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-primary);
}


/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.about__photo {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}
.about__story {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-secondary);
  margin: 0;
}
.about__story p { margin: 0 0 16px; }
.about__story p:last-child { margin-bottom: 0; }

.about__values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226,33,133,0.30);
  box-shadow: var(--shadow);
}
.value-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  background: rgba(226,33,133,0.10);
  color: var(--color-primary);
  border-radius: 12px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 17px;
  margin: 0 0 6px;
}
.value-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ==========================================================================
   FORM: honeypot, errors, loading, confirmation
   ========================================================================== */
.hp-field {
  position: absolute !important;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.upload__optional {
  font-weight: 400;
  font-size: 12.5px;
  color: var(--color-muted);
  margin-inline-start: 4px;
}
.field-err {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #c52020;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c52020;
  box-shadow: 0 0 0 4px rgba(197,32,32,0.12);
}
.field.is-invalid .field-err { display: block; }
.field-err:empty { display: none !important; }

.form-error-banner {
  margin: 4px 0 14px;
  padding: 12px 16px;
  background: #fde8e8;
  border: 1px solid #f3b8b8;
  color: #8d1414;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.btn__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn.is-loading .btn__spinner { display: inline-block; }
.btn__spinner[hidden] { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading .btn__label { opacity: 0.7; }
.btn.is-loading { pointer-events: none; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.form-confirm {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.form-confirm__icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.form-confirm h3 {
  font-size: 24px;
  margin: 0 0 12px;
}
.form-confirm__lead {
  color: var(--color-muted);
  margin: 0 0 18px;
}
.form-confirm__social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.form-confirm__social a {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--color-surface);
  color: var(--color-secondary);
  border-radius: 50%;
  transition: background var(--t), color var(--t), transform var(--t);
}
.form-confirm__social a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}


/* ==========================================================================
   MODAL (shared: privacy + cropper)
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 18, 0.55);
  backdrop-filter: blur(2px);
  animation: modal-fade-in 0.18s ease;
}
.modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px 30px;
  max-width: 560px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modal-slide-in 0.22s cubic-bezier(.2, .7, .2, 1);
}
.modal__panel--wide { max-width: 880px; }
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal__close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 40px; height: 40px;
  border: 0;
  background: var(--color-surface);
  color: var(--color-secondary);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.modal__close:hover {
  background: var(--color-primary);
  color: #fff;
}
.modal__panel h2 {
  font-size: 24px;
  margin: 0 0 18px;
  padding-inline-end: 40px;
}
.modal__section { margin-bottom: 18px; }
.modal__section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 6px;
}
.modal__section p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-secondary);
}
.modal__section a {
  color: var(--color-primary);
  font-weight: 600;
}
.modal__section a:hover {
  text-decoration: underline;
}
.modal__lead {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0 0 14px;
}
.modal__updated {
  margin: 20px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 12.5px;
  color: var(--color-muted);
  text-align: center;
}

/* Cropper modal warning (small image) */
.cropper-warning {
  padding: 10px 14px;
  margin-bottom: 14px;
  background: #fff8e5;
  border: 1px solid #f0d989;
  border-inline-start: 4px solid #c18a00;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: #6b4a00;
  line-height: 1.5;
}
.cropper-warning[hidden] { display: none; }

/* Cropper modal stage */
.cropper-stage {
  width: 100%;
  max-height: 65vh;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}
.cropper-stage img {
  display: block;
  max-width: 100%;
  max-height: 65vh;
}
.cropper-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}


/* ==========================================================================
   IMAGE SLOTS (production: img with fallback; dev: drag-and-drop edit zone)
   ========================================================================== */
.image-slot {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(36,30,33,0.04) 0 8px, rgba(36,30,33,0.06) 8px 16px),
    linear-gradient(135deg, #ece6e0, #fafaf8);
  overflow: hidden;
}
.image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Service-card variant: layered over the existing media area (SVG icon stays
   underneath as the placeholder when no image is saved). */
.service-card__media { overflow: hidden; }
.service-card__media .svc-icon { position: relative; z-index: 1; }
.image-slot--service {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 0;
  background: transparent;
}

/* Brand overlay — sits above the product photo so the visible "print" reads as ours */
.image-slot__brand {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.image-slot__brand img {
  position: absolute;
  width: 56%;
  max-width: 220px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 2px 6px rgba(36,30,33,0.10));
}
body.is-dev .service-card__media .image-slot {
  outline-width: 1px;
  outline-color: rgba(226,33,133,0.45);
}
body.is-dev .service-card__media .image-slot::before {
  font-size: 9.5px;
  padding: 2px 6px;
}
body.is-dev .service-card__media .image-slot::after {
  font-size: 12px;
}

/* Dev-mode affordances — only when body.is-dev is set by image-slots.js on localhost */
body.is-dev .image-slot {
  outline: 2px dashed rgba(226,33,133,0.55);
  outline-offset: -2px;
  cursor: copy;
  transition: outline-color var(--t), transform var(--t);
}
body.is-dev .image-slot::before {
  display: none;
}
body.is-dev .image-slot::after {
  content: "⬇ דחפו תמונה כאן";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.0);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transition: opacity var(--t), background var(--t);
  pointer-events: none;
}
body.is-dev .image-slot:hover::after,
body.is-dev .image-slot.is-drag-over::after {
  opacity: 1;
  background: rgba(255,255,255,0.85);
}
body.is-dev .image-slot.is-drag-over {
  outline-color: var(--color-primary);
  outline-width: 3px;
}

/* Per-slot clear button — only when a saved image is present (dev mode) */
.image-slot__clear {
  position: absolute;
  top: 6px;
  inset-inline-end: 6px;
  z-index: 4;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 30, 33, 0.85);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.30);
  transition: background var(--t), transform var(--t);
}
.image-slot__clear:hover {
  background: #c52020;
  transform: scale(1.08);
}
body.is-dev .image-slot.has-saved .image-slot__clear {
  display: inline-flex;
}

/* Dev control buttons (localhost only) */
.dev-controls {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dev-controls[hidden] { display: none; }
.dev-btn {
  background: var(--color-secondary);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(36,30,33,0.20);
  transition: background var(--t), transform var(--t);
}
.dev-btn:hover { background: #000; transform: translateY(-1px); }
.dev-btn--ghost { background: #fff; color: var(--color-secondary); border: 1px solid var(--color-border); box-shadow: var(--shadow-card); }
.dev-btn--ghost:hover { background: var(--color-surface); color: var(--color-primary); }

/* ==========================================================================
   TOAST (transient notifications, used by image-slots.js)
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  padding: 14px 20px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toast-up 0.22s cubic-bezier(.2, .7, .2, 1);
}
.toast[hidden] { display: none; }
.toast--error { background: #c52020; }
@keyframes toast-up {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ==========================================================================
   FOOTER — privacy link button
   ========================================================================== */
.site-footer__link {
  background: transparent;
  border: 0;
  color: #8b8388;
  font: inherit;
  font-size: 13px;
  padding: 0;
  cursor: pointer;
  transition: color var(--t);
}
.site-footer__link:hover { color: var(--color-primary); }


/* ==========================================================================
   RESPONSIVE additions (for new components)
   ========================================================================== */
@media (max-width: 960px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 18px; }
  .about__intro { grid-template-columns: 1fr; gap: 28px; }
  .about__values { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 720px) {
  .about__values { grid-template-columns: 1fr; }
  .modal__panel { padding: 28px 22px 24px; }
  .modal__panel h2 { font-size: 21px; }
  .dev-controls { bottom: 80px; inset-inline-end: 12px; }
  .hero__offers { padding: 16px 18px; }
}
