/* ═══════════════════════════════════════════════════════════════════
   BorneHub Light — Frontend CSS
   Inspiré de swpp-irve.css + irve-offers.css (BorneHub Portal)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Masquer le titre de page WordPress sur toutes les pages BHL ──── */
.bhl-page .wp-block-post-title,
.bhl-page h1.wp-block-post-title,
.bhl-page .entry-title,
.bhl-page h1.entry-title,
.bhl-page .page-title,
.bhl-page h1.page-title {
  display: none !important;
}

/* ── Variables — Light theme ──────────────────────────────────────── */
.bhl-funnel,
.bhl-auth-form,
.bhl-dashboard {
  --fi-accent:    #ec900a;
  --fi-accent-dk: #0096b7;
  --fi-green:     var(--fi-accent);
  --fi-bg:        #f4f6f9;
  --fi-card:      #ffffff;
  --fi-card-2:    #f0f4f8;
  --fi-border:    #dde3ec;
  --fi-text:      #1a1d27;
  --fi-muted:     #5a6175;
  --fi-dim:       #9aa0b0;
  --fi-red:       #d63333;
  --fi-shadow:    0 4px 24px rgba(0,0,0,.08);
  --fi-radius:    22px;
  --fi-radius-sm: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--fi-text);
  background-color: var(--fi-bg);
}

/* ── Reset ────────────────────────────────────────────────────────── */
.bhl-funnel *,
.bhl-auth-form *,
.bhl-dashboard * { box-sizing: border-box; }

/* ── Card wrapper ─────────────────────────────────────────────────── */
.bhl-funnel__card {
  background: var(--fi-card);
  border: 1px solid var(--fi-border);
  border-radius: var(--fi-radius);
  box-shadow: var(--fi-shadow);
  padding: 36px 40px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .bhl-funnel__card { padding: 24px 18px; }
}

/* ── Hero title ───────────────────────────────────────────────────── */
.bhl-funnel__hero {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--fi-border);
  margin-bottom: 24px;
}
.bhl-funnel__hero-title {
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  color: var(--fi-text);
  margin: 0 0 6px;
}
.bhl-funnel__hero-sub {
  font-size: 14px;
  color: var(--fi-muted);
  margin: 0;
}

/* ── Progress bar ─────────────────────────────────────────────────── */
.bhl-funnel__progress-wrap {
  margin-bottom: 28px;
}
.bhl-funnel__progress-track {
  background: var(--fi-card-2);
  border-radius: 10px;
  height: 6px;
  position: relative;
  overflow: visible;
}
.bhl-funnel__progress-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--fi-green);
  box-shadow: 0 0 6px rgba(236,144,10,.3);
  transition: width 380ms cubic-bezier(.4,0,.2,1);
  position: relative;
  min-width: 12px;
}
.bhl-funnel__progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fi-green);
  box-shadow: 0 0 5px rgba(236,144,10,.4);
}
.bhl-funnel__progress-label {
  font-size: 12px;
  color: var(--fi-muted);
  text-align: right;
  margin-top: 7px;
}

/* ── Recap chips ──────────────────────────────────────────────────── */
.bhl-recap-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.bhl-recap-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--fi-card-2);
  border: 1px solid var(--fi-border);
  color: var(--fi-text);
  border-radius: 20px;
  padding: 4px 10px 4px 8px;
  font-size: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.bhl-recap-chip:hover {
  border-color: var(--fi-green);
  background: rgba(236,144,10,.08);
}
.bhl-recap-chip strong { color: var(--fi-green); }
.bhl-recap-chip__edit { color: var(--fi-dim); font-size: 11px; }

/* ── Step animation ───────────────────────────────────────────────── */
@keyframes bhlStepIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bhl-funnel__step { display: none; }
.bhl-funnel__step.is-active {
  display: block;
  animation: bhlStepIn .22s ease;
}

/* ── Step title ───────────────────────────────────────────────────── */
.bhl-step-title {
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 800;
  color: var(--fi-text);
  margin: 0 0 6px;
  line-height: 1.3;
}
.bhl-step-sub {
  font-size: 14px;
  color: var(--fi-muted);
  margin: 0 0 22px;
}

/* ══════════════════════════════════════════════════════
   TILES — Choix icône (résidence, distance, empl…)
   ══════════════════════════════════════════════════════ */
.bhl-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 4px;
}
@media (max-width: 540px) { .bhl-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 360px) { .bhl-tiles { grid-template-columns: 1fr; } }

