/* =====================================================================
   לידור דנינו — סוכנות לביטוח ופיננסים
   מערכת עיצוב: "יוקרתי ורגוע" — כחול־עמוק, זהב חם, הרבה אוויר.
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* צבע */
  --navy-900: #0b1f3a;
  --navy-800: #102a4c;
  --navy-700: #16305a;
  --navy-500: #25457a;
  --gold-300: #e3c67f;   /* זהב על כחול */
  --gold-500: #c9a45c;   /* זהב דקורטיבי */
  --gold-700: #8a6626;   /* זהב לטקסט על לבן (AA) */
  --paper:    #f6f3ec;
  --paper-2:  #efeadf;
  --white:    #ffffff;
  --ink:      #152238;
  --muted:    #4f5b6b;
  --line:     #e3ded3;
  --line-2:   #cfc7b6;
  --success:  #1f6f4f;
  --error:    #a83232;
  --whatsapp: #128c7e;

  --bg: var(--white);
  --fg: var(--ink);

  /* טיפוגרפיה */
  --font-display: "Frank Ruhl Libre", "David", "Times New Roman", serif;
  --font-body: "Assistant", "Segoe UI", "Arial Hebrew", Arial, sans-serif;
  --fs-0: clamp(0.9rem, 0.86rem + 0.2vw, 1rem);
  --fs-1: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  --fs-2: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-3: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --fs-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);
  --fs-5: clamp(2.5rem, 1.8rem + 3.6vw, 4.6rem);

  /* ריווח ולייאאוט */
  --container: 1120px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 10vw, 8rem);
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -24px rgba(11, 31, 58, 0.28);
  --shadow-sm: 0 10px 30px -14px rgba(11, 31, 58, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  color-scheme: light;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-1);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--gold-700); text-underline-offset: 0.18em; }
a:hover { color: var(--navy-700); }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.15; text-wrap: balance; color: var(--navy-900); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
::selection { background: var(--gold-300); color: var(--navy-900); }

:focus { outline: none; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible { outline-color: var(--gold-300); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 0.75rem; right: 0.75rem; z-index: 200;
  transform: translateY(-200%);
  background: var(--navy-900); color: var(--white);
  padding: 0.7rem 1.1rem; border-radius: 999px; font-weight: 700; text-decoration: none;
}
.skip-link:focus-visible { transform: none; outline-color: var(--gold-300); }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }

.section { padding-block: var(--section); position: relative; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-900); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: var(--fs-4); font-weight: 900; }
.section-head p { margin-top: 0.9rem; color: var(--muted); font-size: var(--fs-2); line-height: 1.5; }
.section--navy .section-head p { color: rgba(255, 255, 255, 0.78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 2px; background: var(--gold-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--gold-300); }
.section--navy .eyebrow::before { background: var(--gold-300); }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 3.25rem; padding: 0.8rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 1.05rem; line-height: 1.2; text-decoration: none;
  border: 2px solid transparent; transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.25em; height: 1.25em; flex: none; }
.btn--primary { background: var(--navy-900); color: var(--white); box-shadow: 0 14px 30px -12px rgba(11, 31, 58, 0.55); }
.btn--primary:hover { background: var(--navy-700); color: var(--white); }
.btn--gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 14px 30px -12px rgba(201, 164, 92, 0.6); }
.btn--gold:hover { background: var(--gold-300); color: var(--navy-900); }
.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--navy-900); color: var(--navy-900); }
.on-dark .btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.on-dark .btn--ghost:hover { border-color: var(--white); color: var(--white); }
.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: #0f7a6d; color: var(--white); }
.btn--block { width: 100%; }

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 243, 236, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, 0.9); border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(11, 31, 58, 0.35); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--navy-900); }
.brand__mark { width: 2.4rem; height: 2.4rem; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; }
.brand__tag { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.6rem); }
.nav a:not(.btn) { color: var(--navy-900); text-decoration: none; font-weight: 600; padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="true"] { border-color: var(--gold-500); }
.nav .btn { min-height: 2.75rem; padding-block: 0.5rem; font-size: 0.98rem; }

