:root {
  --rh-navy: #0a1a70;
  --rh-navy-soft: #18308d;
  --rh-text: #455166;
  --rh-muted: #687386;
  --rh-gold: #a98632;
  --rh-gold-light: #dcc582;
  --rh-tint: #f5f7fa;
  --rh-mint: #eafbfa;
  --rh-white: #fff;
  --rh-border: rgba(69, 81, 102, 0.16);
  --rh-shadow: 0 18px 48px rgba(10, 26, 112, 0.08);
  --rh-max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--rh-white);
}

body {
  margin: 0;
  color: var(--rh-text);
  background: var(--rh-white);
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  font-size: 18px;
  line-height: 1.72;
  text-align: right;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: var(--rh-navy); text-underline-offset: 3px; }
a:hover { color: var(--rh-gold); }
:focus-visible { outline: 3px solid var(--rh-gold-light); outline-offset: 3px; }

.rh-skip {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--rh-navy);
  border-radius: 4px;
  transform: translateY(-160%);
}
.rh-skip:focus { transform: translateY(0); }

.rh-topbar {
  color: #fff;
  background: var(--rh-navy);
  font-size: 14px;
}
.rh-topbar-inner {
  width: min(var(--rh-max), calc(100% - 48px));
  margin-inline: auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.rh-topbar a { color: #fff; text-decoration: none; }
.rh-topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }

.rh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--rh-border);
  backdrop-filter: blur(12px);
}
.rh-header-inner {
  position: relative;
  width: min(var(--rh-max), calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-areas: "spacer nav brand";
  grid-template-columns: minmax(155px, 1fr) auto minmax(155px, 1fr);
  align-items: center;
  gap: 18px;
  direction: ltr;
}
.rh-brand { grid-area: brand; justify-self: end; direction: rtl; color: var(--rh-navy); text-decoration: none; line-height: 1.12; }
.rh-brand strong { display: block; font-size: 24px; font-weight: 600; }
.rh-brand span { display: block; margin-top: 5px; color: var(--rh-muted); font-size: 12px; }
.rh-nav { grid-area: nav; justify-self: center; display: flex; align-items: center; gap: 24px; direction: rtl; }
.rh-nav > a, .rh-nav-trigger {
  color: var(--rh-text);
  text-decoration: none;
  font: inherit;
  font-size: 15px;
  white-space: nowrap;
}
.rh-nav > a:hover, .rh-nav-trigger:hover,
.rh-nav > a[aria-current="page"], .rh-nav-group.is-current > .rh-nav-trigger { color: var(--rh-navy); }
.rh-nav > a[aria-current="page"], .rh-nav-group.is-current > .rh-nav-trigger { box-shadow: inset 0 -2px var(--rh-gold); }
.rh-nav-group { position: relative; }
.rh-nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.rh-nav-caret { color: var(--rh-gold); font-size: 13px; line-height: 1; transition: transform 160ms ease; }
.rh-submenu {
  position: absolute;
  top: calc(100% + 10px);
  right: 50%;
  z-index: 1010;
  min-width: 238px;
  padding: 8px;
  direction: rtl;
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 5px;
  box-shadow: var(--rh-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(50%, 6px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}
.rh-submenu::before { content: ""; position: absolute; top: -11px; right: 0; left: 0; height: 11px; }
.rh-submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--rh-text);
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}
.rh-submenu a:hover, .rh-submenu a:focus-visible { color: var(--rh-navy); background: var(--rh-mint); }
.rh-submenu a[aria-current="page"] { color: var(--rh-navy); background: var(--rh-tint); }
.rh-nav-group:hover .rh-submenu,
.rh-nav-group:focus-within .rh-submenu,
.rh-nav-group.is-open .rh-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(50%, 0);
}
.rh-nav-group:hover .rh-nav-caret,
.rh-nav-group:focus-within .rh-nav-caret,
.rh-nav-group.is-open .rh-nav-caret { transform: rotate(180deg); }
.rh-nav .rh-book, .rh-book {
  display: inline-block;
  padding: 11px 18px;
  color: #fff;
  background: var(--rh-navy);
  border-radius: 4px;
  box-shadow: none;
}
.rh-nav .rh-book {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.rh-nav .rh-book:hover, .rh-book:hover { color: #fff; background: var(--rh-navy-soft); }
.rh-nav .rh-book[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -2px var(--rh-gold-light);
}
.rh-menu-toggle {
  display: none;
  min-height: 44px;
  padding: 9px 13px;
  color: var(--rh-navy);
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}

main { min-height: 55vh; }
.rh-page { color: var(--rh-text); background: var(--rh-white); }
.rh-page h1, .rh-page h2, .rh-page h3 {
  margin: 0 0 0.65em;
  color: var(--rh-navy);
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}
.rh-page h1 { font-size: clamp(38px, 5vw, 64px); }
.rh-method-hero .rh-narrow { max-width: none; }
.rh-page .rh-method-title {
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(18px, 5vw, 64px);
  letter-spacing: -0.02em;
}
.rh-method-hero .rh-lead { max-width: 760px; }
.rh-page h2 { font-size: clamp(30px, 3.5vw, 44px); }
.rh-page h3 { font-size: 23px; }
.rh-page p { margin: 0 0 1.15em; }
.rh-page ul { margin: 0; padding-right: 1.2em; padding-left: 0; }
.rh-wrap { width: min(var(--rh-max), calc(100% - 48px)); margin-inline: auto; }
.rh-narrow { max-width: 760px; }
.rh-hero { padding: 96px 0 80px; background: linear-gradient(145deg, #fff 0%, #f3f7fb 100%); }
.rh-sec { padding: 84px 0; }
.rh-sec--tight { padding: 50px 0; }
.rh-sec--tint { background: var(--rh-tint); }
.rh-sec--mint { background: var(--rh-mint); }
.rh-lead { font-size: clamp(20px, 2.2vw, 25px); line-height: 1.55; }
.rh-eyebrow, .rh-tag, .rh-req-h {
  color: var(--rh-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.rh-btn, .rh-page a.rh-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 13px 23px;
  color: #fff;
  background: var(--rh-navy);
  border-radius: 4px;
  text-decoration: none;
}
.rh-btn:hover, .rh-page a.rh-btn:hover { color: #fff; background: var(--rh-navy-soft); }
.rh-ctanote { margin-top: 12px; color: var(--rh-muted); font-size: 14px; }
.rh-hero-grid, .rh-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: center;
}
.rh-hero-img { width: 100%; max-height: 560px; object-fit: cover; object-position: center 28%; border-radius: 8px; box-shadow: var(--rh-shadow); }
.rh-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.rh-three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.rh-card, .rh-three > div, .rh-defs > div {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(10, 26, 112, 0.035);
}
.rh-card h3 a { text-decoration: none; }
.rh-more { display: inline-block; margin-top: 4px; font-size: 15px; }
.rh-steps { display: grid; gap: 20px; }
.rh-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(69, 81, 102, 0.13);
  border-radius: 5px;
}
.rh-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: var(--rh-navy);
  border-radius: 50%;
  font-weight: 700;
}
.rh-num::before { content: "0"; }
.rh-callout { padding-right: 30px; color: var(--rh-navy); border-right: 2px solid var(--rh-gold); font-size: 22px; }
.rh-req, .rh-creds { padding: 30px; background: #fff; border: 1px solid var(--rh-border); border-radius: 5px; }
.rh-req ul, .rh-creds ul { list-style: none; margin: 0; padding: 0; }
.rh-req li, .rh-creds li { position: relative; margin: 10px 0; padding-right: 22px; }
.rh-req li::before, .rh-creds li::before { content: "✓"; position: absolute; right: 0; color: var(--rh-gold); }
.rh-pivot, .rh-quote { max-width: 900px; color: var(--rh-navy); font-size: clamp(24px, 3vw, 38px); line-height: 1.45; }
.rh-device-feature { max-width: 640px; margin: 0 auto; text-align: center; }
.rh-device-feature > a { display: block; border: 0; }
.rh-device-feature img { display: block; width: 100%; height: auto; border-radius: 8px; }
.rh-device-feature figcaption { margin-top: 16px; }
.rh-cta-block { max-width: 800px; }
.rh-table { width: 100%; border-collapse: collapse; background: #fff; }
.rh-table td { padding: 18px; border-bottom: 1px solid var(--rh-border); vertical-align: top; }
.rh-table td:first-child { white-space: normal; }
.rh-defs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.rh-faq-item { padding: 26px 0; border-bottom: 1px solid var(--rh-border); }
.rh-figure { margin: 0; }
.rh-figure svg { display: block; width: 100%; height: auto; }
.rh-mirror { max-width: 800px; }

.rh-footer { color: var(--rh-text); background: var(--rh-mint); font-size: 15px; }
.rh-footer a { color: var(--rh-text); text-decoration: none; }
.rh-footer a:hover { color: var(--rh-navy); }
.rh-footer .rh-inner { width: min(var(--rh-max), calc(100% - 48px)); margin-inline: auto; }
.rh-scope { padding: 26px 0; color: var(--rh-navy); border-bottom: 1px solid var(--rh-border); text-align: center; font-size: 16px; }
.rh-cols { display: grid; grid-template-columns: 1.35fr 0.9fr 1fr 1fr 1.1fr; gap: 28px; padding: 40px 0 36px; }
.rh-h { margin: 0 0 14px; color: var(--rh-navy); font-size: 14px; font-weight: 700; }
.rh-cols ul { margin: 0; padding: 0; list-style: none; }
.rh-cols li { margin: 0 0 9px; }
.rh-footer-cta { display: inline-block; padding: 13px 22px; color: #fff !important; background: var(--rh-navy); border-radius: 4px; }
.rh-note { margin: 12px 0 0; color: var(--rh-muted); font-size: 13px; }
.rh-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 22px 0 30px; border-top: 1px solid var(--rh-border); }
.rh-verification { display: flex; flex-wrap: wrap; gap: 8px; }
.rh-verification a { padding: 5px 9px; background: rgba(255, 255, 255, 0.7); border: 1px solid var(--rh-border); border-radius: 3px; font-size: 12px; }
.rh-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; color: var(--rh-muted); font-size: 13px; }
.rh-legal a, .rh-legal span { white-space: nowrap; }
.rh-copyright { direction: ltr; unicode-bidi: isolate; }

.rh-404 { min-height: 64vh; display: grid; align-items: center; }
.rh-confirmation { min-height: 64vh; display: grid; align-items: center; text-align: center; }
.rh-confirmation .rh-narrow { margin-inline: auto; }

@media (max-width: 1180px) {
  .rh-header-inner { grid-template-columns: minmax(135px, 1fr) auto minmax(135px, 1fr); gap: 12px; }
  .rh-nav { gap: 18px; }
  .rh-nav > a, .rh-nav-trigger { font-size: 13.5px; }
  .rh-nav .rh-book { padding: 10px 13px; }
}

@media (max-width: 900px) {
  .rh-header-inner { display: flex; justify-content: space-between; gap: 28px; direction: rtl; }
  .rh-brand { justify-self: auto; }
  .rh-menu-toggle { display: block; }
  .rh-header { position: relative; }
  .rh-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--rh-border);
    box-shadow: var(--rh-shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .rh-header.rh-open .rh-nav { display: flex; }
  .rh-nav > a { min-height: 38px; display: flex; align-items: center; }
  .rh-nav-group { width: 100%; }
  .rh-nav-trigger { width: 100%; justify-content: flex-start; font-size: 15px; }
  .rh-submenu {
    display: none;
    position: static;
    min-width: 0;
    margin: 2px 0 6px;
    padding: 6px 14px 6px 0;
    background: var(--rh-tint);
    border: 0;
    border-right: 2px solid var(--rh-gold-light);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .rh-nav-group.is-open .rh-submenu { display: block; transform: none; }
  .rh-submenu::before { display: none; }
  .rh-submenu a { min-height: 36px; display: flex; align-items: center; white-space: normal; }
  .rh-nav .rh-book { position: static; transform: none; justify-content: center; }
  .rh-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  body { font-size: 17px; }
  .rh-hero-grid, .rh-split, .rh-grid, .rh-three, .rh-defs { grid-template-columns: 1fr; }
  .rh-hero, .rh-sec { padding: 58px 0; }
  .rh-wrap, .rh-header-inner, .rh-topbar-inner, .rh-footer .rh-inner { width: min(100% - 32px, var(--rh-max)); }
  .rh-topbar-inner { padding: 8px 0; align-items: flex-start; }
  .rh-topbar-location { display: none; }
  .rh-hero-grid, .rh-split { gap: 38px; }
}

@media (max-width: 560px) {
  .rh-topbar-contact { gap: 10px; flex-direction: column; }
  .rh-header-inner { min-height: 76px; }
  .rh-brand strong { font-size: 21px; }
  .rh-footer { text-align: center; }
  .rh-cols { grid-template-columns: 1fr; }
  .rh-scope { text-align: center; }
  .rh-bottom { align-items: center; flex-direction: column; }
  .rh-verification, .rh-legal { justify-content: center; }
  .rh-callout { padding-right: 22px; }
  .rh-step { grid-template-columns: 44px 1fr; padding: 22px 18px; gap: 14px; }
  .rh-num { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media print {
  .rh-topbar, .rh-header, .rh-footer, .rh-btn { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .rh-hero, .rh-sec { padding: 20px 0; background: #fff !important; }
}