.bhl-tile {
  background: var(--fi-card-2);
  border: 1.5px solid var(--fi-border);
  border-radius: var(--fi-radius-sm);
  padding: 20px 14px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .12s;
  user-select: none;
}
.bhl-tile:hover {
  border-color: var(--fi-green);
  background: rgba(236,144,10,.07);
}
.bhl-tile.is-selected {
  border-color: var(--fi-green);
  background: rgba(236,144,10,.12);
  box-shadow: 0 0 0 1px var(--fi-green), 0 0 12px rgba(236,144,10,.2);
}
.bhl-tile__icon-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--fi-card);
  border: 1.5px solid var(--fi-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 28px;
  transition: background .18s, border-color .18s;
}
.bhl-tile.is-selected .bhl-tile__icon-bubble {
  background: rgba(236,144,10,.15);
  border-color: var(--fi-green);
}
.bhl-tile__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fi-text);
  line-height: 1.3;
}
.bhl-tile__desc {
  font-size: 12px;
  color: var(--fi-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   BRAND GRID — Logos marques
   ══════════════════════════════════════════════════════ */
.bhl-brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 4px;
  max-height: 440px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--fi-border) transparent;
}
@media (max-width: 600px) { .bhl-brands { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 380px) { .bhl-brands { grid-template-columns: repeat(2, 1fr); } }

.bhl-brand-tile {
  background: var(--fi-card-2);
  border: 1.5px solid var(--fi-border);
  border-radius: var(--fi-radius-sm);
  padding: 14px 8px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  position: relative;
  user-select: none;
}
.bhl-brand-tile:hover { border-color: var(--fi-green); background: rgba(236,144,10,.06); }
.bhl-brand-tile.is-selected {
  border-color: var(--fi-green);
  background: rgba(236,144,10,.12);
  box-shadow: 0 0 0 1px var(--fi-green);
}
.bhl-brand-tile.is-selected::after {
  content: '✓';
  position: absolute;
  top: 5px;
  right: 7px;
  font-size: 11px;
  font-weight: 800;
  color: var(--fi-green);
}
.bhl-brand-tile__logo-wrap {
  width: 56px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  background: #f4f6f9;
  border-radius: 7px;
  padding: 5px;
}
.bhl-brand-tile__logo {
  max-width: 46px;
  max-height: 28px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: .85;
  transition: opacity .15s;
}
.bhl-brand-tile.is-selected .bhl-brand-tile__logo { opacity: 1; }
.bhl-brand-tile__initial {
  width: 46px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--fi-green);
}
.bhl-brand-tile__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--fi-muted);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   LIST — Modèles, batteries
   ══════════════════════════════════════════════════════ */
.bhl-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--fi-border) transparent;
}
.bhl-list-item {
  background: var(--fi-card-2);
  border: 1.5px solid var(--fi-border);
  border-radius: var(--fi-radius-sm);
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--fi-text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .15s, background .15s;
  user-select: none;
}
.bhl-list-item:hover { border-color: var(--fi-green); background: rgba(236,144,10,.06); }
.bhl-list-item.is-selected {
  border-color: var(--fi-green);
  background: rgba(236,144,10,.12);
  box-shadow: 0 0 0 1px var(--fi-green);
}
.bhl-list-item.is-selected::before {
  content: '✓';
  color: var(--fi-green);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.bhl-list-item__kwh {
  margin-left: auto;
  font-size: 12px;
  color: var(--fi-green);
  font-weight: 700;
  background: rgba(236,144,10,.1);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

/* Manual input block */
.bhl-manual-block {
  margin-top: 10px;
  background: rgba(236,144,10,.04);
  border: 1px dashed var(--fi-border);
  border-radius: var(--fi-radius-sm);
  padding: 12px 16px;
}
.bhl-manual-block label {
  font-size: 12px;
  color: var(--fi-muted);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
.bhl-manual-block input {
  width: 100%;
  background: var(--fi-card);
  border: 1.5px solid var(--fi-border);
  border-radius: 8px;
  color: var(--fi-text);
  font-size: 14px;
  padding: 9px 12px;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}
.bhl-manual-block input:focus { border-color: var(--fi-green); }

/* ══════════════════════════════════════════════════════
   OFFER CARDS — Bornes de recharge
   ══════════════════════════════════════════════════════ */
.bhl-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}
@media (max-width: 560px) { .bhl-offers-grid { grid-template-columns: 1fr; } }

.bhl-offer-card {
  background: var(--fi-card);
  border: 1.5px solid var(--fi-border);
  border-radius: var(--fi-radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .18s, box-shadow .18s, transform .12s;
  position: relative;
}
.bhl-offer-card:hover {
  border-color: var(--fi-green);
  box-shadow: 0 4px 20px rgba(236,144,10,.15);
  transform: translateY(-2px);
}
.bhl-offer-card.is-selected {
  border-color: var(--fi-green);
  box-shadow: 0 0 0 1px var(--fi-green), 0 6px 24px rgba(236,144,10,.22);
}

.bhl-offer-card__badge {
  background: var(--fi-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  text-align: center;
  letter-spacing: .3px;
}

.bhl-offer-card__img-wrap {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--fi-card-2);
  border-bottom: 1px solid var(--fi-border);
}
.bhl-offer-card__img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
}
.bhl-offer-card__img-placeholder {
  width: 56px;
  height: 56px;
  opacity: .2;
}

.bhl-offer-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.bhl-offer-card__brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--fi-muted);
}
.bhl-offer-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--fi-text);
  line-height: 1.25;
  margin: 0;
}
.bhl-offer-card__power {
  font-size: 13px;
  color: var(--fi-muted);
}