.nav-toggle {
  display: none; width: 2.9rem; height: 2.9rem; border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--white); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 1.4rem; height: 1.4rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--gutter) 1.25rem; box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a:not(.btn) { padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 0.75rem; }
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 6.5rem);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero h1 { font-size: var(--fs-5); font-weight: 900; letter-spacing: -0.01em; }
.hero h1 em { font-style: normal; color: var(--gold-700); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0.05em; height: 0.28em; z-index: -1;
  background: linear-gradient(90deg, rgba(201, 164, 92, 0.32), rgba(201, 164, 92, 0.12));
  border-radius: 4px;
}
.hero__lead { margin-top: 1.4rem; max-width: 34rem; font-size: var(--fs-2); line-height: 1.55; color: var(--muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__note { margin-top: 1rem; font-size: 0.95rem; color: var(--muted); }

.trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.trust li { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; color: var(--navy-900); }
.trust svg { width: 1.35rem; height: 1.35rem; color: var(--gold-700); flex: none; }

.portrait { position: relative; justify-self: center; width: min(100%, 24rem); aspect-ratio: 4 / 5; }
.portrait__frame {
  position: absolute; inset: 0; border-radius: 28px 28px 120px 28px; overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-2);
}
.portrait__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.portrait__outline {
  position: absolute; inset: 0; border: 2px solid var(--gold-500); border-radius: 28px 28px 120px 28px;
  transform: translate(-14px, 14px); pointer-events: none;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .portrait { width: min(100%, 20rem); order: -1; }
}

/* ---------- 6. Services ---------- */
.services { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.1rem; }
.service {
  grid-column: span 2; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.service:nth-child(1), .service:nth-child(2) { grid-column: span 3; }
.service__icon {
  width: 3.2rem; height: 3.2rem; border-radius: 14px; display: grid; place-items: center;
  background: var(--paper); color: var(--navy-900);
}
.service__icon svg { width: 1.6rem; height: 1.6rem; }
.service h3 { font-size: var(--fs-2); }
.service p { color: var(--muted); font-size: var(--fs-0); line-height: 1.6; }
.service--cta { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); justify-content: space-between; }
.service--cta h3 { color: var(--white); }
.service--cta p { color: rgba(255, 255, 255, 0.78); }
.service--cta .btn { align-self: flex-start; margin-top: 0.5rem; }
@media (max-width: 860px) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service, .service:nth-child(1), .service:nth-child(2) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
}

/* ---------- 7. About ---------- */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.about__aside { position: sticky; top: 6rem; }
.about__aside h2 { font-size: var(--fs-4); font-weight: 900; }
.about__aside p { margin-top: 0.8rem; color: var(--muted); }
.about__photo { margin-top: 1.6rem; width: min(100%, 16rem); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.about__body { font-size: var(--fs-2); line-height: 1.65; }
.about__body p + p { margin-top: 1.2rem; }
.about__body .lede { font-family: var(--font-display); font-size: var(--fs-3); line-height: 1.35; color: var(--navy-900); }
.about__body .lede::before { content: "״"; color: var(--gold-500); }
.about__sign { margin-top: 1.8rem; display: flex; align-items: center; gap: 0.9rem; font-size: var(--fs-0); color: var(--muted); }
.about__sign::before { content: ""; width: 3rem; height: 2px; background: var(--gold-500); }
.about__sign strong { color: var(--navy-900); }
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__aside { position: static; }
}

/* ---------- 8. Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; counter-reset: step; }
.step {
  position: relative; padding: 1.8rem 1.6rem 1.7rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; line-height: 1;
  color: var(--gold-300); display: block; margin-bottom: 0.9rem; font-variant-numeric: tabular-nums;
}
.step h3 { font-size: var(--fs-2); color: var(--white); }
.step p { margin-top: 0.5rem; color: rgba(255, 255, 255, 0.78); font-size: var(--fs-0); line-height: 1.6; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- 9. Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.review blockquote { margin: 0; font-size: var(--fs-1); line-height: 1.65; color: var(--ink); }
.review blockquote::before { content: "״"; color: var(--gold-500); font-family: var(--font-display); font-size: 1.4em; line-height: 0; margin-inline-end: 0.2rem; }
.review footer { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review__avatar {
  width: 2.8rem; height: 2.8rem; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--navy-900); background: var(--paper-2);
}
.review cite { font-style: normal; font-weight: 700; color: var(--navy-900); display: block; line-height: 1.2; }
.stars { display: inline-flex; gap: 0.1rem; color: var(--gold-500); }
.stars svg { width: 0.95rem; height: 0.95rem; }
@media (max-width: 760px) {
  .reviews { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1rem; padding-bottom: 0.75rem; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: thin; }
  .review { flex: 0 0 min(84vw, 22rem); scroll-snap-align: start; }
}

/* ---------- 10. FAQ ---------- */
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 0.25rem; font-family: var(--font-display); font-size: var(--fs-2); font-weight: 700; color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 1.4rem; height: 1.4rem; flex: none; color: var(--gold-700); transition: transform 0.3s var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .answer { padding: 0 0.25rem 1.4rem; color: var(--muted); max-width: 42rem; line-height: 1.7; }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; } }

