/* ═══ NAV DRAWER ═══ */
#hb-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 10000;
  pointer-events: none;
  transition: background 0.35s;
}
#hb-nav-overlay.open {
  background: rgba(0,0,0,0.55);
  pointer-events: all;
}
#hb-nav-drawer {
  position: fixed;
  top: 0; right: -300px;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--green-deep);
  z-index: 10001;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#hb-nav-drawer.open { right: 0; }
.hb-nd-head {
  background: var(--green-dark);
  padding: 20px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.hb-nd-brand {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.hb-nd-brand span { color: var(--amber); }
.hb-nd-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--green-glow);
  padding: 4px;
}
.hb-nd-links {
  flex: 1;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
}
.hb-nd-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.hb-nd-link:hover, .hb-nd-link:active {
  background: var(--green-dark);
  color: var(--amber);
}
.hb-nd-link span:first-child {
  font-size: 20px;
  width: 28px;
  flex-shrink: 0;
}
.hb-nd-wa {
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  margin: 12px 16px 16px;
  padding: 14px 16px;
  border-bottom: none !important;
}
.hb-nd-wa:hover { background: #1db954; color: #fff; }
.hb-nd-foot {
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 10px;
  color: rgba(77,218,133,.5);
  text-align: center;
  flex-shrink: 0;
}

/* ═══ SECTION MODAL ═══ */
#hb-section-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,0.65);
  overflow-y: auto;
}
#hb-section-modal.open { display: block; }
.hb-section-inner {
  background: var(--green-deep);
  min-height: 60vh;
  position: relative;
  animation: hb-slide-up 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes hb-slide-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hb-modal-bar {
  position: sticky;
  top: 0;
  background: var(--green-dark);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hb-modal-bar span {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--amber);
}
.hb-modal-bar button {
  background: none;
  border: none;
  color: var(--green-glow);
  font-size: 22px;
  padding: 0;
}
#hb-modal-body { padding-bottom: 80px; }
#hb-modal-body .hb-modal-source { display: block; }