.bhl-offer-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bhl-spec-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--fi-muted);
  background: var(--fi-card-2);
  border: 1px solid var(--fi-border);
  padding: 2px 8px;
  border-radius: 10px;
}

.bhl-offer-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.bhl-feature-tag {
  font-size: 11px;
  background: rgba(236,144,10,.1);
  color: var(--fi-green);
  border-radius: 8px;
  padding: 2px 8px;
  font-weight: 600;
}

/* Charge time block */
.bhl-charge-block {
  background: var(--fi-card-2);
  border: 1px solid var(--fi-border);
  border-radius: var(--fi-radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.bhl-charge-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.bhl-charge-row__label {
  font-size: 11px;
  color: var(--fi-muted);
  font-weight: 600;
}
.bhl-charge-row__time {
  font-size: 13px;
  font-weight: 800;
  color: var(--fi-green);
}
.bhl-charge-row__time--full { color: var(--fi-dim); }
.bhl-charge-bar {
  height: 5px;
  background: var(--fi-border);
  border-radius: 3px;
  overflow: hidden;
}
.bhl-charge-bar__fill--partial {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--fi-green), rgba(236,144,10,.55));
  box-shadow: 0 0 4px rgba(236,144,10,.25);
}
.bhl-charge-bar__fill--full {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(236,144,10,.3), #c8d0dc);
}

/* Price block */
.bhl-offer-card__price-block {
  background: var(--fi-card-2);
  border-top: 1px solid var(--fi-border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bhl-offer-card__price-info { flex: 1; }
.bhl-offer-card__price-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--fi-muted);
  margin-bottom: 3px;
}
.bhl-offer-card__price {
  font-size: 26px;
  font-weight: 900;
  color: var(--fi-green);
  line-height: 1;
}
.bhl-offer-card__price-extra {
  font-size: 11px;
  color: var(--fi-dim);
  margin-top: 3px;
}
.bhl-offer-card__select-btn {
  flex-shrink: 0;
  background: var(--fi-card);
  border: 1.5px solid var(--fi-border);
  color: var(--fi-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.bhl-offer-card.is-selected .bhl-offer-card__select-btn {
  background: var(--fi-green);
  border-color: var(--fi-green);
  color: #fff;
}

/* ── Loading / Error / Empty ──────────────────────────────────────── */
.bhl-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 14px;
  color: var(--fi-muted);
  font-size: 14px;
}
.bhl-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--fi-border);
  border-top-color: var(--fi-green);
  border-radius: 50%;
  animation: bhlSpin .65s linear infinite;
}
@keyframes bhlSpin { to { transform: rotate(360deg); } }

.bhl-err-state, .bhl-info-state {
  padding: 20px;
  border-radius: var(--fi-radius-sm);
  font-size: 14px;
  text-align: center;
  margin: 8px 0;
}
.bhl-err-state  { background: rgba(224,82,82,.08); color: var(--fi-red);   border: 1px solid rgba(224,82,82,.2); }
.bhl-info-state { background: rgba(236,144,10,.07); color: var(--fi-green); border: 1px solid rgba(236,144,10,.2); }

/* ── Navigation buttons ───────────────────────────────────────────── */
.bhl-funnel__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--fi-border);
}
.bhl-funnel__nav.has-prev { justify-content: space-between; }

