
    :root {
      --primary: #2563eb;
      --primary-dark: #000000;
      --hero-bg: #0f172a;
      --bg: #f3f6fb;
      --card-bg: #ffffff;
      --text-main: #0f172a;
      --text-muted: #6b7280;
      --border: #e2e8f0;
      --radius-xl: 24px;
      --radius-lg: 18px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--bg);
      color: var(--text-main);
      direction: rtl;
    }
    a { color: inherit; text-decoration: none; }
    .top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
}

    /* קישור דילוג לתוכן עיקרי */
    .skip-link {
      position: absolute;
      top: 8px;
      right: 16px;
      background: #111827;
      color: #f9fafb;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.85rem;
      transform: translateY(-150%);
      transition: transform 0.15s ease;
      z-index: 1000;
    }
    .skip-link:focus {
      transform: translateY(0);
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    /* מצבי פוקוס כלליים לנגישות */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .page-shell {
      max-width: 1200px;
      margin: 16px auto;
      padding: 0 16px 24px;
      background: #f9fbff;
      border-radius: 24px;
      box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
      border: 1px solid rgba(226, 232, 240, 0.9);
    }
    header {
      top: 0;
      z-index: 40;
      background: rgba(249, 251, 255, 0.96);
      backdrop-filter: blur(16px);
      border-radius: 24px 24px 0 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 24px;
      gap: 16px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
    }
    .brand-icon img {
      max-height: 48px;
      width: auto;
      display: block;
    }
    .brand-text { display: flex; flex-direction: column; gap: 2px; }
    .brand-name { font-weight: 800; font-size: 1.1rem; }
    .brand-sub { font-size: 0.8rem; color: var(--text-muted); }
    nav { display: flex; gap: 18px; font-size: 0.9rem; }
    nav a { padding: 6px 10px; border-radius: 999px; color: #111827; }
    nav a:hover { background: #e5edff; color: var(--primary-dark); }
    .nav-cta { margin-right: auto; }
    .btn-outline {
      padding: 8px 18px;
      border-radius: 999px;
      border: 1px solid var(--primary);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: #fff;
    }
    .btn-outline:hover { background: #eff4ff; }

.hero {
  margin: 12px 12px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
     /* 
    .hero-bg {
      position: absolute;
      inset: 0;
background-image: url("p1.jpg");
      background-size: cover;
      background-position: center;
      transform: scale(0.98);
    } */
    /* אוברליי שחור 0.3 לשמירה על ניגודיות */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

    .hero-content {
      position: relative;
      padding: 36px 32px;
      color: #e5edff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }
    .hero-kicker { font-size: 0.9rem; opacity: 0.9; }
    .hero-title { font-size: 2.4rem; line-height: 1.2; margin: 0; font-weight: 800; }
    .hero-title span { color: #bfdbfe; }
    .hero-sub { margin: 0; font-size: 0.98rem; max-width: 480px; color: #e5edff; }
    .hero-badges { display:flex;flex-wrap:wrap;gap:10px;font-size:0.85rem; }
    .hero-badge {
      display:inline-flex;align-items:center;gap:6px;
      padding:6px 12px;border-radius:999px;
      background:rgba(15,23,42,0.6);border:1px solid rgba(191,219,254,0.4);
    }
    .hero-dot { width:8px;height:8px;border-radius:999px;background:#22c55e; }
    .hero-form-row { display:flex;flex-wrap:wrap;gap:8px;margin-top:8px;align-items:center; }
    .hero-input {
      min-width:220px;padding:10px 12px;border-radius:999px;border:none;
      font-family:inherit;font-size:0.9rem;outline:none;
    }
    .btn-primary {
      border:none;border-radius:999px;padding:11px 24px;
      font-size:0.95rem;font-weight:600;background:#f9fafb;
      color:var(--primary-dark);cursor:pointer;
      display:inline-flex;align-items:center;gap:8px;
    }
    .btn-primary:hover { background:#e5edff; }
    .hero-side { position:relative;padding:32px 28px;color:#e5edff;display:flex;align-items:flex-end; }
    .hero-side-card {
      background:rgba(15,23,42,0.82);border-radius:20px;padding:16px 18px;width:100%;
      border:1px solid rgba(148,163,184,0.6);backdrop-filter:blur(10px);
    }
    .hero-side-title { margin:0 0 4px;font-size:1rem;font-weight:700; }
    .hero-side-sub { margin:0 0 12px;font-size:0.85rem;color:#cbd5f5; }
    .hero-side-stats { display:flex;gap:12px;flex-wrap:wrap;margin-bottom:6px; }
    .hero-mini-stat {
      flex:1 1 90px;border-radius:16px;padding:10px 12px;
      background:rgba(15,23,42,0.9);border:1px solid rgba(37,99,235,0.55);
      font-size:0.8rem;
    }
    .hero-mini-stat strong { display:block;font-size:1rem;margin-bottom:2px; }
    .hero-side-note { font-size:0.78rem;color:#cbd5f5; }
.hero-content,
.hero-side {
  position: relative;
  z-index: 2;
}

    section { padding:40px 32px 16px; }
    .section-header { text-align:center;margin-bottom:24px; }
    .section-title { font-size:1.8rem;margin:0 0 4px;font-weight:800; }
    .section-sub { margin:0;font-size:0.95rem;color:var(--text-muted); }

    .stats-row { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-bottom:8px; }
    .stat-card {
      background:var(--card-bg);border-radius:var(--radius-lg);padding:16px 14px;
      text-align:center;border:1px solid var(--border);box-shadow:0 10px 30px rgba(15,23,42,0.04);
      font-size:0.9rem;
    }
    .stat-icon {
      width:40px;height:40px;border-radius:16px;margin:0 auto 10px;
      display:flex;align-items:center;justify-content:center;
      background:#eff4ff;color:var(--primary);font-size:20px;
    }
    .stat-value { font-size:1.4rem;font-weight:800;margin-bottom:2px; }
    .stat-label { color:var(--text-muted);font-size:0.9rem; }

    .services-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px; }
    .service-card {
      background:var(--card-bg);border-radius:22px;padding:18px 16px;
      border:1px solid var(--border);box-shadow:0 12px 35px rgba(15,23,42,0.04);
      font-size:0.9rem;
    }
    .service-icon {
      width:38px;height:38px;border-radius:14px;display:flex;
      align-items:center;justify-content:center;margin-bottom:10px;
      color:#fff;font-size:18px;
    }
    .service-card h3 { margin:0 0 6px;font-size:1rem; }
    .service-card p { margin:0;color:var(--text-muted);font-size:0.88rem;line-height:1.5; }

    .gallery-grid { display:grid;grid-template-columns:2fr 3fr;gap:18px;align-items:stretch; }
    .gallery-grid-inner { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px; }
    .gallery-item {
      border-radius:22px;overflow:hidden;background:#cbd5f5;position:relative;
      box-shadow:0 14px 40px rgba(15,23,42,0.16);
    }
    .gallery-item img { width:100%;height:100%;display:block;object-fit:cover; }
    .gallery-caption {
      position:absolute;bottom:12px;right:16px;padding:4px 10px;border-radius:999px;
      background:rgba(15,23,42,0.75);color:#fff;font-size:0.8rem;
    }

    .testimonials-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .testimonial-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 16px;
      border: 1px solid var(--border);
      font-size: 0.9rem;
      box-shadow: 0 10px 30px rgba(15,23,42,0.04);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .testimonial-name { font-weight:700;margin-bottom:4px; }
    .stars { color:#fbbf24;font-size:0.85rem;margin-bottom:8px; }
    .testimonial-text { margin:0;color:var(--text-muted);font-size:0.87rem; }

    .contact-layout { display:grid;grid-template-columns:minmax(0,7fr) minmax(0,5fr);gap:24px;align-items:flex-start; }
    .contact-card {
      background:var(--card-bg);border-radius:22px;padding:20px 18px;
      border:1px solid var(--border);box-shadow:0 12px 35px rgba(15,23,42,0.04);
    }
    form { display:flex;flex-direction:column;gap:12px; }
    .field-label { font-size:0.9rem;margin-bottom:4px; }
    .field-required::after { content:" *";color:#ef4444; }
    .field {
      width:100%;padding:10px 12px;border-radius:12px;
      border:1px solid var(--border);font-family:inherit;font-size:0.9rem;
    }
    .field:focus { outline:none;border-color:var(--primary);box-shadow:0 0 0 1px rgba(37,99,235,0.35); }
    textarea.field { min-height:110px;resize:vertical; }
    .two-col { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px; }
    @media (max-width:500px) { .two-col { grid-template-columns:1fr; } }

    .btn-submit {
      margin-top:4px;align-self:flex-start;background:var(--primary);
      color:#fff;border-radius:999px;padding:10px 22px;border:none;
      font-size:0.95rem;font-weight:600;cursor:pointer;
    }
    .btn-submit:hover { background:var(--primary-dark); }
    .contact-info-list { display:flex;flex-direction:column;gap:12px; }
    .info-item {
      display:flex;align-items:center;gap:10px;padding:10px 12px;
      border-radius:16px;background:#f3f6ff;border:1px solid #e0e7ff;font-size:0.9rem;
    }
    .info-icon {
      width:34px;height:34px;border-radius:12px;display:flex;
      align-items:center;justify-content:center;background:#2563eb;color:#fff;font-size:18px;
    }
    .info-label { font-weight:600;font-size:0.9rem; }
    .info-text { color:var(--text-muted);font-size:0.87rem; }

    .trust-note {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 16px;
      background: #f9fafb;
      border: 1px solid var(--border);
      color: #111827;
      font-size: 0.88rem;
      line-height: 1.55;
    }
    .trust-note strong { display:block; margin-bottom: 4px; }

    footer {
      margin-top:24px;border-radius:0 0 24px 24px;
      background:#020617;color:#e5e7eb;padding:26px 32px 18px;
      font-size:0.85rem;
    }
    .footer-cols {
      display:grid;
      grid-template-columns:minmax(0,4fr) minmax(0,4fr) minmax(0,4fr);
      gap:24px;margin-bottom:20px;
    }
    .footer-title { font-weight:700;margin-bottom:8px; }
    .footer-links { list-style:none;padding:0;margin:0;display:grid;gap:4px; }
    .footer-links a { color:#cbd5f5; }
    .footer-links a:hover { color:#ffffff; }
    .footer-bottom {
      border-top:1px solid rgba(148,163,184,0.5);
      padding-top:10px;color:#9ca3af;
      display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
    }
      /* Disclosure section - styled like the rest of the site */
.disclosure-wrap { text-align: center; }

.disclosure-grid{
  max-width: 980px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 14px;
}

.disclosure-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 16px;
  box-shadow: 0 12px 35px rgba(15,23,42,0.04);
  text-align: center;
}

.disclosure-card h3{
  margin: 10px 0 6px;
  font-size: 1rem;
  font-weight: 800;
}

.disclosure-card p{
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.disclosure-icon{
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff4ff;
  color: var(--primary);
  font-size: 18px;
}

.disclosure-note{
  max-width: 980px;
  margin: 14px auto 0;
  padding: 0 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 760px){
  .disclosure-grid{ grid-template-columns: 1fr; }
}


    @media (max-width: 960px) {
      .hero { grid-template-columns:minmax(0,1fr); }
      .hero-side { padding-top:0; }
      .stats-row,.services-grid,.testimonials-row { grid-template-columns:repeat(2,minmax(0,1fr)); }
      .gallery-grid { grid-template-columns:minmax(0,1fr); }
      .contact-layout { grid-template-columns:minmax(0,1fr); }
      .footer-cols { grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
    }
    @media (max-width: 720px) {
      .header-inner { flex-wrap:wrap;padding-inline:16px; }
      nav { order:3;width:100%;justify-content:center;border-top:1px solid #e5e7eb;padding-top:8px; }
      .nav-cta { margin-right:0; }
      .hero-content { padding-inline:22px; }
      section { padding-inline:20px; }
      .stats-row,.services-grid,.testimonials-row { grid-template-columns:minmax(0,1fr); }
      .gallery-grid-inner { grid-template-columns:minmax(0,1fr); }
      .footer-cols { grid-template-columns:minmax(0,1fr); }
    }




:root{
  --acc-bg: #ffffff;
  --acc-fg: #111;
  --acc-accent: #0066cc;
}

.acc-widget{position:fixed;right:12px;bottom:12px;z-index:99999;font-family:Arial,Helvetica,sans-serif}
.acc-toggle{background:#0066cc;color:#fff;border-radius:6px;padding:8px 10px;border:none;cursor:pointer;box-shadow:0 2px 6px rgba(0,0,0,.2)}
.acc-panel{display:none;width:260px;background:rgba(255,255,255,.98);border-radius:8px;padding:10px;margin-bottom:8px;box-shadow:0 6px 20px rgba(0,0,0,.15)}
.acc-panel.open{display:block}
.acc-panel h4{margin:0 0 8px;font-size:14px}
.acc-row{display:flex;gap:8px;flex-wrap:wrap}
.acc-btn{flex:1;padding:7px;border-radius:6px;border:1px solid #ddd;background:#f7f7f7;cursor:pointer;font-size:13px}
.acc-btn.active{outline:2px solid var(--acc-accent)}
.acc-small{font-size:12px;padding:6px}
.acc-panel, .acc-toggle {backdrop-filter: blur(3px)}

@media (max-width:420px){ .acc-panel{right:12px;left:12px;width:auto} }

/* ניגודיות גבוהה לכל האתר */
html.acc-high-contrast *,
html.acc-high-contrast *:hover {
  color: #000 !important;
  background-color: #fff !important;
  fill: #000 !important;
}

/* מצב כהה אמיתי */
html.acc-dark {
  background: #020617 !important;
}
html.acc-dark * {
  color: #f9fafb !important;
  background-color: #020617 !important;
  fill: #f9fafb !important;
}

/* שאר מצבי הנגישות */
html.acc-large {font-size:115%}
html.acc-xlarge {font-size:130%}
html.acc-underline-links a {text-decoration: underline !important}
html.acc-focus-outline *:focus {outline:3px solid #ffa500 !important; outline-offset:2px}

.wa-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  z-index: 9999;
  animation: pulse 2s infinite;
}

.wa-float img {
  width: 32px;
}

.wa-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ff2d2d;
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* בועת צאט */

.wa-chat-box {
  position: fixed;
  bottom: 110px;
  left: 25px;
  width: 260px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.4s ease;
  z-index: 9998;
}

.wa-chat-box.show {
  opacity: 1;
  transform: translateY(0);
}

.wa-header {
  background: #075E54;
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.wa-header img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.wa-message {
  padding: 14px;
  font-size: 14px;
  color: #333;
  background: #f1f1f1;
}
.bounce {
  animation: bounceEffect 0.8s ease;
}

@keyframes bounceEffect {
  0% { transform: translateY(0); }
  30% { transform: translateY(-12px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.footer-legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #cbd5f5;
  font-size: 0.8rem;
}

.footer-legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
