/* ============================================================================
 *  elidobit-b2b-strip.css — רצועת הכניסה ל-B2B בתחתית דף הבית
 *  ---------------------------------------------------------------------------
 *  נטען רק בדף הבית (elidobit-b2b-strip.php), ולכן כל כלל כאן מתוחם ל-.ea-b2b-strip
 *  ואינו יכול לדלוף לשום עמוד אחר.
 *
 *  ניגודיות (AGENTS.md §2, סף 4.5) — נמדד 15.8.2026, לא הוערך בעין:
 *    #ffffff על #12314f  → 13.31   (כותרת הרצועה)
 *    rgba(255,255,255,.88) על #12314f → 10.62 (שורת ההסבר)
 *    #10243d על #f6b93b  → 8.88    (הכפתור)
 *  הרקע הוא ניטרלי כהה ולא צבע מותג, במפורש: הפלטה של המותג טרם עברה תיקון
 *  ניגודיות ואסור להסתמך עליה (AGENTS.md §2).
 *
 *  RTL (AGENTS.md §5) — אין כאן left/right ואין קיצור padding בן ארבעה ערכים.
 *  החץ ← יושב בתוך הטקסט של הקישור ולא ב-::after ממוקם, בדיוק כדי שלא יחזור
 *  הדפוס שנשבר ב-.ea-chips.
 * ========================================================================== */

.ea-b2b-strip {
  background: #12314f;
  color: #ffffff;
  padding-block: 26px;
  padding-inline: 20px;
}

.ea-b2b-strip__inner {
  max-width: 1140px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ea-b2b-strip__text { min-width: 0; }

.ea-b2b-strip h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.ea-b2b-strip p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
  max-width: 56ch;
}

.ea-b2b-strip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-block: 12px;
  padding-inline: 26px;
  border-radius: 999px;
  background: #f6b93b;
  color: #10243d;
  font-weight: 800;
  font-size: 16.5px;
  text-decoration: none;
  flex-shrink: 0;
}

.ea-b2b-strip__cta:hover,
.ea-b2b-strip__cta:focus { background: #e5a92c; color: #10243d; }

/* טבעת פוקוס נראית — מוחלפת, לעולם לא מוסרת (AGENTS.md §2) */
.ea-b2b-strip__cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ea-b2b-strip * { transition: none !important; animation: none !important; }
}

/* מובייל: הטקסט והכפתור נערמים, הכפתור ברוחב מלא וגובה מגע 48px */
@media (max-width: 700px) {
  .ea-b2b-strip__inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .ea-b2b-strip h2 { font-size: 20px; }
  .ea-b2b-strip__cta { width: 100%; }
}
