/* צבע כפתור ההנעה לפעולה מוגדר רק כאן.
   גרסה כתומה (ברירת מחדל): --cta: #EF9F27; --cta-hover: #F5B14D; --cta-text: #412402;
   גרסה ירוקה: --cta: #57B846; --cta-hover: #6BC75B; --cta-text: #0E3308; */
:root {
  --navy-900: #042C53;
  --navy-800: #0C447C;
  --navy-600: #185FA5;
  --blue-100: #B5D4F4;
  --blue-50: #E6F1FB;
  --cta: #EF9F27;
  --cta-hover: #F5B14D;
  --cta-text: #412402;
  --ink: #1C2733;
  --ink-soft: #4A5A6A;
  --bg-soft: #F4F7FA;
  --whatsapp: #25D366;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Header */
.site-header {
  background: var(--navy-900);
  border-bottom: 1px solid var(--navy-800);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.logo span { color: var(--cta); }

.header-cta {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid var(--cta);
  border-radius: 8px;
  padding: 8px 18px;
  transition: background 0.15s, color 0.15s;
}

.header-cta:hover {
  background: var(--cta);
  color: var(--cta-text);
}

/* Hero */
.hero {
  background: var(--navy-900);
  color: #fff;
  padding: 48px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-photo {
  align-self: stretch;
  margin: -48px 0 -64px;
  min-height: 0;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 16%, #000 84%, transparent);
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 19px;
  color: var(--blue-100);
  margin-bottom: 24px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  position: relative;
  color: var(--blue-50);
  font-weight: 500;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 38px 8px 16px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cta);
  clip-path: polygon(28% 50%, 43% 66%, 74% 30%, 84% 40%, 43% 84%, 18% 60%);
}

/* Lead form card */
.lead-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 12px 32px rgba(2, 20, 40, 0.35);
}

.lead-card h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.lead-card-sub {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
}

.lead-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-card input:not([type="checkbox"]) {
  font: inherit;
  padding: 13px 14px;
  border: 1.5px solid #C9D6E2;
  border-radius: 8px;
  width: 100%;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy-600);
  cursor: pointer;
}

.lead-card input:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px var(--blue-50);
}

.hp { display: none; }

.cta-btn {
  display: inline-block;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  background: var(--cta);
  color: var(--cta-text);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.cta-btn:hover { background: var(--cta-hover); }
.cta-btn:active { transform: scale(0.98); }
.cta-btn:disabled { opacity: 0.7; cursor: wait; }

.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

.form-status {
  font-size: 14px;
  text-align: center;
  min-height: 1em;
}

.form-status.error { color: #A32D2D; }
.form-status.success { color: #0F6E56; font-weight: 500; }

.form-success {
  text-align: center;
  padding: 24px 0;
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

/* Sections */
section { padding: 64px 0; }

.section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}

.pain { background: var(--bg-soft); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #E3EAF1;
  border-radius: var(--radius);
  padding: 24px;
  font-size: 17px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon svg { width: 24px; height: 24px; }

.pain-bridge {
  text-align: center;
  margin-top: 32px;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-800);
}

/* Why us */
.feature {
  border: 1px solid #E3EAF1;
  border-radius: var(--radius);
  padding: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

/* Services */
.services { background: var(--bg-soft); }

.services .feature { background: #fff; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

.about-photo img {
  display: block;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-text .section-title {
  text-align: right;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 12px;
}

/* Steps */
.steps { background: var(--bg-soft); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: #fff;
  border: 1px solid #E3EAF1;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

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

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

/* FAQ */
.faq-inner { max-width: 760px; }

.faq details {
  border: 1px solid #E3EAF1;
  border-radius: var(--radius);
  padding: 0 20px;
  margin-bottom: 12px;
  background: #fff;
}

.faq summary {
  font-size: 17px;
  font-weight: 500;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 28px;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 22px;
  color: var(--navy-600);
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  padding-bottom: 16px;
  color: var(--ink-soft);
}

/* Closing */
.closing {
  background: var(--navy-900);
  color: #fff;
  text-align: center;
}

.closing h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.closing p {
  color: var(--blue-100);
  margin-bottom: 28px;
  font-size: 18px;
}

/* Footer */
.site-footer {
  background: #04223F;
  color: var(--blue-100);
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--blue-100);
  text-decoration: none;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 100;
  transition: transform 0.15s;
}

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

.whatsapp-float svg { width: 32px; height: 32px; }

/* Mobile */
@media (max-width: 820px) {
  section { padding: 44px 0; }

  .hero { padding: 32px 0 44px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-photo { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-text .section-title { text-align: center; }

  .hero h1 { font-size: 30px; }

  .hero-sub { font-size: 17px; }

  .section-title { font-size: 24px; margin-bottom: 24px; }

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

  .closing h2 { font-size: 26px; }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    left: 16px;
  }
}