.bhl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
  font-family: inherit;
}
.bhl-btn:hover { opacity: .88; transform: translateY(-1px); }
.bhl-btn:active { transform: translateY(0); }
.bhl-btn:disabled { opacity: .45; cursor: default; transform: none; }
.bhl-btn--primary  { background: var(--fi-green); color: #fff; min-width: 140px; }
.bhl-btn--secondary { background: var(--fi-card-2); border: 1.5px solid var(--fi-border); color: var(--fi-muted); }
.bhl-btn--full { width: 100%; }
.bhl-btn--sm   { padding: 8px 16px; font-size: 13px; min-width: auto; }

/* ── Success screen ───────────────────────────────────────────────── */
.bhl-funnel__success {
  text-align: center;
  padding: 56px 24px;
}
.bhl-success-icon {
  width: 72px;
  height: 72px;
  background: var(--fi-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(236,144,10,.25);
}
.bhl-funnel__success h2 { font-size: 26px; font-weight: 800; color: var(--fi-text); margin: 0 0 12px; }
.bhl-funnel__success p  { color: var(--fi-muted); font-size: 15px; max-width: 400px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════ */
.bhl-contact-form { max-width: 560px; }
.bhl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .bhl-form-row { grid-template-columns: 1fr; } }

.bhl-form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.bhl-form-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--fi-muted);
}
.bhl-form-group input,
.bhl-form-group select {
  background: var(--fi-card-2);
  border: 1.5px solid var(--fi-border);
  border-radius: 9px;
  color: var(--fi-text);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
  width: 100%;
}
.bhl-form-group input::placeholder { color: var(--fi-dim); }
.bhl-form-group input:focus,
.bhl-form-group select:focus { border-color: var(--fi-green); }
.bhl-form-group input.bhl-error { border-color: var(--fi-red) !important; }

.bhl-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.bhl-checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--fi-green);
}
.bhl-checkbox-row label {
  font-size: 13px;
  color: var(--fi-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════
   AUTH FORMS
   ══════════════════════════════════════════════════════ */
.bhl-auth-form {
  max-width: 460px;
  margin: 0 auto;
  background: var(--fi-card);
  border: 1px solid var(--fi-border);
  border-radius: var(--fi-radius);
  box-shadow: var(--fi-shadow);
  padding: 36px 40px;
}
@media (max-width: 520px) { .bhl-auth-form { padding: 24px 20px; } }

.bhl-auth-form h2 { font-size: 20px; font-weight: 800; margin: 0 0 6px; color: var(--fi-text); }
.bhl-form-intro { color: var(--fi-muted); font-size: 14px; margin: 0 0 24px; }

.bhl-auth-links {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--fi-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bhl-auth-links a { color: var(--fi-green); text-decoration: none; font-weight: 600; }
.bhl-auth-links a:hover { text-decoration: underline; }

/* Notices */
.bhl-notice {
  padding: 11px 15px;
  border-radius: 9px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.4;
}
.bhl-notice--success { background: rgba(236,144,10,.1);  color: var(--fi-green); border: 1px solid rgba(236,144,10,.25); }
.bhl-notice--error   { background: rgba(224,82,82,.1);  color: var(--fi-red);   border: 1px solid rgba(224,82,82,.2); }
.bhl-notice--info    { background: rgba(236,144,10,.06); color: var(--fi-muted); border: 1px solid var(--fi-border); }
.bhl-notice--warning { background: rgba(255,180,0,.08); color: #f0b429;         border: 1px solid rgba(255,180,0,.2); }

/* ══════════════════════════════════════════════════════
   DASHBOARD APPORTEUR
   ══════════════════════════════════════════════════════ */
.bhl-dashboard {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
}
.bhl-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--fi-border);
}
.bhl-dashboard__header h2 { font-size: 22px; font-weight: 800; margin: 0; color: var(--fi-text); }

.bhl-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.bhl-badge--warning { background: rgba(255,180,0,.12); color: #f0b429; border: 1px solid rgba(255,180,0,.25); }
.bhl-badge--success { background: rgba(236,144,10,.1);  color: var(--fi-green); border: 1px solid rgba(236,144,10,.2); }

.bhl-leads-section h3 { font-size: 17px; font-weight: 700; color: var(--fi-text); margin: 0 0 16px; }
.bhl-count { font-size: 13px; color: var(--fi-muted); font-weight: 400; }

.bhl-leads-table-wrap { overflow-x: auto; }
.bhl-leads-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bhl-leads-table th {
  background: var(--fi-card-2);
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--fi-muted);
  font-weight: 700;
  border-bottom: 1px solid var(--fi-border);
}
.bhl-leads-table td { padding: 12px 14px; border-bottom: 1px solid var(--fi-border); color: var(--fi-text); }
.bhl-leads-table tr:hover td { background: #f7f9fc; }

.bhl-status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.bhl-empty { text-align: center; padding: 48px 24px; color: var(--fi-muted); }
.bhl-empty p { margin-bottom: 16px; font-size: 15px; }

.bhl-dashboard__footer { margin-top: 32px; text-align: right; }
.bhl-link { color: var(--fi-muted); font-size: 13px; text-decoration: none; }
.bhl-link:hover { color: var(--fi-green); }

.bhl-step-notice {
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 13px;
  background: rgba(236,144,10,.06);
  border: 1px solid rgba(236,144,10,.15);
  color: var(--fi-muted);
  margin-top: 8px;
}