/* ---------- 11. Contact / form ---------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact__info h2 { font-size: var(--fs-4); font-weight: 900; }
.contact__info > p { margin-top: 1rem; color: rgba(255, 255, 255, 0.8); font-size: var(--fs-2); line-height: 1.5; max-width: 30rem; }
.contact__ways { margin-top: 2rem; display: grid; gap: 0.9rem; }
.contact__ways a {
  display: flex; align-items: center; gap: 0.9rem; color: var(--white); text-decoration: none;
  padding: 0.9rem 1rem; border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05);
  transition: background 0.25s, border-color 0.25s;
}
.contact__ways a:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); color: var(--white); }
.contact__ways svg { width: 1.5rem; height: 1.5rem; color: var(--gold-300); flex: none; }
.contact__ways span { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.contact__ways strong { display: block; font-size: 1.1rem; direction: ltr; text-align: right; font-variant-numeric: tabular-nums; }

.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.form-card h3 { font-size: var(--fs-3); }
.form-card > p { color: var(--muted); margin-top: 0.4rem; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.95rem; color: var(--navy-900); }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  min-height: 3.1rem; padding: 0.7rem 0.95rem; border-radius: 12px; border: 1.5px solid var(--line-2);
  background: var(--white); width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; border-color: var(--navy-900); box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.35); }
.field input[dir="ltr"] { text-align: right; }
.field select { appearance: none; -webkit-appearance: none; padding-inline-start: 2.4rem; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1f3a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat left 0.9rem center / 1.1rem; }
.field textarea { min-height: 6rem; resize: vertical; }
.field .hint { font-size: 0.85rem; color: var(--error); min-height: 1.2em; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--error); }
.form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); }
.form-consent input { width: 1.2rem; height: 1.2rem; margin-top: 0.2rem; accent-color: var(--navy-900); flex: none; }
.form-actions { grid-column: 1 / -1; margin-top: 0.3rem; display: grid; gap: 0.75rem; }
.form-actions .btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }
.form-msg { grid-column: 1 / -1; border-radius: 12px; padding: 0.9rem 1rem; font-weight: 600; }
.form-msg[hidden] { display: none; }
.form-msg--ok { background: #e8f4ee; color: var(--success); }
.form-msg--err { background: #fbecec; color: var(--error); }
.hp { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; opacity: 0; pointer-events: none; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- 12. Footer ---------- */
.site-footer { background: var(--navy-800); color: rgba(255, 255, 255, 0.78); padding-block: 3rem 8rem; font-size: 0.95rem; }
.site-footer .container { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.6rem; font-family: var(--font-body); }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--gold-300); text-decoration: underline; }
.site-footer ul { display: grid; gap: 0.4rem; }
.site-footer .brand { color: var(--white); }
.site-footer .brand__tag { color: rgba(255, 255, 255, 0.6); }
.site-footer__about { margin-top: 0.9rem; max-width: 22rem; }
.site-footer .legal { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
@media (min-width: 861px) { .site-footer { padding-bottom: 3rem; } }
@media (max-width: 760px) { .site-footer .container { grid-template-columns: 1fr; } }

/* ---------- 13. Floating actions ---------- */
.fab-whatsapp {
  position: fixed; bottom: 1.4rem; left: 1.4rem; z-index: 90;
  width: 3.6rem; height: 3.6rem; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: var(--white); box-shadow: 0 16px 30px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.06); color: var(--white); }
.fab-whatsapp svg { width: 1.9rem; height: 1.9rem; }

.sticky-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 95; display: none;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 0.5rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom));
}
.sticky-bar ul { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 0.5rem; }
.sticky-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  min-height: 3.2rem; border-radius: 12px; text-decoration: none; font-size: 0.8rem; font-weight: 700; color: var(--navy-900);
}
.sticky-bar svg { width: 1.35rem; height: 1.35rem; }
.sticky-bar .is-primary { background: var(--navy-900); color: var(--white); flex-direction: row; gap: 0.5rem; font-size: 0.95rem; }
@media (max-width: 860px) {
  .sticky-bar { display: block; }
  .fab-whatsapp { display: none; }
  .a11y { bottom: calc(5rem + env(safe-area-inset-bottom)); }
}

