/* אינפרטיב - איתור נזילות | עיצוב בסיס */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0b2942;
  --navy-light: #133a5c;
  --teal: #0d7d8f;
  --teal-light: #12a3b8;
  --teal-pale: #e6f5f7;
  --ink: #1a2733;
  --gray: #5b6b78;
  --gray-light: #8996a1;
  --line: #e2e8ee;
  --bg: #f6f9fb;
  --white: #ffffff;
  --amber: #d97b1f;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --danger: #b3432f;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(11, 41, 66, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 41, 66, 0.14);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Heebo', Arial, sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; font-weight: 800; }
p { margin: 0; }

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

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--white); }
.section--navy { background: var(--navy); color: #fff; }
.section--pale { background: var(--teal-pale); }

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: #7fd4e0; }

h2.section-title {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 44px;
}
.section--navy .section-sub { color: #b9c8d6; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 41, 66, 0.97);
  backdrop-filter: blur(6px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #9fb4c6;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #d7e3ec;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; font-weight: 700; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: block; }
  .nav-cta .btn-text { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); }

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: #fff; }

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 76px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(18,163,184,0.25), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #cfe6ee;
  margin-bottom: 22px;
}
.hero-badge b { color: #fff; }

.hero h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--teal-light); }

.hero-sub {
  font-size: 19px;
  color: #c3d3e0;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-size: 26px; font-weight: 800; color: #fff; }
.hero-trust-label { font-size: 13px; color: #a7bccb; }

.hero-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.hero-card-score b { font-size: 44px; color: var(--navy); }
.hero-card-score span { font-size: 16px; color: var(--gray); }
.hero-stars { color: #f2a93c; font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.hero-card-note { font-size: 14px; color: var(--gray); margin-bottom: 18px; }
.hero-card-quote {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 15px;
  color: var(--ink);
}
.hero-card-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 13px;
  color: var(--gray);
}

/* ===== Trust bar ===== */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-stat { text-align: center; flex: 1; min-width: 130px; }
.trust-stat b { display: block; font-size: 25px; color: var(--navy); font-weight: 800; }
.trust-stat span { font-size: 13.5px; color: var(--gray); }

/* ===== Grids / Cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--teal); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 15.5px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 14.5px; }

/* Pricing */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card--highlight {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-lg);
}
.price-tag {
  position: absolute;
  top: -13px;
  right: 28px;
  background: var(--teal);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 20px; margin-bottom: 8px; }
.price-card .price {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 6px;
}
.price-card .price span { font-size: 14px; color: var(--gray); font-weight: 500; }
.price-card .price-desc { font-size: 14px; color: var(--gray); margin-bottom: 22px; }
.price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink); }
.price-list svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* Testimonials */
.tcard {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.tcard-stars { color: #f2a93c; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.tcard p { font-size: 15.5px; color: var(--ink); margin-bottom: 16px; }
.tcard cite {
  display: flex; align-items: center; gap: 10px;
  font-style: normal; font-size: 14px; color: var(--gray);
}
.tcard-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}

.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .rating-breakdown { grid-template-columns: repeat(2, 1fr); } }
.rb-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; text-align: center; }
.rb-item b { display: block; font-size: 22px; color: var(--navy); }
.rb-item span { font-size: 13px; color: var(--gray); }
.rb-bar { height: 6px; border-radius: 3px; background: var(--line); margin-top: 10px; overflow: hidden; }
.rb-bar i { display: block; height: 100%; background: var(--teal); border-radius: 3px; }

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}
.faq-q .plus { font-size: 22px; color: var(--teal); transition: transform .2s; flex-shrink: 0; margin-inline-start: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }
.faq-a p { color: var(--gray); font-size: 15px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: #fff;
  border-radius: 20px;
  padding: 52px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.cta-band p { color: #c3d3e0; font-size: 17px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #071c2f; color: #b9c8d6; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 14.5px; color: #9fb4c6; transition: color .15s; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { font-size: 14.5px; color: #9fb4c6; margin: 14px 0 18px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #6f869a;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  background: var(--whatsapp);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .15s;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 56px 0;
}
.page-hero .eyebrow { color: #7fd4e0; }
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.page-hero p { color: #c3d3e0; font-size: 17px; max-width: 620px; }
.breadcrumb { font-size: 13.5px; color: #9fb4c6; margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }

/* Article */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 24px; margin: 40px 0 14px; color: var(--navy); }
.article-body h3 { font-size: 19px; margin: 28px 0 10px; color: var(--navy); }
.article-body p { font-size: 16.5px; color: #33414c; margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-inline-start: 22px; }
.article-body li { font-size: 16.5px; color: #33414c; margin-bottom: 10px; }
.article-body li::marker { color: var(--teal); }
.article-meta { display: flex; gap: 16px; align-items: center; color: var(--gray); font-size: 14px; margin-bottom: 30px; }
.callout {
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 24px 0;
  border-inline-start: 4px solid var(--teal);
}
.callout p { color: var(--navy-light); font-size: 15.5px; margin: 0; }

.article-list { display: flex; flex-direction: column; gap: 18px; }
.article-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.article-row h3 { font-size: 18px; margin-bottom: 6px; }
.article-row p { color: var(--gray); font-size: 14.5px; }
@media (max-width: 640px) { .article-row { flex-direction: column; align-items: flex-start; } }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ===== Illustrations ===== */
.hero-illustration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.65) contrast(1.05);
}
.hero-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,41,66,0.7), rgba(11,41,66,0.93));
}

.method-visual {
  width: 100%;
  height: 168px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--navy);
}
.method-visual svg, .method-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }

.stage-visual {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--teal-pale);
}
.stage-visual svg, .stage-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }

.emblem-wrap { display: flex; justify-content: center; margin-bottom: 22px; }
.emblem { width: 132px; height: 132px; }

.article-illustration {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 8px;
  display: block;
  border-radius: var(--radius-sm);
}
.article-illustration.wide { max-width: 420px; }
.article-illustration-row {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 8px;
}
.article-illustration-row img {
  width: 50%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  height: 150px;
}

.mini-visual { width: 40px; height: 40px; flex-shrink: 0; }
