/* ============================================================
   משרד עורכי דין מנחם שלמה — סגנון ראשי
   ============================================================ */

:root {
  --navy-900: #0b1524;
  --navy-800: #101d30;
  --navy-700: #16263e;
  --navy-600: #1f3452;
  --gold: #c9a45c;
  --gold-light: #e2c98f;
  --gold-dark: #a8853f;
  --ink: #1d2733;
  --ink-soft: #46525f;
  --bg: #f8f6f2;
  --bg-alt: #efece5;
  --white: #ffffff;
  --line: #e3ded4;
  --shadow: 0 10px 30px rgba(11, 21, 36, 0.08);
  --shadow-lg: 0 18px 50px rgba(11, 21, 36, 0.14);
  --radius: 10px;
  --max-w: 1180px;
  --font-serif: "Frank Ruhl Libre", "Times New Roman", serif;
  --font-sans: "Heebo", "Arial Hebrew", Arial, sans-serif;
}

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

/* ---------- נגישות ---------- */

.skip-link {
  position: absolute;
  top: -60px;
  inset-inline-start: 16px;
  z-index: 200;
  background: var(--navy-900);
  color: var(--gold-light);
  padding: 12px 22px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  direction: rtl;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

/* ---------- טיפוגרפיה ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-800);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { color: var(--ink-soft); }

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.gold-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: 0;
  margin: 22px 0 26px;
}

.gold-divider.center { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.text-center { text-align: center; }

/* ---------- כפתורים ---------- */

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-900);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 164, 92, 0.35);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline-dark {
  border-color: var(--navy-700);
  color: var(--navy-700);
}

.btn-outline-dark:hover {
  background: var(--navy-800);
  color: var(--white);
}

/* ---------- כותרת עליונה ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(11, 21, 36, 0.55);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(11, 21, 36, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}

.logo .logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo .logo-name {
  font-family: "David Libre", var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo .logo-sub {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 2px;
}

.logo .logo-mark-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 560px) {
  .logo .logo-name { font-size: 1.5rem; }
  .logo .logo-mark, .logo .logo-mark-img { width: 46px; height: 46px; }
}

.main-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}

.main-nav .nav-cta {
  margin-inline-start: 10px;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  padding: 9px 22px;
}

.main-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--navy-900);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201, 164, 92, 0.12), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 160px 0 110px;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  font-family: "David Libre", var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.35;
}

.hero h1 .gold {
  color: var(--gold-light);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  max-width: 560px;
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-strip {
  position: relative;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-strip .strip-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--gold-light);
}

.hero-strip .strip-item span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero פנימי (עמודים משניים) */

.page-hero {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201, 164, 92, 0.14), transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 165px 0 70px;
}

.page-hero h1 { color: var(--white); }

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.breadcrumbs {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.breadcrumbs a:hover { color: var(--gold-light); }

/* ---------- מקטעים ---------- */

.section { padding: 90px 0; }

.section.alt { background: var(--bg-alt); }

.section.dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.section.dark h2, .section.dark h3 { color: var(--white); }

.section.dark p { color: rgba(255, 255, 255, 0.78); }

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- כרטיסי תחומי עיסוק ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card .card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.6;
}

.card h3 { margin-bottom: 12px; }

.card p { flex: 1; }

.card .card-link {
  margin-top: 22px;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card .card-link:hover { color: var(--navy-800); }

/* ---------- רשימות יתרון / שירותים ---------- */

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-inline-start: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z"/></svg>') center/contain no-repeat;
}

.section.dark .check-list li { color: rgba(255,255,255,0.82); }

/* ---------- שני טורים ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col .col-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,164,92,0.25), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col .col-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col .col-media .contain-img {
  object-fit: contain;
  background: #ffffff;
  padding: 56px;
}

.signature-img {
  width: 140px;
  margin-top: 18px;
  mix-blend-mode: multiply;
}

/* לוגו ראשי בעמוד אודות — ללא מסגרת, משתלב ברקע העמוד */
.logo-feature {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-feature img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.footer-medallion {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-bottom: 14px;
  display: block;
}

.two-col .col-media svg {
  width: 210px;
  height: 210px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.two-col .col-media svg .accent { stroke: var(--gold); opacity: 0.45; }

.site-footer .footer-logo {
  font-family: "David Libre", var(--font-serif);
  font-weight: 700;
}

/* ---------- ערכים / למה אנחנו ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
}

.value-item {
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 20px;
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.section.dark .value-item h3 { color: var(--gold-light); }

/* ---------- תהליך עבודה ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ---------- שאלות נפוצות ---------- */

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-dark);
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body { padding: 0 24px 22px; }

/* ---------- פס קריאה לפעולה ---------- */

.cta-banner {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 164, 92, 0.18), transparent 55%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 { color: var(--white); margin-bottom: 8px; }

.cta-banner p { color: rgba(255, 255, 255, 0.78); max-width: 520px; }

/* ---------- טופס יצירת קשר ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.18);
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.contact-info { display: grid; gap: 26px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item .info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item .info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
}

.info-item h3 { font-size: 1.05rem; margin-bottom: 2px; }

.info-item a:hover { color: var(--gold-dark); }

/* ---------- פוטר ---------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}

.site-footer h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.site-footer .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}

.site-footer .footer-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; display: grid; gap: 10px; }

.site-footer ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  max-width: 460px;
}

/* ---------- אנימציית הופעה ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- פס ייעוץ תחתון ---------- */

.call-strip {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 96;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 52px;
  box-shadow: 0 -4px 18px rgba(11, 21, 36, 0.25);
}

.call-strip a {
  color: var(--navy-900);
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.call-strip a svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy-900);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-strip .call-strip-close {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--navy-900);
  cursor: pointer;
  padding: 4px 8px;
}