/* ---------- 14. Accessibility widget ---------- */
.a11y { position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 96; }
.a11y__btn {
  width: 3.4rem; height: 3.4rem; border-radius: 50%; border: 2px solid var(--white);
  background: var(--navy-900); color: var(--white); display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.a11y__btn svg { width: 1.7rem; height: 1.7rem; }
.a11y__panel {
  position: absolute; bottom: calc(100% + 0.75rem); right: 0; width: min(20rem, calc(100vw - 2rem));
  background: var(--white); color: var(--ink); border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 1rem;
}
.a11y__panel[hidden] { display: none; }
.a11y__panel h2 { font-size: 1.1rem; font-family: var(--font-body); margin-bottom: 0.6rem; }
.a11y__panel ul { display: grid; gap: 0.4rem; }
.a11y__panel button, .a11y__panel a {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 0.6rem 0.75rem; border-radius: 10px; border: 1px solid var(--line); background: var(--paper);
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; text-align: right;
}
.a11y__panel button[aria-pressed="true"] { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.a11y__panel .a11y__reset { justify-content: center; background: transparent; color: var(--error); border-style: dashed; }
.a11y__panel svg { width: 1.2rem; height: 1.2rem; flex: none; }

/* מצבי נגישות */
html.a11y-font-1 { font-size: 112.5%; }
html.a11y-font-2 { font-size: 125%; }
html.a11y-spacing body { line-height: 2; letter-spacing: 0.03em; word-spacing: 0.1em; }
html.a11y-readable body, html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3, html.a11y-readable h4 { font-family: Arial, "Segoe UI", sans-serif; }
html.a11y-links a { text-decoration: underline !important; text-decoration-thickness: 2px; }
html.a11y-motion *, html.a11y-motion *::before, html.a11y-motion *::after { animation: none !important; transition: none !important; }
html.a11y-motion .hero__canvas { display: none; }
html.a11y-contrast {
  --navy-900: #000000; --navy-800: #000000; --navy-700: #000000; --navy-500: #000000;
  --gold-300: #ffe27a; --gold-500: #ffd24d; --gold-700: #4a3600;
  --paper: #ffffff; --paper-2: #f1f1f1; --ink: #000000; --muted: #1a1a1a; --line: #000000; --line-2: #000000;
}
html.a11y-contrast .hero__canvas { display: none; }
html.a11y-contrast .section--navy, html.a11y-contrast .site-footer, html.a11y-contrast .service--cta { color: #ffffff; }
html.a11y-contrast .site-header { background: #ffffff; }

/* ---------- 15. Reveal (מופיע רק כשיש JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- 16. עמודים משניים (נגישות, פרטיות, תודה) ---------- */
.page { padding-block: clamp(3rem, 7vw, 5rem) var(--section); }
.page .prose { max-width: 44rem; }
.page .prose h1 { font-size: var(--fs-4); font-weight: 900; margin-bottom: 0.5rem; }
.page .prose .updated { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }
.page .prose h2 { font-size: var(--fs-3); margin-top: 2.2rem; margin-bottom: 0.6rem; }
.page .prose p + p { margin-top: 0.9rem; }
.page .prose ul { list-style: disc; padding-inline-start: 1.4rem; margin-top: 0.6rem; display: grid; gap: 0.3rem; }
.page .prose .callout { margin-top: 2.5rem; padding: 1.2rem 1.4rem; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); }
.thanks { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.thanks .card { background: var(--white); border-radius: var(--radius); padding: clamp(2rem, 6vw, 3.5rem); box-shadow: var(--shadow); max-width: 34rem; }
.thanks svg { width: 4rem; height: 4rem; color: var(--success); margin-inline: auto; margin-bottom: 1rem; }
.thanks h1 { font-size: var(--fs-4); }
.thanks p { margin-top: 0.8rem; color: var(--muted); font-size: var(--fs-2); }
.thanks .btn { margin-top: 1.6rem; }

/* ---------- 17. Print ---------- */
@media print {
  .site-header, .fab-whatsapp, .sticky-bar, .a11y, .hero__canvas { display: none !important; }
  body { background: #fff; color: #000; }
  .section--navy { background: #fff; color: #000; }
}
