:root {
  --paper: #F6F8F6;
  --surface: #FFFFFF;
  --surface-2: #EFF4F1;
  --ink: #0F2A2B;
  --ink-soft: #3C5657;
  --ink-faint: #6E8384;
  --line: #DCE6E1;
  --brand: #0C5A56;
  --brand-2: #12817A;
  --gold: #C98410;
  --gold-soft: #F6EAD0;
  --like: #1C8A57;
  --shadow: 0 1px 2px rgba(15,42,43,.06), 0 8px 28px rgba(15,42,43,.08);
  --radius: 16px;
  --maxw: 1120px;
  --font: "Segoe UI", "Helvetica Neue", "Arial Hebrew", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  text-align: right;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.01em; margin: 0; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246,248,246,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; }
.brand .logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; display: grid; place-items: center; font-size: 17px; font-weight: 800;
}
.header-cta { display: flex; gap: 10px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 12px; padding: 13px 22px;
  font-weight: 800; font-size: 15px; text-decoration: none; transition: transform .12s, box-shadow .12s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-2); }
.btn-gold { background: var(--gold); color: #23180a; }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--brand-2); color: var(--brand-2); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-full { width: 100%; }

/* HERO */
.hero { padding: 76px 0 60px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
@media (max-width: 880px) { .hero .wrap { grid-template-columns: 1fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700;
  color: var(--brand-2); background: var(--surface); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; margin: 18px 0 0; text-wrap: balance; }
h1 .hl { color: var(--brand); }
.tagline { font-size: clamp(16px, 2vw, 19px); font-weight: 800; color: var(--brand-2); margin: 14px 0 0; }
.lede { font-size: 17px; color: var(--ink-soft); max-width: 56ch; margin: 14px 0 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hstat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow); }
.hstat b { display: block; font-size: 22px; font-weight: 800; color: var(--gold); font-variant-numeric: tabular-nums; }
.hstat span { font-size: 12.5px; color: var(--ink-faint); }

.hero-visual {
  background: linear-gradient(160deg, var(--brand), var(--brand-2));
  border-radius: 22px; padding: 26px; color: #fff; box-shadow: var(--shadow);
  min-height: 320px; display: flex; flex-direction: column; justify-content: space-between;
}
.hv-badge { align-self: flex-start; background: var(--gold); color: #23180a; font-weight: 800; font-size: 14px; padding: 7px 14px; border-radius: 999px; }
.hv-card { background: rgba(255,255,255,.12); border-radius: 16px; padding: 18px 20px; margin-top: 16px; }
.hv-card .old { font-size: 12.5px; opacity: .8; }
.hv-card .old s { opacity: .85; }
.hv-card .new { font-size: 30px; font-weight: 800; margin-top: 4px; font-variant-numeric: tabular-nums; }
.hv-card .save-lbl { font-size: 12.5px; opacity: .9; }

/* SECTION HEAD */
.sec-head { max-width: 66ch; margin-bottom: 34px; }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; text-wrap: balance; }
.sec-lede { color: var(--ink-soft); margin-top: 10px; font-size: 15.5px; }

/* HOW IT WORKS */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 880px) { .flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .flow { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.step .n {
  width: 30px; height: 30px; border-radius: 9px; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 15px; margin-bottom: 12px;
}
.step h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 5px; }
.step p { margin: 0; font-size: 13.5px; color: var(--ink-faint); line-height: 1.5; }

/* CATEGORIES */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 780px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
  background: var(--surface); display: flex; flex-direction: column;
}
.cat-top { height: 110px; display: flex; align-items: flex-end; padding: 14px; color: #fff; font-weight: 800; font-size: 17px; }
.cat-top.c1 { background: linear-gradient(155deg,#0f6b66,#1c8f88); }
.cat-top.c2 { background: linear-gradient(155deg,#324b7a,#4a6bb0); }
.cat-top.c3 { background: linear-gradient(155deg,#8a5a12,#c98410); }
.cat-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.cat-body p { margin: 0; font-size: 14px; color: var(--ink-soft); flex: 1; }
.cat-tag { align-self: flex-start; font-size: 11.5px; font-weight: 800; color: var(--brand-2); background: var(--surface-2); padding: 4px 10px; border-radius: 999px; }

/* CALCULATOR */
.calc {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
  padding: 30px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 34px; align-items: center;
}
@media (max-width: 780px) { .calc { grid-template-columns: minmax(0,1fr); padding: 22px; } }
.calc-type { display: inline-flex; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 18px; }
.calc-type button {
  border: none; background: none; padding: 9px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--ink-soft);
}
.calc-type button.active { background: var(--brand); color: #fff; }
.calc-field label { font-size: 13.5px; font-weight: 700; display: block; margin-bottom: 8px; }
.price-row { display: flex; align-items: center; gap: 12px; }
.price-row .sym { font-size: 20px; font-weight: 800; color: var(--ink-faint); }
.price-row input[type="text"] {
  flex: 1; min-width: 0; font-family: inherit; font-size: 22px; font-weight: 800; padding: 12px 14px;
  border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface-2); color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.price-row input:focus { outline: 2px solid var(--brand-2); outline-offset: -1px; border-color: var(--brand-2); }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; margin-top: 16px;
  background: var(--line); border-radius: 999px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); border: 3px solid var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,.25); cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--brand);
  border: 3px solid var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,.25); cursor: pointer;
}
.calc-result { display: flex; gap: 14px; }
.cr-card { flex: 1; border-radius: 14px; padding: 16px 18px; }
.cr-card.old { background: var(--surface-2); border: 1px solid var(--line); }
.cr-card.old .lbl { font-size: 12.5px; color: var(--ink-faint); }
.cr-card.old .amt { font-size: 19px; font-weight: 700; color: var(--ink-faint); text-decoration: line-through; margin-top: 4px; font-variant-numeric: tabular-nums; }
.cr-card.new { background: var(--brand); color: #fff; }
.cr-card.new .lbl { font-size: 12.5px; opacity: .9; display: flex; align-items: center; gap: 6px; }
.cr-card.new .lbl .badge { background: var(--gold); color: #23180a; font-weight: 800; font-size: 11px; padding: 2px 8px; border-radius: 999px; }
.cr-card.new .amt { font-size: 25px; font-weight: 800; margin-top: 4px; font-variant-numeric: tabular-nums; }
.calc-cta { margin-top: 18px; }

/* FEE TABLE */
.feetbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); background: var(--surface); }
table.feetbl { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
table.feetbl th, table.feetbl td { padding: 14px 18px; text-align: right; border-bottom: 1px solid var(--line); }
table.feetbl thead th { background: var(--surface-2); font-weight: 800; font-size: 13px; color: var(--ink-soft); }
table.feetbl tbody tr:last-child td { border-bottom: none; }
table.feetbl td:first-child { font-weight: 800; }
table.feetbl .val { font-variant-numeric: tabular-nums; color: var(--brand); font-weight: 700; }
table.feetbl .none { color: var(--ink-faint); }
.feetbl-note { font-size: 12.5px; color: var(--ink-faint); margin: 12px 2px 0; }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 780px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.trust-card .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: 20px; margin-bottom: 12px; }
.trust-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.trust-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* SIGNUP */
.signup-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.signup-tabs { display: flex; border-bottom: 1px solid var(--line); }
.signup-tabs button {
  flex: 1; border: none; background: var(--surface-2); padding: 16px; font-weight: 800; font-size: 15px; color: var(--ink-soft);
  border-bottom: 3px solid transparent;
}
.signup-tabs button.active { background: var(--surface); color: var(--brand); border-bottom-color: var(--brand); }
.signup-panel { display: none; padding: 30px; }
.signup-panel.show { display: block; }
.form-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 14px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: minmax(0,1fr); } }
.form-field input, .form-field select { width: 100%; min-width: 0; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 700; }
.form-field input, .form-field select {
  font-family: inherit; font-size: 15px; padding: 11px 13px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
}
.form-field input:focus, .form-field select:focus { outline: 2px solid var(--brand-2); outline-offset: -1px; border-color: var(--brand-2); }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; }
.form-success {
  display: none; align-items: center; gap: 10px; background: var(--gold-soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--ink);
}
.form-success.show { display: flex; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.footer-links { display: flex; gap: 18px; font-size: 13.5px; color: var(--ink-faint); flex-wrap: wrap; }
.footer-note { font-size: 12.5px; color: var(--ink-faint); width: 100%; margin-top: 14px; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