body.has-call-strip .float-wa { bottom: 86px; }

@media (max-width: 560px) {
  .call-strip a { font-size: 1rem; }
  .call-strip { padding: 11px 44px; }
}

/* ---------- רכיב נגישות ---------- */

.a11y-btn {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  z-index: 98;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.a11y-btn:hover { background: var(--navy-700); }

.a11y-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

body.has-call-strip .a11y-btn { bottom: 86px; }

.a11y-panel {
  position: fixed;
  bottom: 94px;
  inset-inline-end: 26px;
  z-index: 99;
  width: 290px;
  max-width: calc(100vw - 40px);
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(11, 21, 36, 0.3);
  padding: 16px;
  display: none;
}

body.has-call-strip .a11y-panel { bottom: 154px; }

.a11y-panel.open { display: block; }

.a11y-panel h2 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--navy-800);
}

.a11y-panel button.a11y-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: start;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 7px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
}

.a11y-panel button.a11y-opt:hover { background: #ece7dc; }

.a11y-panel button.a11y-opt[aria-pressed="true"] {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.a11y-panel .a11y-reset {
  background: none;
  border: 0;
  color: var(--navy-700);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  padding: 6px 0;
}

.a11y-panel .a11y-statement {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: underline;
}

/* מצבי נגישות */

html.a11y-links a {
  text-decoration: underline !important;
  font-weight: 700 !important;
}

html.a11y-readable body,
html.a11y-readable h1, html.a11y-readable h2,
html.a11y-readable h3, html.a11y-readable h4,
html.a11y-readable .logo-name, html.a11y-readable .footer-logo {
  font-family: Arial, "Arial Hebrew", sans-serif !important;
  letter-spacing: 0.02em;
}

html.a11y-no-anim *,
html.a11y-no-anim *::before,
html.a11y-no-anim *::after {
  animation: none !important;
  transition: none !important;
}

html.a11y-no-anim .reveal { opacity: 1 !important; transform: none !important; }

html.a11y-dark body { background: #000 !important; }

html.a11y-dark body *:not(svg):not(path) {
  background-color: transparent !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

html.a11y-dark a, html.a11y-dark a * { color: #ffff00 !important; }
html.a11y-dark button, html.a11y-dark input, html.a11y-dark textarea, html.a11y-dark select {
  border: 1px solid #ffffff !important;
}
html.a11y-dark svg { stroke: #ffffff !important; fill: none !important; }

html.a11y-light body { background: #ffffff !important; }

html.a11y-light body *:not(svg):not(path) {
  background-color: transparent !important;
  background-image: none !important;
  color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

html.a11y-light a, html.a11y-light a * { color: #0000cc !important; }
html.a11y-light button, html.a11y-light input, html.a11y-light textarea, html.a11y-light select {
  border: 1px solid #000000 !important;
}
html.a11y-light svg { stroke: #000000 !important; fill: none !important; }

html.a11y-bigcursor, html.a11y-bigcursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 32 32'%3E%3Cpath d='M6 2l0 26 6-7 4 9 5-2-4-9 9 0z' fill='%23000' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E") 4 2, auto !important;
}

@media (max-width: 560px) {
  .a11y-btn { width: 48px; height: 48px; bottom: 20px; inset-inline-end: 16px; }
  .a11y-btn svg { width: 26px; height: 26px; }
  body.has-call-strip .a11y-btn { bottom: 78px; }
  .a11y-panel { inset-inline-end: 16px; bottom: 78px; }
  body.has-call-strip .a11y-panel { bottom: 136px; }
}

/* ---------- כפתור וואטסאפ צף ---------- */

.float-wa {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.float-wa:hover { transform: scale(1.08); }

.float-wa svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- רספונסיביות ---------- */

@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 78px;
    inset-inline: 0;
    background: rgba(11, 21, 36, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
  }

  .main-nav a {
    padding: 15px 4px;
    font-size: 1.05rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .main-nav li:last-child a { border-bottom: 0; }

  .main-nav .nav-cta {
    margin: 18px 0 0;
    text-align: center;
    border-radius: 4px;
    padding: 14px 22px;
  }

  .hero { min-height: 0; }
  .hero-inner { padding: 130px 0 90px; }
  .page-hero { padding: 130px 0 56px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 62px 0; }

  .cards-grid,
  .values-grid { grid-template-columns: 1fr; }

  .hero-strip { gap: 26px; margin-top: 46px; }
  .hero-strip .strip-item { flex: 1 1 100%; }
  .hero-strip .strip-item strong { font-size: 1.45rem; }

  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 42px 28px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }

  .logo-feature img { max-width: 300px; }

  .contact-form { padding: 26px 20px; }
}

@media (max-width: 480px) {
  .logo .logo-name { font-size: 1.25rem; }
  .logo .logo-sub { font-size: 0.7rem; }
  .logo .logo-mark, .logo .logo-mark-img { width: 40px; height: 40px; }

  .hero-inner { padding: 118px 0 76px; }
  .lead, .hero .lead { font-size: 1.05rem; }

  .call-strip a { font-size: 0.95rem; }
}